0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-11-08 12:18:42 +00:00

BSD: Fix build

This commit is contained in:
Ondrej Zajicek (work) 2018-01-23 18:57:59 +01:00
parent ea8a8c5d3b
commit 1661e00280

View File

@ -245,6 +245,20 @@ sk_set_min_ttl6(sock *s, int ttl UNUSED)
ERR_MSG("Kernel does not support IPv6 TTL security");
}
static inline int
sk_set_router_alert4(sock *s, int ra)
{
/* TODO: Set IP_ROUTER_ALERT to 1 ? */
return 0;
}
static inline int
sk_set_router_alert6(sock *s, int ra)
{
/* TODO: Set IPV6_ROUTER_ALERT to 1 ? */
return 0;
}
static inline int
sk_disable_mtu_disc4(sock *s UNUSED)
{