aboutsummaryrefslogtreecommitdiff
path: root/if.h
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2009-06-24 14:42:31 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-06-29 08:52:49 -0500
commitb3bbd4ea13a8c4c0a753b32d4c4781b453a6e5ab (patch)
tree7b3f0e75a455bd91be34b02e4d359711eaf04e7c /if.h
parentee89d7bf054980fdc727237173d76c81a639e608 (diff)
downloadslirp-b3bbd4ea13a8c4c0a753b32d4c4781b453a6e5ab.zip
slirp-b3bbd4ea13a8c4c0a753b32d4c4781b453a6e5ab.tar.gz
slirp-b3bbd4ea13a8c4c0a753b32d4c4781b453a6e5ab.tar.bz2
slirp: Factor out internal state structure
The essence of this patch is to stuff (almost) all global variables of the slirp stack into the structure Slirp. In this step, we still keep the structure as global variable, directly accessible by the whole stack. Changes to the external interface of slirp will be applied in the following patches. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'if.h')
-rw-r--r--if.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/if.h b/if.h
index 86b8713..29b0977 100644
--- a/if.h
+++ b/if.h
@@ -20,12 +20,6 @@
/* 2 for alignment, 14 for ethernet, 40 for TCP/IP */
#define IF_MAXLINKHDR (2 + 14 + 40)
-extern int if_queued; /* Number of packets queued so far */
-
-extern struct mbuf if_fastq; /* fast queue (for interactive data) */
-extern struct mbuf if_batchq; /* queue for non-interactive data */
-extern struct mbuf *next_m;
-
#define ifs_init(ifm) ((ifm)->ifs_next = (ifm)->ifs_prev = (ifm))
#endif