From 22f566c39b564c39eca40a76bf1dfece96d7ece5 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 23 Oct 2008 21:08:13 +0200 Subject: Move set_sockaddr_port to libutil. --- source3/lib/util_sock.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'source3/lib/util_sock.c') diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index 667dbf6dad..5721f412d6 100644 --- a/source3/lib/util_sock.c +++ b/source3/lib/util_sock.c @@ -241,18 +241,6 @@ static int get_socket_port(int fd) } #endif -void set_sockaddr_port(struct sockaddr_storage *psa, uint16 port) -{ -#if defined(HAVE_IPV6) - if (psa->ss_family == AF_INET6) { - ((struct sockaddr_in6 *)psa)->sin6_port = htons(port); - } -#endif - if (psa->ss_family == AF_INET) { - ((struct sockaddr_in *)psa)->sin_port = htons(port); - } -} - const char *client_name(int fd) { return get_peer_name(fd,false); -- cgit