| 2461 | } |
| 2462 | |
| 2463 | unsigned long |
| 2464 | http_parser_version(void) { |
| 2465 | return HTTP_PARSER_VERSION_MAJOR * 0x10000 | |
| 2466 | HTTP_PARSER_VERSION_MINOR * 0x00100 | |
| 2467 | HTTP_PARSER_VERSION_PATCH * 0x00001; |
| 2468 | } |
nothing calls this directly
no outgoing calls
no test coverage detected