Commit 050056d0 authored by Baptiste Coudurier's avatar Baptiste Coudurier

log accept error

Originally committed as revision 13844 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b4befb99
......@@ -654,8 +654,10 @@ static void new_connection(int server_fd, int is_rtsp)
len = sizeof(from_addr);
fd = accept(server_fd, (struct sockaddr *)&from_addr,
&len);
if (fd < 0)
if (fd < 0) {
http_log("error during accept %s\n", strerror(errno));
return;
}
ff_socket_nonblock(fd, 1);
/* XXX: should output a warning page when coming
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment