mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-12 01:40:04 +01:00
change PF_INET to AF_INET to be consistent in the whole project. PF_INET is deprecated, while AF_INET is referred by the POSIX standards
Originally committed as revision 8073 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -73,7 +73,7 @@ static int tcp_open(URLContext *h, const char *uri, int flags)
|
||||
if (resolve_host(&dest_addr.sin_addr, hostname) < 0)
|
||||
goto fail;
|
||||
|
||||
fd = socket(PF_INET, SOCK_STREAM, 0);
|
||||
fd = socket(AF_INET, SOCK_STREAM, 0);
|
||||
if (fd < 0)
|
||||
goto fail;
|
||||
fcntl(fd, F_SETFL, O_NONBLOCK);
|
||||
|
||||
Reference in New Issue
Block a user