You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
netpong/includes/connect_code.hpp

21 lines
667 B
C++

#ifndef _CONNECT_CODE
#define _CONNECT_CODE
#include <string>
#include <vector>
namespace connect_code {
/* Given an address and a port, return a 'code' which has the address and port encoded in it */
std::string encode(std::string address, std::string port);
/* Given a code, decode it and return a vector with the address and port */
std::vector<std::string> decode(std::string connect_code);
/* Tokenizes a string, based on the given delimiter */
std::vector<std::string> tokenize_str(std::string str, std::string delim);
/* Convert an IPv4 address from decimal to dotted decimal notation */
std::string dec_to_dotted_dec(std::string addr);
}
#endif