Winsock2 DB 関連API
WinSock2のデータベース関連API一覧です。
struct hostent FAR *
gethostbyaddr(
IN const char FAR * addr,
IN int len,
IN int type
);
struct hostent FAR *
gethostbyname(
IN const char FAR * name
);
int
gethostname(
OUT char FAR * name,
IN int namelen
);
struct servent FAR *
getservbyport(
IN int port,
IN const char FAR * proto
);
struct servent FAR *
getservbyname(
IN const char FAR * name,
IN const char FAR * proto
);
struct protoent FAR *
getprotobynumber(
IN int number
);
struct protoent FAR *
getprotobyname(
IN const char FAR * name
);