socket: use listen() and SO_REUSEADDR, new osmo_sock_init_ofd() function
[osmocom-bb.git] / include / osmocom / core / socket.h
1 #ifndef _OSMOCORE_SOCKET_H
2 #define _OSMOCORE_SOCKET_H
3
4 #include <stdint.h>
5
6 struct sockaddr;
7
8 int osmo_sock_init(uint16_t family, uint16_t type, uint8_t proto,
9                    const char *host, uint16_t port, int connect0_bind1);
10
11 int osmo_sock_init_ofd(struct osmo_fd *ofd, int family, int type, int proto,
12                         const char *host, uint16_t port, int connect0_bind1);
13
14 int osmo_sock_init_sa(struct sockaddr *ss, uint16_t type,
15                       uint8_t proto, int connect0_bind1);
16
17 /* determine if the given address is a local address */
18 int osmo_sockaddr_is_local(struct sockaddr *addr, unsigned int addrlen);
19
20 #endif /* _OSMOCORE_SOCKET_H */