diff options
Diffstat (limited to 'libnetdata/socket/socket.c')
-rw-r--r-- | libnetdata/socket/socket.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libnetdata/socket/socket.c b/libnetdata/socket/socket.c index 6b0b3b674..bf9c60ea1 100644 --- a/libnetdata/socket/socket.c +++ b/libnetdata/socket/socket.c @@ -944,6 +944,11 @@ int accept_socket(int fd, int flags, char *client_ip, size_t ipsize, char *clien strncpyz(client_port, "UNKNOWN", portsize - 1); } +#ifdef __FreeBSD__ + if(((struct sockaddr *)&sadr)->sa_family == AF_LOCAL) + strncpyz(client_ip, "localhost", ipsize); +#endif + client_ip[ipsize - 1] = '\0'; client_port[portsize - 1] = '\0'; |