if(c[1] == 'x') {
c += 2; /* skip the prefix */
rc = curlx_str_hex(&c, &l, UINT_MAX);
+ if(rc)
+ return HOST_NAME;
}
else
rc = curlx_str_octal(&c, &l, UINT_MAX);
};
static const struct urltestcase get_url_list[] = {
+ {"https://127.1.0x", "https://127.1.0x/", 0, 0, CURLUE_OK},
+ {"https://127.0x", "https://127.0x/", 0, 0, CURLUE_OK},
+ {"https://127.0x.1", "https://127.0x.1/", 0, 0, CURLUE_OK},
+ {"https://127.1.1.0x", "https://127.1.1.0x/", 0, 0, CURLUE_OK},
{"https://127.1.", "https://127.0.0.1/", 0, 0, CURLUE_OK},
{"https://127.1.:443", "https://127.0.0.1:443/", 0, 0, CURLUE_OK},
{"https://127.1.?moo", "https://127.0.0.1/?moo", 0, 0, CURLUE_OK},