Lines Matching refs:ntop
54 char name[NI_MAXHOST], ntop[NI_MAXHOST], ntop2[NI_MAXHOST]; in get_remote_hostname() local
65 check_ip_options(sock, ntop); in get_remote_hostname()
72 if (getnameinfo((struct sockaddr *)&from, fromlen, ntop, sizeof(ntop), in get_remote_hostname()
77 return xstrdup(ntop); in get_remote_hostname()
79 debug3("Trying to reverse map address %.100s.", ntop); in get_remote_hostname()
84 return xstrdup(ntop); in get_remote_hostname()
97 name, ntop); in get_remote_hostname()
99 return xstrdup(ntop); in get_remote_hostname()
123 "[%s] failed - POSSIBLE BREAK-IN ATTEMPT!", name, ntop); in get_remote_hostname()
124 return xstrdup(ntop); in get_remote_hostname()
130 (strcmp(ntop, ntop2) == 0)) in get_remote_hostname()
139 ntop, name); in get_remote_hostname()
140 return xstrdup(ntop); in get_remote_hostname()
251 char ntop[NI_MAXHOST]; in get_socket_address() local
275 if ((r = getnameinfo((struct sockaddr *)&addr, addrlen, ntop, in get_socket_address()
276 sizeof(ntop), NULL, 0, flags)) != 0) { in get_socket_address()
281 return xstrdup(ntop); in get_socket_address()