Software /
code /
prosody
Comparison
util/sasl/digest-md5.lua @ 2215:4678aa4567c8
SASL: Using locally mapped s_gmatch instead of unavailable gmatch.
author | Tobias Markmann <tm@ayena.de> |
---|---|
date | Wed, 25 Nov 2009 19:46:22 +0100 |
parent | 2212:7cb6460b18d8 |
child | 2255:92e329e1cd99 |
comparison
equal
deleted
inserted
replaced
2214:a4c8b5763d0a | 2215:4678aa4567c8 |
---|---|
100 return t_concat(p); | 100 return t_concat(p); |
101 end | 101 end |
102 local function parse(data) | 102 local function parse(data) |
103 local message = {} | 103 local message = {} |
104 -- COMPAT: %z in the pattern to work around jwchat bug (sends "charset=utf-8\0") | 104 -- COMPAT: %z in the pattern to work around jwchat bug (sends "charset=utf-8\0") |
105 for k, v in gmatch(data, [[([%w%-]+)="?([^",%z]*)"?,?]]) do -- FIXME The hacky regex makes me shudder | 105 for k, v in s_gmatch(data, [[([%w%-]+)="?([^",%z]*)"?,?]]) do -- FIXME The hacky regex makes me shudder |
106 message[k] = v; | 106 message[k] = v; |
107 end | 107 end |
108 return message; | 108 return message; |
109 end | 109 end |
110 | 110 |