Found a solution, it needs AF_INET forced, assuming something with there
no longer being a default in new libraries:

in ffserver.c from line #605:

CHANGED:

    if (my_http_addr.sin_port) {
        server_fd = socket_open_listen(&my_http_addr);
        if (server_fd < 0)
            return -1;
    }

TO

    if (my_http_addr.sin_port) {
        my_http_addr.sin_family = AF_INET;
        server_fd = socket_open_listen(&my_http_addr);
        if (server_fd < 0)
            return -1;
    }

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/879018

Title:
  ffserver cannot bind listening port

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libav/+bug/879018/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to