diff options
Diffstat (limited to 'lib/socket.h')
-rw-r--r-- | lib/socket.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/socket.h b/lib/socket.h index a21075e..e6ce125 100644 --- a/lib/socket.h +++ b/lib/socket.h @@ -9,6 +9,8 @@ #ifndef _BIRD_SOCKET_H_ #define _BIRD_SOCKET_H_ +#include <errno.h> + #include "lib/resource.h" typedef struct birdsock { @@ -67,6 +69,8 @@ int sk_leave_group(sock *s, ip_addr maddr); int sk_set_ipv6_checksum(sock *s, int offset); #endif +int sk_set_broadcast(sock *s, int enable); + static inline int sk_send_buffer_empty(sock *sk) { |