summaryrefslogtreecommitdiffstats
path: root/stream/librtsp/rtsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/librtsp/rtsp.c')
-rw-r--r--stream/librtsp/rtsp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/stream/librtsp/rtsp.c b/stream/librtsp/rtsp.c
index 53ed233c53..82669616ac 100644
--- a/stream/librtsp/rtsp.c
+++ b/stream/librtsp/rtsp.c
@@ -51,6 +51,7 @@
#include "rtsp.h"
#include "rtsp_session.h"
#include "osdep/timer.h"
+#include "stream/network.h"
/*
#define LOG
@@ -67,7 +68,7 @@ static int write_stream(int s, const char *buf, int len) {
while (total < len){
int n;
- n = send (s, &buf[total], len - total, 0);
+ n = send (s, &buf[total], len - total, DEFAULT_SEND_FLAGS);
if (n > 0)
total += n;