blob: b2601c761a59de5b3a8d56f3102dae835a4c4863 [file] [log] [blame]
Harald Welte33cb71a2011-05-21 18:54:32 +02001#ifndef _OSMOCORE_SOCKET_H
2#define _OSMOCORE_SOCKET_H
3
4#include <stdint.h>
Harald Weltee4764422011-05-22 12:25:57 +02005
6struct sockaddr;
Harald Welte33cb71a2011-05-21 18:54:32 +02007
8int osmo_sock_init(uint16_t family, uint16_t type, uint8_t proto,
9 const char *host, uint16_t port, int connect0_bind1);
10
Harald Welte68b15742011-05-22 21:47:29 +020011int 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
Harald Welte33cb71a2011-05-21 18:54:32 +020014int 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 */
Harald Weltee4764422011-05-22 12:25:57 +020018int osmo_sockaddr_is_local(struct sockaddr *addr, unsigned int addrlen);
Harald Welte33cb71a2011-05-21 18:54:32 +020019
20#endif /* _OSMOCORE_SOCKET_H */