| src/panda/uri/ws.h | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 4 | 6 | 66.6 |
| branch | 2 | 4 | 50.0 |
| condition | n/a | ||
| subroutine | n/a | ||
| pod | n/a | ||
| total | 6 | 10 | 60.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | #pragma once | ||||||
| 2 | #include |
||||||
| 3 | |||||||
| 4 | namespace panda { namespace uri { | ||||||
| 5 | |||||||
| 6 | 6 | 50 | struct URI::wss : Strict |
||||
| 7 | 2 | using Strict |
|||||
| 8 | |||||||
| 9 | 0 | static string default_scheme () { return "wss"; } | |||||
| 10 | }; | ||||||
| 11 | |||||||
| 12 | 6 | 50 | struct URI::ws : Strict |
||||
| 13 | 2 | using Strict |
|||||
| 14 | |||||||
| 15 | 0 | static string default_scheme () { return "ws"; } | |||||
| 16 | }; | ||||||
| 17 | |||||||
| 18 | }} |