| 49 | } |
| 50 | |
| 51 | static size_t skipAuthSpaces(SC::Span<const char> bytes, size_t offset, size_t end) |
| 52 | { |
| 53 | while (offset < end and (bytes[offset] == ' ' or bytes[offset] == '\t')) |
| 54 | { |
| 55 | offset += 1; |
| 56 | } |
| 57 | return offset; |
| 58 | } |
| 59 | |
| 60 | static size_t readAuthToken(SC::Span<const char> bytes, size_t offset, size_t end) |
| 61 | { |
no outgoing calls
no test coverage detected