aboutsummaryrefslogtreecommitdiffstats
path: root/include/openbsc/socket.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/openbsc/socket.h')
-rw-r--r--include/openbsc/socket.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/openbsc/socket.h b/include/openbsc/socket.h
new file mode 100644
index 000000000..4d3161146
--- /dev/null
+++ b/include/openbsc/socket.h
@@ -0,0 +1,14 @@
+#ifndef _BSC_SOCKET_H
+#define _BSC_SOCKET_H
+
+#include <sys/types.h>
+#include <osmocore/select.h>
+
+#ifndef IPPROTO_GRE
+#define IPPROTO_GRE 47
+#endif
+
+int make_sock(struct bsc_fd *bfd, int proto, u_int32_t ip, u_int16_t port,
+ int (*cb)(struct bsc_fd *fd, unsigned int what));
+
+#endif /* _BSC_SOCKET_H */