Skip to content
Snippets Groups Projects
Commit b17d099d authored by Philip Gladstone's avatar Philip Gladstone
Browse files

Improve bind failure message to indicate the port that failed

Originally committed as revision 1399 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 3178ee4c
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment