Functions | |
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. More... | |
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. More... | |
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. More... | |
ENET_API int enet_address_get_host | ( | const ENetAddress * | address, |
char * | hostName, | ||
size_t | nameLength | ||
) |
#include <include/enet/enet.h>
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 |
References enet_address_get_host_ip().
ENET_API int enet_address_get_host_ip | ( | const ENetAddress * | address, |
char * | hostName, | ||
size_t | nameLength | ||
) |
#include <include/enet/enet.h>
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 |
Referenced by enet_address_get_host().
ENET_API int enet_address_set_host | ( | ENetAddress * | address, |
const char * | hostName | ||
) |
#include <include/enet/enet.h>
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 |