diff options
author | Martin Mares <mj@ucw.cz> | 1999-08-03 19:37:37 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-08-03 19:37:37 +0000 |
commit | 4532a89e31734a457d4debe56df713d66e31cdd6 (patch) | |
tree | afdf738d416b2ac77df8d4e4a54e306e0553ddef /sysdep/unix | |
parent | 4f22c9818554087d8f5ab51b8666a7a48d1f4329 (diff) |
Taught Netlink how to behave in IPv6 world.
Diffstat (limited to 'sysdep/unix')
-rw-r--r-- | sysdep/unix/unix.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdep/unix/unix.h b/sysdep/unix/unix.h index 4cced091..e3c9708d 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 |