| 1207 | } |
| 1208 | |
| 1209 | txBoolean fx_parseURLHostNotSpecial(txMachine* the, txStringStream* src, txInteger from, txInteger to, txStringStream* dst) |
| 1210 | { |
| 1211 | txBoolean result = 1; |
| 1212 | txInteger offset = src->offset; |
| 1213 | src->offset = from; |
| 1214 | while (src->offset < to) { |
| 1215 | txInteger c = fx_parseURLDecode(the, src); |
| 1216 | if ((c < 0x80) && c_read8(gxNotSpecialHostSet + c)) { |
| 1217 | result = 0; |
| 1218 | break; |
| 1219 | } |
| 1220 | fx_parseURLPercentEncode(the, c, dst, gxControlSet); |
| 1221 | } |
| 1222 | src->offset = offset; |
| 1223 | return result; |
| 1224 | } |
| 1225 | |
| 1226 | txBoolean fx_parseURLHostSpecial(txMachine* the, txStringStream* src, txInteger from, txInteger to, txStringStream* dst) |
| 1227 | { |
no test coverage detected