mcpinger/protocol_utils.h

11 lines
260 B
C
Raw Normal View History

2024-05-08 10:24:32 +02:00
#ifndef MCPINGER_PROTOCOL_UTILS_H
#define MCPINGER_PROTOCOL_UTILS_H
#include <vector>
#include <string>
std::vector<unsigned char> encodeVarint(int value);
std::vector<unsigned char> encodeString(const std::string& str);
#endif // MCPINGER_PROTOCOL_UTILS_H