summaryrefslogtreecommitdiffstats
path: root/stream/stream_udp.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_udp.c')
-rw-r--r--stream/stream_udp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream/stream_udp.c b/stream/stream_udp.c
index 97b0e40f6c..466241c85d 100644
--- a/stream/stream_udp.c
+++ b/stream/stream_udp.c
@@ -24,7 +24,7 @@
#include "stream.h"
#include "url.h"
-#include "rtp.h"
+#include "udp.h"
static int
udp_streaming_start (stream_t *stream)
@@ -40,7 +40,7 @@ udp_streaming_start (stream_t *stream)
if (fd < 0)
{
- fd = rtp_open_socket (streaming_ctrl->url);
+ fd = udp_open_socket (streaming_ctrl->url);
if (fd < 0)
return -1;
stream->fd = fd;