HomeSort by: relevance | last modified time | path
    Searched defs:hostent (Results 1 - 4 of 4) sorted by relevancy

  /xsrc/external/mit/proxymngr/dist/
main.c 504 struct hostent *hostent;
506 hostent = gethostbyname (inet_ntoa(serverSock.sin_addr));
508 if (hostent && hostent->h_name)
509 canonname = hostent->h_name;
503 struct hostent *hostent; local
  /xsrc/external/mit/xdm/dist/xdm/
access.c 176 struct hostent *hostent;
178 hostent = gethostbyname (localHostname());
179 if (hostent != NULL) {
180 if (XdmcpAllocARRAY8 (&localAddress, hostent->h_length)) {
181 memcpy(localAddress.data, hostent->h_addr, hostent->h_length);
376 struct hostent *hostent; local
400 hostent = gethostbyname (hostOrAlias)
532 struct hostent *hostent; local
    [all...]
xdmcp.c 502 struct hostent *hostent; local
518 hostent = gethostbyaddr ((char *)data,
520 if (hostent) {
529 if (getaddrinfo(hostent->h_name, NULL, &hints, &ai) == 0) {
541 hostname = hostent->h_name;
626 struct hostent *hostent;
632 hostent = gethostbyaddr ((char *)data,
634 if (sourceAddress && hostent) {
1386 struct hostent *hostent = NULL; local
    [all...]
  /xsrc/external/mit/xdm/dist/chooser/
chooser.c 294 struct hostent *hostent; local
297 hostent = gethostbyaddr ((char *)hostAddr.data, hostAddr.length, addr->sa_family);
298 if (hostent)
301 host = (char *)hostent->h_name;
595 struct hostent *hostent; local
597 hostent = gethostbyname (name);
598 if (!hostent)
600 if (hostent->h_addrtype != AF_INET || hostent->h_length != 4
    [all...]

Completed in 9 milliseconds