blob: faca7647b32d193b1d1df0bc58d4b966888f0b2e [file] [log] [blame]
Harald Welte3a318ab2010-05-19 14:11:05 +02001#ifndef _BSC_SOCKET_H
2#define _BSC_SOCKET_H
3
4#include <sys/types.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +01005#include <osmocom/core/select.h>
Harald Welte3a318ab2010-05-19 14:11:05 +02006
7#ifndef IPPROTO_GRE
8#define IPPROTO_GRE 47
9#endif
10
Harald Welte5540c4c2010-05-19 14:38:50 +020011int make_sock(struct bsc_fd *bfd, int proto, u_int32_t ip, u_int16_t port,
Harald Welte3a318ab2010-05-19 14:11:05 +020012 int (*cb)(struct bsc_fd *fd, unsigned int what));
13
14#endif /* _BSC_SOCKET_H */