diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-23 21:08:13 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-23 21:08:13 +0200 |
commit | 22f566c39b564c39eca40a76bf1dfece96d7ece5 (patch) | |
tree | 7b153d86035be3d6eaa83cb6eb34cb67f24c3f56 /lib | |
parent | 7577d9ebf06fcdb630b2cdaab8772a6da9e37b70 (diff) | |
download | samba-22f566c39b564c39eca40a76bf1dfece96d7ece5.tar.gz samba-22f566c39b564c39eca40a76bf1dfece96d7ece5.tar.bz2 samba-22f566c39b564c39eca40a76bf1dfece96d7ece5.zip |
Move set_sockaddr_port to libutil.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util/util_net.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/util/util_net.c b/lib/util/util_net.c index eb5e2255c9..228393a2bb 100644 --- a/lib/util/util_net.c +++ b/lib/util/util_net.c @@ -408,3 +408,17 @@ bool is_address_any(const struct sockaddr *psa) } return false; } + +void set_sockaddr_port(struct sockaddr *psa, uint16_t port) +{ +#if defined(HAVE_IPV6) + if (psa->sa_family == AF_INET6) { + ((struct sockaddr_in6 *)psa)->sin6_port = htons(port); + } +#endif + if (psa->sa_family == AF_INET) { + ((struct sockaddr_in *)psa)->sin_port = htons(port); + } +} + + |