| 15 | namespace SC |
| 16 | { |
| 17 | static bool equalsAscii(Span<char> data, Span<const char> expected) |
| 18 | { |
| 19 | return StringView({data.data(), data.sizeInBytes()}, false, StringEncoding::Ascii) == |
| 20 | StringView({expected.data(), expected.sizeInBytes()}, false, StringEncoding::Ascii); |
| 21 | } |
| 22 | |
| 23 | static Result createLineProtocolServer(AsyncEventLoop& eventLoop, SocketDescriptor& serverSocket, |
| 24 | SocketIPAddress& address) |
no test coverage detected