summaryrefslogtreecommitdiffstats
path: root/xlators/nfs/lib/src/rpc-socket.c
diff options
context:
space:
mode:
authorAnand Avati <avati@gluster.com>2011-05-20 16:56:23 +0000
committerAnand Avati <avati@gluster.com>2011-05-30 04:48:25 -0700
commit7f1c2eb4d473b9323b3a31b33473f7fe06cee449 (patch)
treeae10f129aab14461fd87c4db36b8de2689e48f8c /xlators/nfs/lib/src/rpc-socket.c
parent9737ef5bbaaf2b4c02ea1710dccbd5464173b2e3 (diff)
rpc: use AI_ADDRCONFIG selectively
NetBSD does not have AI_ADDRCONFIG. This patch has a side effect: glusterfsd listens on IPv6 adresses only by default. Option transport.socket.bind-address in volume server-tcp must be used to listen on an IPv4 address. Thanks to: Emmanuel Dreyfus <manu@netbsd.org> Signed-off-by: Anand Avati <avati@gluster.com> BUG: 2923 (NetBSD port) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2923
Diffstat (limited to 'xlators/nfs/lib/src/rpc-socket.c')
-rw-r--r--xlators/nfs/lib/src/rpc-socket.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/xlators/nfs/lib/src/rpc-socket.c b/xlators/nfs/lib/src/rpc-socket.c
index ec56f3fc49e..3d18a3c48c9 100644
--- a/xlators/nfs/lib/src/rpc-socket.c
+++ b/xlators/nfs/lib/src/rpc-socket.c
@@ -37,6 +37,10 @@
#include <netinet/in.h>
#include <netinet/tcp.h>
+#ifndef AI_ADDRCONFIG
+#define AI_ADDRCONFIG 0
+#endif /* AI_ADDRCONFIG */
+
static int
nfs_rpcsvc_socket_server_get_local_socket (int addrfam, char *listenhost,
uint16_t listenport,