aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/libmgcp
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-03-22 09:51:43 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-03-22 09:51:43 +0100
commitd0e171a9ffe8700d86feb5b73aeb0eccf02c1e7d (patch)
treea127324849c0db105962d61ca94550fa6578c507 /openbsc/src/libmgcp
parent8deba01eda7d32e32583d2a862984b430888fbe3 (diff)
rtp: Use osmocom/netif/rtp.h for the rtp structure definition
We depend on libosmo-netif unconditionally. Let's use this definition of rtp and have one portability issue less.
Diffstat (limited to 'openbsc/src/libmgcp')
-rw-r--r--openbsc/src/libmgcp/mgcp_network.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/openbsc/src/libmgcp/mgcp_network.c b/openbsc/src/libmgcp/mgcp_network.c
index c3f43dd39..07e1515da 100644
--- a/openbsc/src/libmgcp/mgcp_network.c
+++ b/openbsc/src/libmgcp/mgcp_network.c
@@ -25,6 +25,8 @@
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
+#include <time.h>
+#include <limits.h>
#include <sys/socket.h>
#include <arpa/inet.h>
@@ -32,9 +34,10 @@
#include <osmocom/core/msgb.h>
#include <osmocom/core/select.h>
+#include <osmocom/netif/rtp.h>
+
#include <openbsc/mgcp.h>
#include <openbsc/mgcp_internal.h>
-#include <openbsc/rtp.h>
#include <openbsc/osmux.h>