Module: libav
Branch: release/0.7
Commit: 06df5420670013c43c074aa402cc2a418d6ba502

Author:    Nathan Caldwell <[email protected]>
Committer: Reinhard Tartler <[email protected]>
Date:      Tue Sep 27 18:48:43 2011 -0600

avserver: Fix a bug where the socket is IPv4, but IPv6 is autoselected for the 
loopback address.

This fixes bind(8080): Address family not supported by protocol.

Signed-off-by: Anton Khirnov <[email protected]>
(cherry picked from commit f5e717f3c735af5c941b458d42615c97028aa916)

Signed-off-by: Reinhard Tartler <[email protected]>

---

 ffserver.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/ffserver.c b/ffserver.c
index 179cac4..bab58d1 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -516,6 +516,7 @@ static int socket_open_listen(struct sockaddr_in *my_addr)
     tmp = 1;
     setsockopt(server_fd, SOL_SOCKET, SO_REUSEADDR, &tmp, sizeof(tmp));
 
+    my_addr->sin_family = AF_INET;
     if (bind (server_fd, (struct sockaddr *) my_addr, sizeof (*my_addr)) < 0) {
         char bindmsg[32];
         snprintf(bindmsg, sizeof(bindmsg), "bind(port %d)", 
ntohs(my_addr->sin_port));

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to