include <sys/select.h> for fd_set

This commit is contained in:
Thomas Bernard 2019-09-24 16:06:12 +02:00
parent 2917d99c58
commit 8c00d0747a
No known key found for this signature in database
GPG Key ID: 0FF11B67A5C0863C
2 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,7 @@
* in the LICENCE file provided within the distribution */ * in the LICENCE file provided within the distribution */
#include <sys/types.h> #include <sys/types.h>
#include <sys/select.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <sys/time.h> #include <sys/time.h>
#include <sys/queue.h> #include <sys/queue.h>

View File

@ -1,4 +1,4 @@
/* $Id: upnpevents.c,v 1.43 2019/05/20 19:59:21 nanard Exp $ */ /* $Id: upnpevents.c,v 1.44 2019/09/24 11:47:06 nanard Exp $ */
/* vim: tabstop=4 shiftwidth=4 noexpandtab /* vim: tabstop=4 shiftwidth=4 noexpandtab
* MiniUPnP project * MiniUPnP project
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
@ -14,6 +14,7 @@
#include <unistd.h> #include <unistd.h>
#include <time.h> #include <time.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/select.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <netinet/in.h> #include <netinet/in.h>
#include <arpa/inet.h> #include <arpa/inet.h>