VirtualBox

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

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

NAT: BSD mbuf

  • 屬性 svn:eol-style 設為 native
檔案大小: 18.6 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#ifndef VBOX_WITH_SLIRP_BSD_MBUF
125 if ((m = m_get(pData)) == NULL)
126#else
127 if ((m = m_gethdr(pData, M_DONTWAIT, MT_HEADER)) == NULL)
128#endif
129 return;
130#ifdef TCP_COMPAT_42
131 tlen = 1;
132#else
133 tlen = 0;
134#endif
135 m->m_data += if_maxlinkhdr;
136 *mtod(m, struct tcpiphdr *) = *ti;
137 ti = mtod(m, struct tcpiphdr *);
138 flags = TH_ACK;
139 }
140 else
141 {
142 /*
143 * ti points into m so the next line is just making
144 * the mbuf point to ti
145 */
146 m->m_data = (caddr_t)ti;
147
148 m->m_len = sizeof (struct tcpiphdr);
149 tlen = 0;
150#define xchg(a,b,type) { type t; t = a; a = b; b = t; }
151 xchg(ti->ti_dst.s_addr, ti->ti_src.s_addr, u_int32_t);
152 xchg(ti->ti_dport, ti->ti_sport, u_int16_t);
153#undef xchg
154 }
155 ti->ti_len = htons((u_short)(sizeof (struct tcphdr) + tlen));
156 tlen += sizeof (struct tcpiphdr);
157 m->m_len = tlen;
158
159 memset(ti->ti_x1, 0, 9);
160 ti->ti_seq = htonl(seq);
161 ti->ti_ack = htonl(ack);
162 ti->ti_x2 = 0;
163 ti->ti_off = sizeof (struct tcphdr) >> 2;
164 ti->ti_flags = flags;
165 if (tp)
166 ti->ti_win = htons((u_int16_t) (win >> tp->rcv_scale));
167 else
168 ti->ti_win = htons((u_int16_t)win);
169 ti->ti_urp = 0;
170 ti->ti_sum = 0;
171 ti->ti_sum = cksum(m, tlen);
172 ((struct ip *)ti)->ip_len = tlen;
173
174 if(flags & TH_RST)
175 ((struct ip *)ti)->ip_ttl = MAXTTL;
176 else
177 ((struct ip *)ti)->ip_ttl = ip_defttl;
178
179 (void) ip_output(pData, (struct socket *)0, m);
180}
181
182/*
183 * Create a new TCP control block, making an
184 * empty reassembly queue and hooking it to the argument
185 * protocol control block.
186 */
187struct tcpcb *
188tcp_newtcpcb(PNATState pData, struct socket *so)
189{
190 register struct tcpcb *tp;
191
192 tp = (struct tcpcb *)RTMemAllocZ(sizeof(*tp));
193 if (tp == NULL)
194 return ((struct tcpcb *)0);
195
196 tp->t_maxseg = tcp_mssdflt;
197
198 tp->t_flags = tcp_do_rfc1323 ? (TF_REQ_SCALE|TF_REQ_TSTMP) : 0;
199 tp->t_socket = so;
200
201 /*
202 * Init srtt to TCPTV_SRTTBASE (0), so we can tell that we have no
203 * rtt estimate. Set rttvar so that srtt + 2 * rttvar gives
204 * reasonable initial retransmit time.
205 */
206 tp->t_srtt = TCPTV_SRTTBASE;
207 tp->t_rttvar = tcp_rttdflt * PR_SLOWHZ << 2;
208 tp->t_rttmin = TCPTV_MIN;
209
210 TCPT_RANGESET(tp->t_rxtcur,
211 ((TCPTV_SRTTBASE >> 2) + (TCPTV_SRTTDFLT << 2)) >> 1,
212 TCPTV_MIN, TCPTV_REXMTMAX);
213
214 tp->snd_cwnd = TCP_MAXWIN << TCP_MAX_WINSHIFT;
215 tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT;
216 tp->t_state = TCPS_CLOSED;
217
218 so->so_tcpcb = tp;
219
220 return (tp);
221}
222
223/*
224 * Drop a TCP connection, reporting
225 * the specified error. If connection is synchronized,
226 * then send a RST to peer.
227 */
228struct tcpcb *tcp_drop(PNATState pData, struct tcpcb *tp, int err)
229{
230/* tcp_drop(tp, errno)
231 register struct tcpcb *tp;
232 int errno;
233{
234*/
235 DEBUG_CALL("tcp_drop");
236 DEBUG_ARG("tp = %lx", (long)tp);
237 DEBUG_ARG("errno = %d", errno);
238
239 if (TCPS_HAVERCVDSYN(tp->t_state))
240 {
241 tp->t_state = TCPS_CLOSED;
242 (void) tcp_output(pData, tp);
243 tcpstat.tcps_drops++;
244 }
245 else
246 tcpstat.tcps_conndrops++;
247#if 0
248 if (errno == ETIMEDOUT && tp->t_softerror)
249 errno = tp->t_softerror;
250
251 so->so_error = errno;
252#endif
253 return (tcp_close(pData, tp));
254}
255
256/*
257 * Close a TCP control block:
258 * discard all space held by the tcp
259 * discard internet protocol block
260 * wake up any sleepers
261 */
262struct tcpcb *
263tcp_close(PNATState pData, register struct tcpcb *tp)
264{
265 struct socket *so = tp->t_socket;
266 struct socket *so_next, *so_prev;
267
268 struct tseg_qent *te = NULL;
269 DEBUG_CALL("tcp_close");
270 DEBUG_ARG("tp = %lx", (long )tp);
271 so_next = so_prev = NULL;
272 /*XXX: freeing the reassembly queue */
273 while (!LIST_EMPTY(&tp->t_segq))
274 {
275 te = LIST_FIRST(&tp->t_segq);
276 LIST_REMOVE(te, tqe_q);
277 m_freem(pData, te->tqe_m);
278 RTMemFree(te);
279 tcp_reass_qsize--;
280 }
281 RTMemFree(tp);
282 so->so_tcpcb = 0;
283 soisfdisconnected(so);
284 /* clobber input socket cache if we're closing the cached connection */
285 if (so == tcp_last_so)
286 tcp_last_so = &tcb;
287 closesocket(so->s);
288 sbfree(&so->so_rcv);
289 sbfree(&so->so_snd);
290 sofree(pData, so);
291 SOCKET_UNLOCK(so);
292 tcpstat.tcps_closed++;
293 return ((struct tcpcb *)0);
294}
295
296void
297tcp_drain()
298{
299 /* XXX */
300}
301
302/*
303 * When a source quench is received, close congestion window
304 * to one segment. We will gradually open it again as we proceed.
305 */
306
307#if 0
308
309void
310tcp_quench(i, int errno)
311{
312 struct tcpcb *tp = intotcpcb(inp);
313
314 if (tp)
315 tp->snd_cwnd = tp->t_maxseg;
316}
317
318#endif
319
320/*
321 * TCP protocol interface to socket abstraction.
322 */
323
324/*
325 * User issued close, and wish to trail through shutdown states:
326 * if never received SYN, just forget it. If got a SYN from peer,
327 * but haven't sent FIN, then go to FIN_WAIT_1 state to send peer a FIN.
328 * If already got a FIN from peer, then almost done; go to LAST_ACK
329 * state. In all other cases, have already sent FIN to peer (e.g.
330 * after PRU_SHUTDOWN), and just have to play tedious game waiting
331 * for peer to send FIN or not respond to keep-alives, etc.
332 * We can let the user exit from the close as soon as the FIN is acked.
333 */
334void
335tcp_sockclosed(PNATState pData, struct tcpcb *tp)
336{
337 DEBUG_CALL("tcp_sockclosed");
338 DEBUG_ARG("tp = %lx", (long)tp);
339
340 switch (tp->t_state)
341 {
342 case TCPS_CLOSED:
343 case TCPS_LISTEN:
344 case TCPS_SYN_SENT:
345 tp->t_state = TCPS_CLOSED;
346 tp = tcp_close(pData, tp);
347 break;
348
349 case TCPS_SYN_RECEIVED:
350 case TCPS_ESTABLISHED:
351 tp->t_state = TCPS_FIN_WAIT_1;
352 break;
353
354 case TCPS_CLOSE_WAIT:
355 tp->t_state = TCPS_LAST_ACK;
356 break;
357 }
358/* soisfdisconnecting(tp->t_socket); */
359 if ( tp
360 && tp->t_state >= TCPS_FIN_WAIT_2)
361 soisfdisconnected(tp->t_socket);
362 if (tp)
363 tcp_output(pData, tp);
364}
365
366/*
367 * Connect to a host on the Internet
368 * Called by tcp_input
369 * Only do a connect, the tcp fields will be set in tcp_input
370 * return 0 if there's a result of the connect,
371 * else return -1 means we're still connecting
372 * The return value is almost always -1 since the socket is
373 * nonblocking. Connect returns after the SYN is sent, and does
374 * not wait for ACK+SYN.
375 */
376int tcp_fconnect(PNATState pData, struct socket *so)
377{
378 int ret = 0;
379
380 DEBUG_CALL("tcp_fconnect");
381 DEBUG_ARG("so = %lx", (long )so);
382
383 if ((ret = so->s = socket(AF_INET, SOCK_STREAM, 0)) >= 0)
384 {
385 int opt, s = so->s;
386 struct sockaddr_in addr;
387
388 fd_nonblock(s);
389 opt = 1;
390 setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char *)&opt, sizeof(opt));
391 opt = 1;
392 setsockopt(s, SOL_SOCKET, SO_OOBINLINE, (char *)&opt, sizeof(opt));
393
394 addr.sin_family = AF_INET;
395 if ((so->so_faddr.s_addr & htonl(pData->netmask)) == special_addr.s_addr)
396 {
397 /* It's an alias */
398 switch(ntohl(so->so_faddr.s_addr) & ~pData->netmask)
399 {
400 case CTL_DNS:
401 case CTL_ALIAS:
402 default:
403 addr.sin_addr = loopback_addr;
404 break;
405 }
406 }
407 else
408 addr.sin_addr = so->so_faddr;
409 addr.sin_port = so->so_fport;
410
411 DEBUG_MISC((dfd, " connect()ing, addr.sin_port=%d, "
412 "addr.sin_addr.s_addr=%.16s\n",
413 ntohs(addr.sin_port), inet_ntoa(addr.sin_addr)));
414 /* We don't care what port we get */
415 ret = connect(s,(struct sockaddr *)&addr,sizeof (addr));
416
417 /*
418 * If it's not in progress, it failed, so we just return 0,
419 * without clearing SS_NOFDREF
420 */
421 soisfconnecting(so);
422 }
423
424 return(ret);
425}
426
427/*
428 * Accept the socket and connect to the local-host
429 *
430 * We have a problem. The correct thing to do would be
431 * to first connect to the local-host, and only if the
432 * connection is accepted, then do an accept() here.
433 * But, a) we need to know who's trying to connect
434 * to the socket to be able to SYN the local-host, and
435 * b) we are already connected to the foreign host by
436 * the time it gets to accept(), so... We simply accept
437 * here and SYN the local-host.
438 */
439void
440tcp_connect(PNATState pData, struct socket *inso)
441{
442 struct socket *so;
443 struct sockaddr_in addr;
444 socklen_t addrlen = sizeof(struct sockaddr_in);
445 struct tcpcb *tp;
446 int s, opt;
447 int status;
448 socklen_t optlen;
449 static int cVerbose = 1;
450
451 DEBUG_CALL("tcp_connect");
452 DEBUG_ARG("inso = %lx", (long)inso);
453
454 /*
455 * If it's an SS_ACCEPTONCE socket, no need to socreate()
456 * another socket, just use the accept() socket.
457 */
458 if (inso->so_state & SS_FACCEPTONCE)
459 {
460 /* FACCEPTONCE already have a tcpcb */
461 so = inso;
462 }
463 else
464 {
465 if ((so = socreate()) == NULL)
466 {
467 /* If it failed, get rid of the pending connection */
468 closesocket(accept(inso->s,(struct sockaddr *)&addr,&addrlen));
469 return;
470 }
471 if (tcp_attach(pData, so) < 0)
472 {
473 RTMemFree(so); /* NOT sofree */
474 return;
475 }
476 so->so_laddr = inso->so_laddr;
477 so->so_lport = inso->so_lport;
478 so->so_la = inso->so_la;
479 }
480
481 (void) tcp_mss(pData, sototcpcb(so), 0);
482
483 fd_nonblock(inso->s);
484 if ((s = accept(inso->s,(struct sockaddr *)&addr,&addrlen)) < 0)
485 {
486 tcp_close(pData, sototcpcb(so)); /* This will sofree() as well */
487 return;
488 }
489 fd_nonblock(s);
490 opt = 1;
491 setsockopt(s, SOL_SOCKET, SO_REUSEADDR,(char *)&opt, sizeof(int));
492 opt = 1;
493 setsockopt(s, SOL_SOCKET, SO_OOBINLINE,(char *)&opt, sizeof(int));
494#if 0
495 opt = 1;
496 setsockopt(s, IPPROTO_TCP, TCP_NODELAY,(char *)&opt, sizeof(int));
497#endif
498
499 optlen = sizeof(int);
500 status = getsockopt(s, SOL_SOCKET, SO_RCVBUF, (char *)&opt, &optlen);
501 if (status < 0)
502 {
503 LogRel(("NAT: Error(%d) while getting RCV capacity\n", errno));
504 goto no_sockopt;
505 }
506 if (cVerbose > 0)
507 LogRel(("NAT: old socket rcv size: %dKB\n", opt / 1024));
508 /* @todo (r-vvl) make it configurable (via extra data) */
509 opt = pData->socket_rcv;
510 status = setsockopt(s, SOL_SOCKET, SO_RCVBUF, (char *)&opt, sizeof(int));
511 if (status < 0)
512 {
513 LogRel(("NAT: Error(%d) while setting RCV capacity to (%d)\n", errno, opt));
514 goto no_sockopt;
515 }
516 optlen = sizeof(int);
517 status = getsockopt(s, SOL_SOCKET, SO_SNDBUF, (char *)&opt, &optlen);
518 if (status < 0)
519 {
520 LogRel(("NAT: Error(%d) while getting SND capacity\n", errno));
521 goto no_sockopt;
522 }
523 if (cVerbose > 0)
524 LogRel(("NAT: old socket snd size: %dKB\n", opt / 1024));
525 opt = pData->socket_rcv;
526 status = setsockopt(s, SOL_SOCKET, SO_SNDBUF, (char *)&opt, sizeof(int));
527 if (status < 0)
528 {
529 LogRel(("NAT: Error(%d) while setting SND capacity to (%d)\n", errno, opt));
530 goto no_sockopt;
531 }
532 if (cVerbose > 0)
533 cVerbose--;
534
535 no_sockopt:
536 so->so_fport = addr.sin_port;
537 so->so_faddr = addr.sin_addr;
538 /* Translate connections from localhost to the real hostname */
539 if (so->so_faddr.s_addr == 0 || so->so_faddr.s_addr == loopback_addr.s_addr)
540 so->so_faddr = alias_addr;
541
542 /* Close the accept() socket, set right state */
543 if (inso->so_state & SS_FACCEPTONCE)
544 {
545 closesocket(so->s); /* If we only accept once, close the accept() socket */
546 so->so_state = SS_NOFDREF; /* Don't select it yet, even though we have an FD */
547 /* if it's not FACCEPTONCE, it's already NOFDREF */
548 }
549 so->s = s;
550
551 so->so_iptos = tcp_tos(so);
552 tp = sototcpcb(so);
553
554 tcp_template(tp);
555
556 /* Compute window scaling to request. */
557/* while (tp->request_r_scale < TCP_MAX_WINSHIFT
558 * && (TCP_MAXWIN << tp->request_r_scale) < so->so_rcv.sb_hiwat)
559 * tp->request_r_scale++;
560 */
561
562/* soisconnecting(so); */ /* NOFDREF used instead */
563 tcpstat.tcps_connattempt++;
564
565 tp->t_state = TCPS_SYN_SENT;
566 tp->t_timer[TCPT_KEEP] = TCPTV_KEEP_INIT;
567 tp->iss = tcp_iss;
568 tcp_iss += TCP_ISSINCR/2;
569 tcp_sendseqinit(tp);
570 tcp_output(pData, tp);
571}
572
573/*
574 * Attach a TCPCB to a socket.
575 */
576int
577tcp_attach(PNATState pData, struct socket *so)
578{
579 if ((so->so_tcpcb = tcp_newtcpcb(pData, so)) == NULL)
580 return -1;
581
582 SOCKET_LOCK_CREATE(so);
583 QSOCKET_LOCK(tcb);
584 insque(pData, so, &tcb);
585 NSOCK_INC();
586 QSOCKET_UNLOCK(tcb);
587 return 0;
588}
589
590/*
591 * Set the socket's type of service field
592 */
593static const struct tos_t tcptos[] =
594{
595 {0, 20, IPTOS_THROUGHPUT, 0}, /* ftp data */
596 {21, 21, IPTOS_LOWDELAY, EMU_FTP}, /* ftp control */
597 {0, 23, IPTOS_LOWDELAY, 0}, /* telnet */
598 {0, 80, IPTOS_THROUGHPUT, 0}, /* WWW */
599 {0, 513, IPTOS_LOWDELAY, EMU_RLOGIN|EMU_NOCONNECT}, /* rlogin */
600 {0, 514, IPTOS_LOWDELAY, EMU_RSH|EMU_NOCONNECT}, /* shell */
601 {0, 544, IPTOS_LOWDELAY, EMU_KSH}, /* kshell */
602 {0, 543, IPTOS_LOWDELAY, 0}, /* klogin */
603 {0, 6667, IPTOS_THROUGHPUT, EMU_IRC}, /* IRC */
604 {0, 6668, IPTOS_THROUGHPUT, EMU_IRC}, /* IRC undernet */
605 {0, 7070, IPTOS_LOWDELAY, EMU_REALAUDIO }, /* RealAudio control */
606 {0, 113, IPTOS_LOWDELAY, EMU_IDENT }, /* identd protocol */
607 {0, 0, 0, 0}
608};
609
610/*
611 * Return TOS according to the above table
612 */
613u_int8_t
614tcp_tos(struct socket *so)
615{
616 return 0;
617}
618
619/*
620 * Emulate programs that try and connect to us. This includes ftp (the data
621 * connection is initiated by the server) and IRC (DCC CHAT and DCC SEND)
622 * for now
623 *
624 * NOTE: It's possible to crash SLiRP by sending it unstandard strings to
625 * emulate... if this is a problem, more checks are needed here.
626 *
627 * XXX Assumes the whole command cames in one packet
628 *
629 * XXX Some ftp clients will have their TOS set to LOWDELAY and so Nagel will
630 * kick in. Because of this, we'll get the first letter, followed by the
631 * rest, so we simply scan for ORT instead of PORT... DCC doesn't have this
632 * problem because there's other stuff in the packet before the DCC command.
633 *
634 * Return 1 if the mbuf m is still valid and should be sbappend()ed
635 *
636 * NOTE: if you return 0 you MUST m_free() the mbuf!
637 */
638int
639tcp_emu(PNATState pData, struct socket *so, struct mbuf *m)
640{
641 /*XXX: libalias should care about it */
642 so->so_emu = 0;
643 return 1;
644}
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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