summaryrefslogtreecommitdiff
path: root/source3/lib/util_sock.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-10-23 21:08:13 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-10-23 21:08:13 +0200
commit22f566c39b564c39eca40a76bf1dfece96d7ece5 (patch)
tree7b153d86035be3d6eaa83cb6eb34cb67f24c3f56 /source3/lib/util_sock.c
parent7577d9ebf06fcdb630b2cdaab8772a6da9e37b70 (diff)
downloadsamba-22f566c39b564c39eca40a76bf1dfece96d7ece5.tar.gz
samba-22f566c39b564c39eca40a76bf1dfece96d7ece5.tar.bz2
samba-22f566c39b564c39eca40a76bf1dfece96d7ece5.zip
Move set_sockaddr_port to libutil.
Diffstat (limited to 'source3/lib/util_sock.c')
-rw-r--r--source3/lib/util_sock.c12
1 files changed, 0 insertions, 12 deletions
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);