Home
last modified time | relevance | path

Searched refs:http_major (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/include/zephyr/net/http/
Dparser.h164 unsigned short http_major; member
/Zephyr-latest/subsys/net/lib/http/
Dhttp_parser.c918 parser->http_major = ch - '0'; in parser_execute()
934 parser->http_major *= 10U; in parser_execute()
935 parser->http_major += ch - '0'; in parser_execute()
937 if (UNLIKELY(parser->http_major > 999)) { in parser_execute()
1334 parser->http_major = 0U; in parser_execute()
1411 parser->http_major = ch - '0'; in parser_execute()
1427 parser->http_major *= 10U; in parser_execute()
1428 parser->http_major += ch - '0'; in parser_execute()
1430 if (UNLIKELY(parser->http_major > 999)) { in parser_execute()
2311 if (parser->http_major > 0 && parser->http_minor > 0) { in http_should_keep_alive()