Functions | |
ENET_API 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. | |
ENET_API 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. | |
ENET_API 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. |
ENET_API int enet_address_get_host | ( | const ENetAddress * | address, | |
char * | hostName, | |||
size_t | nameLength | |||
) |
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 |
ENET_API int enet_address_get_host_ip | ( | const ENetAddress * | address, | |
char * | hostName, | |||
size_t | nameLength | |||
) |
address | address printed | |
hostName | destination for name, must not be NULL | |
nameLength | maximum length of hostName. |
0 | on success | |
< | 0 on failure |
ENET_API int enet_address_set_host | ( | ENetAddress * | address, | |
const char * | hostName | |||
) |
address | destination to store resolved address | |
hostName | host name to lookup |
0 | on success | |
< | 0 on failure |