diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2009-06-24 14:42:31 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-06-29 08:52:49 -0500 |
commit | e8c90d6f85793cb58bcf6dd61951b2515cc4a72d (patch) | |
tree | 398605fd3595389ac29b7af0e0151a19edf25ff5 /slirp/tcp_timer.h | |
parent | f203f4537e9333804f93f21928cea77926eb7f7c (diff) | |
download | qemu-e8c90d6f85793cb58bcf6dd61951b2515cc4a72d.tar.gz qemu-e8c90d6f85793cb58bcf6dd61951b2515cc4a72d.tar.bz2 qemu-e8c90d6f85793cb58bcf6dd61951b2515cc4a72d.zip |
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 'slirp/tcp_timer.h')
-rw-r--r-- | slirp/tcp_timer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slirp/tcp_timer.h b/slirp/tcp_timer.h index f648ed0de7..cfb06ffc87 100644 --- a/slirp/tcp_timer.h +++ b/slirp/tcp_timer.h @@ -120,8 +120,8 @@ extern const int tcp_backoff[]; struct tcpcb; -void tcp_fasttimo _P((void)); -void tcp_slowtimo _P((void)); +void tcp_fasttimo _P((Slirp *)); +void tcp_slowtimo _P((Slirp *)); void tcp_canceltimers _P((struct tcpcb *)); #endif |