summaryrefslogtreecommitdiffstats
path: root/sysdep/unix/unix.h
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-08-03 21:37:37 +0200
committerMartin Mares <mj@ucw.cz>1999-08-03 21:37:37 +0200
commit4532a89e31734a457d4debe56df713d66e31cdd6 (patch)
treeafdf738d416b2ac77df8d4e4a54e306e0553ddef /sysdep/unix/unix.h
parent4f22c9818554087d8f5ab51b8666a7a48d1f4329 (diff)
downloadbird-4532a89e31734a457d4debe56df713d66e31cdd6.tar
bird-4532a89e31734a457d4debe56df713d66e31cdd6.zip
Taught Netlink how to behave in IPv6 world.
Diffstat (limited to 'sysdep/unix/unix.h')
-rw-r--r--sysdep/unix/unix.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdep/unix/unix.h b/sysdep/unix/unix.h
index 4cced09..e3c9708 100644
--- a/sysdep/unix/unix.h
+++ b/sysdep/unix/unix.h
@@ -23,9 +23,11 @@ volatile int async_shutdown_flag;
#ifdef IPV6
#define BIRD_PF PF_INET6
+#define BIRD_AF AF_INET6
typedef struct sockaddr_in6 sockaddr;
#else
#define BIRD_PF PF_INET
+#define BIRD_AF AF_INET
typedef struct sockaddr_in sockaddr;
#endif