swrap: Add a trace message for swrap_socket().
authorAndreas Schneider <asn@samba.org>
Wed, 1 Oct 2014 10:48:13 +0000 (12:48 +0200)
committerAndreas Schneider <asn@samba.org>
Wed, 1 Oct 2014 12:06:30 +0000 (14:06 +0200)
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
src/socket_wrapper.c

index 8a7b57243fcbe0e5093af110246568b78bc7d14a..6a495b95029ddd0211ce2af4417adca6ea4aafd0 100644 (file)
@@ -2430,6 +2430,11 @@ static int swrap_socket(int family, int type, int protocol)
        SWRAP_DLIST_ADD(si->fds, fi);
        SWRAP_DLIST_ADD(sockets, si);
 
+       SWRAP_LOG(SWRAP_LOG_TRACE,
+                 "Created %s socket for protocol %s",
+                 si->family == AF_INET ? "IPv4" : "IPv6",
+                 si->type == SOCK_DGRAM ? "UDP" : "TCP");
+
        return fd;
 }