[FFmpeg-cvslog] avserver: Fix a bug where the socket is IPv4, but IPv6 is autoselected for the loopback address.
Nathan Caldwell
git at videolan.org
Sat Oct 1 03:06:41 CEST 2011
ffmpeg | branch: master | Nathan Caldwell <saintdev at gmail.com> | Tue Sep 27 18:48:43 2011 -0600| [f5e717f3c735af5c941b458d42615c97028aa916] | committer: Anton Khirnov
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 <anton at khirnov.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f5e717f3c735af5c941b458d42615c97028aa916
---
avserver.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/avserver.c b/avserver.c
index d0a14aa..7b8bf13 100644
--- a/avserver.c
+++ b/avserver.c
@@ -522,6 +522,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));
More information about the ffmpeg-cvslog
mailing list