Browse Source

Improve bind failure message to indicate the port that failed

Originally committed as revision 1399 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Philip Gladstone 22 years ago
parent
commit
b17d099db4
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      ffserver.c

+ 3
- 1
ffserver.c View File

@@ -429,7 +429,9 @@ static int socket_open_listen(struct sockaddr_in *my_addr)
setsockopt(server_fd, SOL_SOCKET, SO_REUSEADDR, &tmp, sizeof(tmp));

if (bind (server_fd, (struct sockaddr *) my_addr, sizeof (*my_addr)) < 0) {
perror ("bind");
char bindmsg[32];
snprintf(bindmsg, sizeof(bindmsg), "bind(port %d)", ntohs(my_addr->sin_port));
perror (bindmsg);
close(server_fd);
return -1;
}


Loading…
Cancel
Save