| 855 | } |
| 856 | |
| 857 | std::vector<uint8_t> recv_data(SOCKET sock) { |
| 858 | auto raw_length = recv_all(sock, 4); |
| 859 | uint32_t length = (raw_length[0] << 24) | (raw_length[1] << 16) | (raw_length[2] << 8) | raw_length[3]; |
| 860 | return recv_all(sock, length); |
| 861 | } |
| 862 | |
| 863 | |
| 864 | std::vector<uint8_t> string_to_vector(const std::string& str) { |