~vcs-imports/qemu/git

« back to all changes in this revision

Viewing changes to slirp/tcp_timer.h

  • Committer: ths
  • Date: 2007-06-17 15:32:30 UTC
  • Revision ID: git-v1:ffb04fcf089865952592f1f8855c2848d4514a89
Allow relative paths for the interpreter prefix in linux-user emulation.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2984 c046a42c-6fe2-441c-8c8c-71466251a162

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
                (tv) = (tvmax); \
127
127
}
128
128
 
129
 
extern const int tcp_backoff[];
 
129
extern int tcp_keepidle;                /* time before keepalive probes begin */
 
130
extern int tcp_keepintvl;               /* time between keepalive probes */
 
131
extern int tcp_maxidle;                 /* time to drop after starting probes */
 
132
extern int tcp_ttl;                     /* time to live for TCP segs */
 
133
extern int tcp_backoff[];
130
134
 
131
135
struct tcpcb;
132
136
 
133
137
void tcp_fasttimo _P((void));
134
138
void tcp_slowtimo _P((void));
135
139
void tcp_canceltimers _P((struct tcpcb *));
 
140
struct tcpcb * tcp_timers _P((register struct tcpcb *, int));
136
141
 
137
142
#endif