blob: 4d3161146461ce6980698cb8df8e078abb37f7b5 [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>
5#include <osmocore/select.h>
6
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 */