summaryrefslogtreecommitdiff
path: root/gst/dccp
diff options
context:
space:
mode:
Diffstat (limited to 'gst/dccp')
-rw-r--r--gst/dccp/gstdccp.c8
-rw-r--r--gst/dccp/gstdccpclientsrc.c5
2 files changed, 13 insertions, 0 deletions
diff --git a/gst/dccp/gstdccp.c b/gst/dccp/gstdccp.c
index 35f374324..8a4f02df6 100644
--- a/gst/dccp/gstdccp.c
+++ b/gst/dccp/gstdccp.c
@@ -17,6 +17,10 @@
* Boston, MA 02111-1307, USA.
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "gstdccp.h"
#include <sys/types.h>
#include <sys/socket.h>
@@ -27,6 +31,10 @@
#include <sys/ioctl.h>
#include <string.h>
+#ifdef HAVE_FIONREAD_IN_SYS_FILIO
+#include <sys/filio.h>
+#endif
+
/* Prototypes and definitions for private functions and not exported via gstdccp.h */
gint gst_dccp_socket_write (int socket, const void *buf, size_t count,
int packet_size);
diff --git a/gst/dccp/gstdccpclientsrc.c b/gst/dccp/gstdccpclientsrc.c
index bd42bf66e..f82bd1708 100644
--- a/gst/dccp/gstdccpclientsrc.c
+++ b/gst/dccp/gstdccpclientsrc.c
@@ -56,6 +56,11 @@
#include <arpa/inet.h>
#include <fcntl.h>
+#include <sys/ioctl.h>
+#ifdef HAVE_FIONREAD_IN_SYS_FILIO
+#include <sys/filio.h>
+#endif
+
#define DCCP_DEFAULT_CAPS NULL
/* signals */