| 42 | namespace EsiLib |
| 43 | { |
| 44 | struct ByteBlock { |
| 45 | const char *data; |
| 46 | int data_len; |
| 47 | ByteBlock(const char *d = nullptr, int d_len = 0) : data(d), data_len(d_len){}; |
| 48 | }; |
| 49 | |
| 50 | using ByteBlockList = std::list<ByteBlock>; |
| 51 |
no outgoing calls
no test coverage detected