VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/slirp/tcp_subr.c@ 22206

最後變更 在這個檔案從22206是 22013,由 vboxsync 提交於 15 年 前

NAT: clearing (removing non-libalias code)

  • 屬性 svn:eol-style 設為 native
檔案大小: 18.8 KB
 
1/*
2 * Copyright (c) 1982, 1986, 1988, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)tcp_subr.c 8.1 (Berkeley) 6/10/93
34 * tcp_subr.c,v 1.5 1994/10/08 22:39:58 phk Exp
35 */
36
37/*
38 * Changes and additions relating to SLiRP
39 * Copyright (c) 1995 Danny Gasparovski.
40 *
41 * Please read the file COPYRIGHT for the
42 * terms and conditions of the copyright.
43 */
44
45#define WANT_SYS_IOCTL_H
46#include <slirp.h>
47
48
49/*
50 * Tcp initialization
51 */
52void
53tcp_init(PNATState pData)
54{
55 tcp_iss = 1; /* wrong */
56 tcb.so_next = tcb.so_prev = &tcb;
57 tcp_last_so = &tcb;
58 tcp_reass_maxqlen = 48;
59 tcp_reass_maxseg = 256;
60}
61
62/*
63 * Create template to be used to send tcp packets on a connection.
64 * Call after host entry created, fills
65 * in a skeletal tcp/ip header, minimizing the amount of work
66 * necessary when the connection is used.
67 */
68/* struct tcpiphdr * */
69void
70tcp_template(struct tcpcb *tp)
71{
72 struct socket *so = tp->t_socket;
73 register struct tcpiphdr *n = &tp->t_template;
74
75 memset(n->ti_x1, 0, 9);
76 n->ti_pr = IPPROTO_TCP;
77 n->ti_len = htons(sizeof (struct tcpiphdr) - sizeof (struct ip));
78 n->ti_src = so->so_faddr;
79 n->ti_dst = so->so_laddr;
80 n->ti_sport = so->so_fport;
81 n->ti_dport = so->so_lport;
82
83 n->ti_seq = 0;
84 n->ti_ack = 0;
85 n->ti_x2 = 0;
86 n->ti_off = 5;
87 n->ti_flags = 0;
88 n->ti_win = 0;
89 n->ti_sum = 0;
90 n->ti_urp = 0;
91}
92
93/*
94 * Send a single message to the TCP at address specified by
95 * the given TCP/IP header. If m == 0, then we make a copy
96 * of the tcpiphdr at ti and send directly to the addressed host.
97 * This is used to force keep alive messages out using the TCP
98 * template for a connection tp->t_template. If flags are given
99 * then we send a message back to the TCP which originated the
100 * segment ti, and discard the mbuf containing it and any other
101 * attached mbufs.
102 *
103 * In any case the ack and sequence number of the transmitted
104 * segment are as specified by the parameters.
105 */
106void
107tcp_respond(PNATState pData, struct tcpcb *tp, struct tcpiphdr *ti, struct mbuf *m, tcp_seq ack, tcp_seq seq, int flags)
108{
109 register int tlen;
110 int win = 0;
111
112 DEBUG_CALL("tcp_respond");
113 DEBUG_ARG("tp = %lx", (long)tp);
114 DEBUG_ARG("ti = %lx", (long)ti);
115 DEBUG_ARG("m = %lx", (long)m);
116 DEBUG_ARG("ack = %u", ack);
117 DEBUG_ARG("seq = %u", seq);
118 DEBUG_ARG("flags = %x", flags);
119
120 if (tp)
121 win = sbspace(&tp->t_socket->so_rcv);
122 if (m == 0)
123 {
124 if ((m = m_get(pData)) == NULL)
125 return;
126#ifdef VBOX_WITH_NAT_SERVICE
127 {
128 struct ethhdr *eh0, *eh;
129 Assert(tp->t_socket->so_m);
130 eh0 = (struct ethhdr *)tp->t_socket->so_m->m_dat;
131 eh = (struct ethhdr *)m->m_dat;
132 memcpy(eh->h_source, eh0->h_source, ETH_ALEN);
133 }
134#endif
135#ifdef TCP_COMPAT_42
136 tlen = 1;
137#else
138 tlen = 0;
139#endif
140 m->m_data += if_maxlinkhdr;
141 *mtod(m, struct tcpiphdr *) = *ti;
142 ti = mtod(m, struct tcpiphdr *);
143 flags = TH_ACK;
144 }
145 else
146 {
147 /*
148 * ti points into m so the next line is just making
149 * the mbuf point to ti
150 */
151 m->m_data = (caddr_t)ti;
152
153 m->m_len = sizeof (struct tcpiphdr);
154 tlen = 0;
155#define xchg(a,b,type) { type t; t = a; a = b; b = t; }
156 xchg(ti->ti_dst.s_addr, ti->ti_src.s_addr, u_int32_t);
157 xchg(ti->ti_dport, ti->ti_sport, u_int16_t);
158#undef xchg
159 }
160 ti->ti_len = htons((u_short)(sizeof (struct tcphdr) + tlen));
161 tlen += sizeof (struct tcpiphdr);
162 m->m_len = tlen;
163
164 memset(ti->ti_x1, 0, 9);
165 ti->ti_seq = htonl(seq);
166 ti->ti_ack = htonl(ack);
167 ti->ti_x2 = 0;
168 ti->ti_off = sizeof (struct tcphdr) >> 2;
169 ti->ti_flags = flags;
170 if (tp)
171 ti->ti_win = htons((u_int16_t) (win >> tp->rcv_scale));
172 else
173 ti->ti_win = htons((u_int16_t)win);
174 ti->ti_urp = 0;
175 ti->ti_sum = 0;
176 ti->ti_sum = cksum(m, tlen);
177 ((struct ip *)ti)->ip_len = tlen;
178
179 if(flags & TH_RST)
180 ((struct ip *)ti)->ip_ttl = MAXTTL;
181 else
182 ((struct ip *)ti)->ip_ttl = ip_defttl;
183
184 (void) ip_output(pData, (struct socket *)0, m);
185}
186
187/*
188 * Create a new TCP control block, making an
189 * empty reassembly queue and hooking it to the argument
190 * protocol control block.
191 */
192struct tcpcb *
193tcp_newtcpcb(PNATState pData, struct socket *so)
194{
195 register struct tcpcb *tp;
196
197 tp = (struct tcpcb *)RTMemAllocZ(sizeof(*tp));
198 if (tp == NULL)
199 return ((struct tcpcb *)0);
200
201 tp->t_maxseg = tcp_mssdflt;
202
203 tp->t_flags = tcp_do_rfc1323 ? (TF_REQ_SCALE|TF_REQ_TSTMP) : 0;
204 tp->t_socket = so;
205
206 /*
207 * Init srtt to TCPTV_SRTTBASE (0), so we can tell that we have no
208 * rtt estimate. Set rttvar so that srtt + 2 * rttvar gives
209 * reasonable initial retransmit time.
210 */
211 tp->t_srtt = TCPTV_SRTTBASE;
212 tp->t_rttvar = tcp_rttdflt * PR_SLOWHZ << 2;
213 tp->t_rttmin = TCPTV_MIN;
214
215 TCPT_RANGESET(tp->t_rxtcur,
216 ((TCPTV_SRTTBASE >> 2) + (TCPTV_SRTTDFLT << 2)) >> 1,
217 TCPTV_MIN, TCPTV_REXMTMAX);
218
219 tp->snd_cwnd = TCP_MAXWIN << TCP_MAX_WINSHIFT;
220 tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT;
221 tp->t_state = TCPS_CLOSED;
222
223 so->so_tcpcb = tp;
224
225 return (tp);
226}
227
228/*
229 * Drop a TCP connection, reporting
230 * the specified error. If connection is synchronized,
231 * then send a RST to peer.
232 */
233struct tcpcb *tcp_drop(PNATState pData, struct tcpcb *tp, int err)
234{
235/* tcp_drop(tp, errno)
236 register struct tcpcb *tp;
237 int errno;
238{
239*/
240 DEBUG_CALL("tcp_drop");
241 DEBUG_ARG("tp = %lx", (long)tp);
242 DEBUG_ARG("errno = %d", errno);
243
244 if (TCPS_HAVERCVDSYN(tp->t_state))
245 {
246 tp->t_state = TCPS_CLOSED;
247 (void) tcp_output(pData, tp);
248 tcpstat.tcps_drops++;
249 }
250 else
251 tcpstat.tcps_conndrops++;
252#if 0
253 if (errno == ETIMEDOUT && tp->t_softerror)
254 errno = tp->t_softerror;
255
256 so->so_error = errno;
257#endif
258 return (tcp_close(pData, tp));
259}
260
261/*
262 * Close a TCP control block:
263 * discard all space held by the tcp
264 * discard internet protocol block
265 * wake up any sleepers
266 */
267struct tcpcb *
268tcp_close(PNATState pData, register struct tcpcb *tp)
269{
270 struct socket *so = tp->t_socket;
271 struct socket *so_next, *so_prev;
272
273 struct tseg_qent *te = NULL;
274 DEBUG_CALL("tcp_close");
275 DEBUG_ARG("tp = %lx", (long )tp);
276 so_next = so_prev = NULL;
277 /*XXX: freeing the reassembly queue */
278 while (!LIST_EMPTY(&tp->t_segq))
279 {
280 te = LIST_FIRST(&tp->t_segq);
281 LIST_REMOVE(te, tqe_q);
282 m_freem(pData, te->tqe_m);
283 RTMemFree(te);
284 tcp_reass_qsize--;
285 }
286 RTMemFree(tp);
287 so->so_tcpcb = 0;
288 soisfdisconnected(so);
289 /* clobber input socket cache if we're closing the cached connection */
290 if (so == tcp_last_so)
291 tcp_last_so = &tcb;
292 closesocket(so->s);
293 sbfree(&so->so_rcv);
294 sbfree(&so->so_snd);
295 sofree(pData, so);
296 SOCKET_UNLOCK(so);
297 tcpstat.tcps_closed++;
298 return ((struct tcpcb *)0);
299}
300
301void
302tcp_drain()
303{
304 /* XXX */
305}
306
307/*
308 * When a source quench is received, close congestion window
309 * to one segment. We will gradually open it again as we proceed.
310 */
311
312#if 0
313
314void
315tcp_quench(i, int errno)
316{
317 struct tcpcb *tp = intotcpcb(inp);
318
319 if (tp)
320 tp->snd_cwnd = tp->t_maxseg;
321}
322
323#endif
324
325/*
326 * TCP protocol interface to socket abstraction.
327 */
328
329/*
330 * User issued close, and wish to trail through shutdown states:
331 * if never received SYN, just forget it. If got a SYN from peer,
332 * but haven't sent FIN, then go to FIN_WAIT_1 state to send peer a FIN.
333 * If already got a FIN from peer, then almost done; go to LAST_ACK
334 * state. In all other cases, have already sent FIN to peer (e.g.
335 * after PRU_SHUTDOWN), and just have to play tedious game waiting
336 * for peer to send FIN or not respond to keep-alives, etc.
337 * We can let the user exit from the close as soon as the FIN is acked.
338 */
339void
340tcp_sockclosed(PNATState pData, struct tcpcb *tp)
341{
342 DEBUG_CALL("tcp_sockclosed");
343 DEBUG_ARG("tp = %lx", (long)tp);
344
345 switch (tp->t_state)
346 {
347 case TCPS_CLOSED:
348 case TCPS_LISTEN:
349 case TCPS_SYN_SENT:
350 tp->t_state = TCPS_CLOSED;
351 tp = tcp_close(pData, tp);
352 break;
353
354 case TCPS_SYN_RECEIVED:
355 case TCPS_ESTABLISHED:
356 tp->t_state = TCPS_FIN_WAIT_1;
357 break;
358
359 case TCPS_CLOSE_WAIT:
360 tp->t_state = TCPS_LAST_ACK;
361 break;
362 }
363/* soisfdisconnecting(tp->t_socket); */
364 if ( tp
365 && tp->t_state >= TCPS_FIN_WAIT_2)
366 soisfdisconnected(tp->t_socket);
367 if (tp)
368 tcp_output(pData, tp);
369}
370
371/*
372 * Connect to a host on the Internet
373 * Called by tcp_input
374 * Only do a connect, the tcp fields will be set in tcp_input
375 * return 0 if there's a result of the connect,
376 * else return -1 means we're still connecting
377 * The return value is almost always -1 since the socket is
378 * nonblocking. Connect returns after the SYN is sent, and does
379 * not wait for ACK+SYN.
380 */
381int tcp_fconnect(PNATState pData, struct socket *so)
382{
383 int ret = 0;
384
385 DEBUG_CALL("tcp_fconnect");
386 DEBUG_ARG("so = %lx", (long )so);
387
388 if ((ret = so->s = socket(AF_INET, SOCK_STREAM, 0)) >= 0)
389 {
390 int opt, s = so->s;
391 struct sockaddr_in addr;
392
393 fd_nonblock(s);
394 opt = 1;
395 setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char *)&opt, sizeof(opt));
396 opt = 1;
397 setsockopt(s, SOL_SOCKET, SO_OOBINLINE, (char *)&opt, sizeof(opt));
398
399 addr.sin_family = AF_INET;
400 if ((so->so_faddr.s_addr & htonl(pData->netmask)) == special_addr.s_addr)
401 {
402 /* It's an alias */
403 switch(ntohl(so->so_faddr.s_addr) & ~pData->netmask)
404 {
405 case CTL_DNS:
406 case CTL_ALIAS:
407 default:
408 addr.sin_addr = loopback_addr;
409 break;
410 }
411 }
412 else
413 addr.sin_addr = so->so_faddr;
414 addr.sin_port = so->so_fport;
415
416 DEBUG_MISC((dfd, " connect()ing, addr.sin_port=%d, "
417 "addr.sin_addr.s_addr=%.16s\n",
418 ntohs(addr.sin_port), inet_ntoa(addr.sin_addr)));
419 /* We don't care what port we get */
420 ret = connect(s,(struct sockaddr *)&addr,sizeof (addr));
421
422 /*
423 * If it's not in progress, it failed, so we just return 0,
424 * without clearing SS_NOFDREF
425 */
426 soisfconnecting(so);
427 }
428
429 return(ret);
430}
431
432/*
433 * Accept the socket and connect to the local-host
434 *
435 * We have a problem. The correct thing to do would be
436 * to first connect to the local-host, and only if the
437 * connection is accepted, then do an accept() here.
438 * But, a) we need to know who's trying to connect
439 * to the socket to be able to SYN the local-host, and
440 * b) we are already connected to the foreign host by
441 * the time it gets to accept(), so... We simply accept
442 * here and SYN the local-host.
443 */
444void
445tcp_connect(PNATState pData, struct socket *inso)
446{
447 struct socket *so;
448 struct sockaddr_in addr;
449 socklen_t addrlen = sizeof(struct sockaddr_in);
450 struct tcpcb *tp;
451 int s, opt;
452 int status;
453 socklen_t optlen;
454 static int cVerbose = 1;
455
456 DEBUG_CALL("tcp_connect");
457 DEBUG_ARG("inso = %lx", (long)inso);
458
459 /*
460 * If it's an SS_ACCEPTONCE socket, no need to socreate()
461 * another socket, just use the accept() socket.
462 */
463 if (inso->so_state & SS_FACCEPTONCE)
464 {
465 /* FACCEPTONCE already have a tcpcb */
466 so = inso;
467 }
468 else
469 {
470 if ((so = socreate()) == NULL)
471 {
472 /* If it failed, get rid of the pending connection */
473 closesocket(accept(inso->s,(struct sockaddr *)&addr,&addrlen));
474 return;
475 }
476 if (tcp_attach(pData, so) < 0)
477 {
478 RTMemFree(so); /* NOT sofree */
479 return;
480 }
481 so->so_laddr = inso->so_laddr;
482 so->so_lport = inso->so_lport;
483 so->so_la = inso->so_la;
484 }
485
486 (void) tcp_mss(pData, sototcpcb(so), 0);
487
488 fd_nonblock(inso->s);
489 if ((s = accept(inso->s,(struct sockaddr *)&addr,&addrlen)) < 0)
490 {
491 tcp_close(pData, sototcpcb(so)); /* This will sofree() as well */
492 return;
493 }
494 fd_nonblock(s);
495 opt = 1;
496 setsockopt(s, SOL_SOCKET, SO_REUSEADDR,(char *)&opt, sizeof(int));
497 opt = 1;
498 setsockopt(s, SOL_SOCKET, SO_OOBINLINE,(char *)&opt, sizeof(int));
499#if 0
500 opt = 1;
501 setsockopt(s, IPPROTO_TCP, TCP_NODELAY,(char *)&opt, sizeof(int));
502#endif
503
504 optlen = sizeof(int);
505 status = getsockopt(s, SOL_SOCKET, SO_RCVBUF, (char *)&opt, &optlen);
506 if (status < 0)
507 {
508 LogRel(("NAT: Error(%d) while getting RCV capacity\n", errno));
509 goto no_sockopt;
510 }
511 if (cVerbose > 0)
512 LogRel(("NAT: old socket rcv size: %dKB\n", opt / 1024));
513 /* @todo (r-vvl) make it configurable (via extra data) */
514 opt = pData->socket_rcv;
515 status = setsockopt(s, SOL_SOCKET, SO_RCVBUF, (char *)&opt, sizeof(int));
516 if (status < 0)
517 {
518 LogRel(("NAT: Error(%d) while setting RCV capacity to (%d)\n", errno, opt));
519 goto no_sockopt;
520 }
521 optlen = sizeof(int);
522 status = getsockopt(s, SOL_SOCKET, SO_SNDBUF, (char *)&opt, &optlen);
523 if (status < 0)
524 {
525 LogRel(("NAT: Error(%d) while getting SND capacity\n", errno));
526 goto no_sockopt;
527 }
528 if (cVerbose > 0)
529 LogRel(("NAT: old socket snd size: %dKB\n", opt / 1024));
530 opt = pData->socket_rcv;
531 status = setsockopt(s, SOL_SOCKET, SO_SNDBUF, (char *)&opt, sizeof(int));
532 if (status < 0)
533 {
534 LogRel(("NAT: Error(%d) while setting SND capacity to (%d)\n", errno, opt));
535 goto no_sockopt;
536 }
537 if (cVerbose > 0)
538 cVerbose--;
539
540 no_sockopt:
541 so->so_fport = addr.sin_port;
542 so->so_faddr = addr.sin_addr;
543 /* Translate connections from localhost to the real hostname */
544 if (so->so_faddr.s_addr == 0 || so->so_faddr.s_addr == loopback_addr.s_addr)
545 so->so_faddr = alias_addr;
546
547 /* Close the accept() socket, set right state */
548 if (inso->so_state & SS_FACCEPTONCE)
549 {
550 closesocket(so->s); /* If we only accept once, close the accept() socket */
551 so->so_state = SS_NOFDREF; /* Don't select it yet, even though we have an FD */
552 /* if it's not FACCEPTONCE, it's already NOFDREF */
553 }
554 so->s = s;
555
556 so->so_iptos = tcp_tos(so);
557 tp = sototcpcb(so);
558
559 tcp_template(tp);
560
561 /* Compute window scaling to request. */
562/* while (tp->request_r_scale < TCP_MAX_WINSHIFT
563 * && (TCP_MAXWIN << tp->request_r_scale) < so->so_rcv.sb_hiwat)
564 * tp->request_r_scale++;
565 */
566
567/* soisconnecting(so); */ /* NOFDREF used instead */
568 tcpstat.tcps_connattempt++;
569
570 tp->t_state = TCPS_SYN_SENT;
571 tp->t_timer[TCPT_KEEP] = TCPTV_KEEP_INIT;
572 tp->iss = tcp_iss;
573 tcp_iss += TCP_ISSINCR/2;
574 tcp_sendseqinit(tp);
575 tcp_output(pData, tp);
576}
577
578/*
579 * Attach a TCPCB to a socket.
580 */
581int
582tcp_attach(PNATState pData, struct socket *so)
583{
584 if ((so->so_tcpcb = tcp_newtcpcb(pData, so)) == NULL)
585 return -1;
586
587 SOCKET_LOCK_CREATE(so);
588 QSOCKET_LOCK(tcb);
589 insque(pData, so, &tcb);
590 NSOCK_INC();
591 QSOCKET_UNLOCK(tcb);
592 return 0;
593}
594
595/*
596 * Set the socket's type of service field
597 */
598static const struct tos_t tcptos[] =
599{
600 {0, 20, IPTOS_THROUGHPUT, 0}, /* ftp data */
601 {21, 21, IPTOS_LOWDELAY, EMU_FTP}, /* ftp control */
602 {0, 23, IPTOS_LOWDELAY, 0}, /* telnet */
603 {0, 80, IPTOS_THROUGHPUT, 0}, /* WWW */
604 {0, 513, IPTOS_LOWDELAY, EMU_RLOGIN|EMU_NOCONNECT}, /* rlogin */
605 {0, 514, IPTOS_LOWDELAY, EMU_RSH|EMU_NOCONNECT}, /* shell */
606 {0, 544, IPTOS_LOWDELAY, EMU_KSH}, /* kshell */
607 {0, 543, IPTOS_LOWDELAY, 0}, /* klogin */
608 {0, 6667, IPTOS_THROUGHPUT, EMU_IRC}, /* IRC */
609 {0, 6668, IPTOS_THROUGHPUT, EMU_IRC}, /* IRC undernet */
610 {0, 7070, IPTOS_LOWDELAY, EMU_REALAUDIO }, /* RealAudio control */
611 {0, 113, IPTOS_LOWDELAY, EMU_IDENT }, /* identd protocol */
612 {0, 0, 0, 0}
613};
614
615/*
616 * Return TOS according to the above table
617 */
618u_int8_t
619tcp_tos(struct socket *so)
620{
621 return 0;
622}
623
624/*
625 * Emulate programs that try and connect to us. This includes ftp (the data
626 * connection is initiated by the server) and IRC (DCC CHAT and DCC SEND)
627 * for now
628 *
629 * NOTE: It's possible to crash SLiRP by sending it unstandard strings to
630 * emulate... if this is a problem, more checks are needed here.
631 *
632 * XXX Assumes the whole command cames in one packet
633 *
634 * XXX Some ftp clients will have their TOS set to LOWDELAY and so Nagel will
635 * kick in. Because of this, we'll get the first letter, followed by the
636 * rest, so we simply scan for ORT instead of PORT... DCC doesn't have this
637 * problem because there's other stuff in the packet before the DCC command.
638 *
639 * Return 1 if the mbuf m is still valid and should be sbappend()ed
640 *
641 * NOTE: if you return 0 you MUST m_free() the mbuf!
642 */
643int
644tcp_emu(PNATState pData, struct socket *so, struct mbuf *m)
645{
646 /*XXX: libalias should care about it */
647 so->so_emu = 0;
648 return 1;
649}
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette