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.h174 unsigned short http_major; member
/Zephyr-latest/subsys/net/lib/http/
Dhttp_parser.c1078 parser->http_major = ch - '0'; in parser_execute()
1094 parser->http_major *= 10U; in parser_execute()
1095 parser->http_major += ch - '0'; in parser_execute()
1097 if (UNLIKELY(parser->http_major > 999)) { in parser_execute()
1498 parser->http_major = 0U; in parser_execute()
1575 parser->http_major = ch - '0'; in parser_execute()
1591 parser->http_major *= 10U; in parser_execute()
1592 parser->http_major += ch - '0'; in parser_execute()
1594 if (UNLIKELY(parser->http_major > 999)) { in parser_execute()
2485 if (parser->http_major > 0 && parser->http_minor > 0) { in http_should_keep_alive()