diff options
Diffstat (limited to 'include/osmocom')
-rw-r--r-- | include/osmocom/core/socket.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/core/socket.h b/include/osmocom/core/socket.h index 6db436ae..695e1d7e 100644 --- a/include/osmocom/core/socket.h +++ b/include/osmocom/core/socket.h @@ -20,6 +20,8 @@ struct osmo_fd; #define OSMO_SOCK_F_BIND (1 << 1) /*! switch socket to non-blocking mode */ #define OSMO_SOCK_F_NONBLOCK (1 << 2) +/*! disable multiast loop (IP_MULTICAST_LOOP) */ +#define OSMO_SOCK_F_NO_MCAST_LOOP (1 << 3) int osmo_sock_init(uint16_t family, uint16_t type, uint8_t proto, const char *host, uint16_t port, unsigned int flags); |