Commit b7c3772b authored by Martin Storsjö's avatar Martin Storsjö

tcp: Try enabling SO_REUSEADDR when listening

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 641f4a88
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment