Functions | |
int | enet_address_set_host_ip (ENetAddress *address, const char *hostName) |
int | enet_address_set_host (ENetAddress *address, const char *hostName) |
int | enet_address_get_host_ip (const ENetAddress *address, char *hostName, size_t nameLength) |
int | enet_address_get_host (const ENetAddress *address, char *hostName, size_t nameLength) |
int enet_address_set_host_ip | ( | ENetAddress * | address, |
const char * | hostName | ||
) |
Attempts to parse the printable form of the IP address in the parameter hostName and sets the host field in the address parameter if successful.
address | destination to store the parsed IP address |
hostName | IP address to parse |
0 | on success |
< | 0 on failure |
int enet_address_set_host | ( | ENetAddress * | address, |
const char * | hostName | ||
) |
Attempts to resolve the host named by the parameter hostName and sets the host field in the address parameter if successful.
address | destination to store resolved address |
hostName | host name to lookup |
0 | on success |
< | 0 on failure |
int enet_address_get_host_ip | ( | const ENetAddress * | address, |
char * | hostName, | ||
size_t | nameLength | ||
) |
Gives the printable form of the IP address specified in the address parameter.
address | address printed |
hostName | destination for name, must not be NULL |
nameLength | maximum length of hostName. |
0 | on success |
< | 0 on failure |
int enet_address_get_host | ( | const ENetAddress * | address, |
char * | hostName, | ||
size_t | nameLength | ||
) |
Attempts to do a reverse lookup of the host field in the address parameter.
address | address used for reverse lookup |
hostName | destination for name, must not be NULL |
nameLength | maximum length of hostName. |
0 | on success |
< | 0 on failure |