diff options
Diffstat (limited to 'slirp/slirp.h')
-rw-r--r-- | slirp/slirp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/slirp/slirp.h b/slirp/slirp.h index 5d8861ceb5..920d7a6213 100644 --- a/slirp/slirp.h +++ b/slirp/slirp.h @@ -185,6 +185,8 @@ int inet_aton _P((const char *cp, struct in_addr *ia)); #include "debug.h" +#include "sys-queue.h" + #include "libslirp.h" #include "ip.h" #include "tcp.h" @@ -207,6 +209,8 @@ int inet_aton _P((const char *cp, struct in_addr *ia)); #include "tftp.h" struct Slirp { + TAILQ_ENTRY(Slirp) entry; + /* virtual network configuration */ struct in_addr vnetwork_addr; struct in_addr vnetwork_mask; |