mirror of
https://github.com/nodejs/node.git
synced 2025-05-17 21:27:14 +00:00

significant updates: * [[`777ba4eded`](https://github.com/nodejs/node/commit/777ba4eded)] - **src**: introduce `http_parser_url_init` (Fedor Indutny) [nodejs/http-parser#225](https://github.com/nodejs/http-parser/pull/225) * [[`e557b62744`](https://github.com/nodejs/node/commit/e557b62744)] - **src**: support LINK/UNLINK (RFC 2068, draft-snell-link-method) (Olivier Mengué) [nodejs/http-parser#267](https://github.com/nodejs/http-parser/pull/267) * [[`eb5e9928b4`](https://github.com/nodejs/node/commit/eb5e9928b4)] - **src**: support ACL (WebDAV, RFC3744, Section 8.1). (Ivan Enderlin) [joyent/http-parser#260](https://github.com/joyent/http-parser/pull/260) * [[`8b1d652322`](https://github.com/nodejs/node/commit/8b1d652322)] - **src**: support BIND/REBIND/UNBIND (WebDAV, RFC5842) (Ivan Enderlin) [joyent/http-parser#242](https://github.com/joyent/http-parser/pull/242) * [[`7d75dd7325`](https://github.com/nodejs/node/commit/7d75dd7325)] - **src**: support IPv6 Zone ID as per RFC 6874 (Tatsuhiro Tsujikawa) [joyent/http-parser#253](https://github.com/joyent/http-parser/pull/253) PR-URL: https://github.com/nodejs/node/pull/3569 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
#include "http_parser.h"
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
void
|
|
dump_url (const char *url, const struct http_parser_url *u)
|
|
{
|
|
unsigned int i;
|
|
|
|
printf("\tfield_set: 0x%x, port: %u\n", u->field_set, u->port);
|
|
for (i = 0; i < UF_MAX; i++) {
|
|
if ((u->field_set & (1 << i)) == 0) {
|
|
printf("\tfield_data[%u]: unset\n", i);
|
|
continue;
|
|
}
|
|
|
|
printf("\tfield_data[%u]: off: %u, len: %u, part: %.*s\n",
|
|
i,
|
|
u->field_data[i].off,
|
|
u->field_data[i].len,
|
|
u->field_data[i].len,
|
|
url + u->field_data[i].off);
|
|
}
|
|
}
|
|
|
|
int main(int argc, char ** argv) {
|
|
struct http_parser_url u;
|
|
int len, connect, result;
|
|
|
|
if (argc != 3) {
|
|
printf("Syntax : %s connect|get url\n", argv[0]);
|
|
return 1;
|
|
}
|
|
len = strlen(argv[2]);
|
|
connect = strcmp("connect", argv[1]) == 0 ? 1 : 0;
|
|
printf("Parsing %s, connect %d\n", argv[2], connect);
|
|
|
|
http_parser_url_init(&u);
|
|
result = http_parser_parse_url(argv[2], len, connect, &u);
|
|
if (result != 0) {
|
|
printf("Parse error : %d\n", result);
|
|
return result;
|
|
}
|
|
printf("Parse ok, result : \n");
|
|
dump_url(argv[2], &u);
|
|
return 0;
|
|
}
|