Browse Source

tcp: Try enabling SO_REUSEADDR when listening

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n1.0
Martin Storsjö 13 years ago
parent
commit
b7c3772be8
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavformat/tcp.c

+ 2
- 0
libavformat/tcp.c View File

@@ -83,6 +83,8 @@ static int tcp_open(URLContext *h, const char *uri, int flags)

if (listen_socket) {
int fd1;
int reuse = 1;
setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse));
ret = bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen);
if (ret) {
ret = ff_neterrno();


Loading…
Cancel
Save