| src/panda/protocol/websocket/HeaderValueParamsParser.h | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 0 | 1 | 0.0 |
| branch | 0 | 2 | 0.0 |
| condition | n/a | ||
| subroutine | n/a | ||
| pod | n/a | ||
| total | 0 | 3 | 0.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | #pragma once | ||||||
| 2 | #include |
||||||
| 3 | #include |
||||||
| 4 | #include |
||||||
| 5 | |||||||
| 6 | namespace panda { namespace protocol { namespace websocket { | ||||||
| 7 | |||||||
| 8 | using HeaderValueParams = panda::unordered_string_map |
||||||
| 9 | |||||||
| 10 | 0 | 0 | struct HeaderValue { | ||||
| 11 | string name; | ||||||
| 12 | HeaderValueParams params; | ||||||
| 13 | }; | ||||||
| 14 | typedef std::vector |
||||||
| 15 | |||||||
| 16 | void parse_header_value(const string& strval, HeaderValues& values); | ||||||
| 17 | string compile_header_value(const HeaderValues& values); | ||||||
| 18 | |||||||
| 19 | }}} |