亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? tcp_output.c

?? vxwork源代碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* tcp_output.c - TCP output routines *//* Copyright 1984 - 2002 Wind River Systems, Inc. */#include "copyright_wrs.h"/* * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995 *	The Regents of the University of California.  All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software *    must display the following acknowledgement: *	This product includes software developed by the University of *	California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors *    may be used to endorse or promote products derived from this software *    without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * *	@(#)tcp_output.c	8.4 (Berkeley) 5/24/95 *//*modification history--------------------01g,05jun02,vvv  reworked previous change to fix performance degradation01f,06mar02,vvv  fixed Nagle algorithm to handle large writes correctly		 (SPR #72213)01e,12oct01,rae  merge from truestack ver 01g, base 01d01d,16mar99,spm  recovered orphaned code from tor2_0_x branch (SPR #25770)01c,10dec98,n_s  fixed state machine update for ENOBUFs error. spr 2331601b,22nov96,vin  added cluster support replaced m_gethdr(..) with 		 mHdrClGet(..).01a,03mar96,vin  created from BSD4.4lite2. Integrated with 02n of tcp_output.c*//*DESCRIPTION*/#include "vxWorks.h"#include "net/mbuf.h"#include "net/protosw.h"#include "sys/socket.h"#include "net/socketvar.h"#include "errno.h"#include "net/route.h"#include "netinet/in.h"#include "netinet/in_pcb.h"#include "netinet/in_systm.h"#include "netinet/ip.h"#include "netinet/ip_var.h"#include "netinet/tcp.h"#define	TCPOUTFLAGS#include "netinet/tcp_fsm.h"#include "netinet/tcp_seq.h"#include "netinet/tcp_timer.h"#include "netinet/tcp_var.h"#include "netinet/tcpip.h"#include "net/systm.h"#ifdef	BSDDEBUG#include "netinet/tcp_debug.h"#endif	/* BSDDEBUG */#ifdef WV_INSTRUMENTATION#ifdef INCLUDE_WVNET#include "wvNetLib.h"#endif#endif#ifdef notyetextern struct mbuf *m_copypack();#endif#ifdef VIRTUAL_STACK#include "netinet/vsLib.h"#endif#ifdef WV_INSTRUMENTATION#ifdef INCLUDE_WVNET    /* Set common fields of event identifiers for this module. */LOCAL UCHAR wvNetModuleId = WV_NET_TCPOUT_MODULE; /* Value for tcp_output.c */LOCAL UCHAR wvNetLocalFilter = WV_NET_NONE;     /* Available event filter */LOCAL ULONG wvNetEventId;       /* Event identifier: see wvNetLib.h */#endif    /* INCLUDE_WVNET */#endif#define MAX_TCPOPTLEN	32	/* max # bytes that go in options *//* * Tcp output routine: figure out what should be sent and send it. */inttcp_output(tp)	register struct tcpcb *tp;{	register struct socket *so = tp->t_inpcb->inp_socket;        struct rtentry *rt;	register long len, win;	int off, flags, error;	register struct mbuf *m;	register struct tcpiphdr *ti;	u_char opt[MAX_TCPOPTLEN];	unsigned optlen, hdrlen;	int idle, sendalot, sndBufLen;		BOOL     pktSent = FALSE;   /* TRUE if a packet has been sent to IP */	/*	 * Determine length of data that should be transmitted,	 * and flags that will be used.	 * If there is some data or critical controls (SYN, RST)	 * to send, then transmit; otherwise, investigate further.	 */	idle = (tp->snd_max == tp->snd_una);	if (idle && tp->t_idle >= tp->t_rxtcur)		/*		 * We have been idle for "a while" and no acks are		 * expected to clock out any data we send --		 * slow start to get ack "clock" running again.		 */		tp->snd_cwnd = tp->t_maxseg;	sndBufLen = so->so_snd.sb_cc;  /* number of bytes in socket buffer */again:	sendalot = 0;	off = tp->snd_nxt - tp->snd_una;	win = min(tp->snd_wnd, tp->snd_cwnd);	flags = tcp_outflags[tp->t_state];	/*	 * If in persist timeout with window of 0, send 1 byte.	 * Otherwise, if window is small but nonzero	 * and timer expired, we will send what we can	 * and go to transmit state.	 */	if (tp->t_force) {		if (win == 0) {			/*			 * If we still have some data to send, then			 * clear the FIN bit.  Usually this would			 * happen below when it realizes that we			 * aren't sending all the data.  However,			 * if we have exactly 1 byte of unset data,			 * then it won't clear the FIN bit below,			 * and if we are in persist state, we wind			 * up sending the packet without recording			 * that we sent the FIN bit.			 *			 * We can't just blindly clear the FIN bit,			 * because if we don't have any more data			 * to send then the probe will be the FIN			 * itself.			 */			if (off < so->so_snd.sb_cc)				flags &= ~TH_FIN;			win = 1;		} else {			tp->t_timer[TCPT_PERSIST] = 0;			tp->t_rxtshift = 0;		}	}	len = min(so->so_snd.sb_cc, win) - off;	if (len < 0) {		/*		 * If FIN has been sent but not acked,		 * but we haven't been called to retransmit,		 * len will be -1.  Otherwise, window shrank		 * after we sent into it.  If window shrank to 0,		 * cancel pending retransmit and pull snd_nxt		 * back to (closed) window.  We will enter persist		 * state below.  If the window didn't close completely,		 * just wait for an ACK.		 */		len = 0;		if (win == 0) {			tp->t_timer[TCPT_REXMT] = 0;			tp->snd_nxt = tp->snd_una;		}	}	if (len > tp->t_maxseg) {		len = tp->t_maxseg;		sendalot = 1;	}	if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + so->so_snd.sb_cc))		flags &= ~TH_FIN;	win = sbspace(&so->so_rcv);	/*	 * Sender silly window avoidance.  If connection is idle	 * and can send all data, a maximum segment,	 * at least a maximum default-size segment do it,	 * or are forced, do it; otherwise don't bother.	 * If peer's buffer is tiny, then send	 * when window is at least half open.	 * If retransmitting (possibly after persist timer forced us	 * to send into a small window), then must resend.	 */	if (len) {		if (len == tp->t_maxseg)			goto send;		/*		 * Modification to Nagle check - TF_EOB indicates if there		 * is data in the output buffer which is the last part		 * of a large write. Such data should be sent out 		 * immediately even if it results in a small segment.		 * (SPR #72213).		 */		if ((idle || tp->t_flags & TF_NODELAY ||		     (tp->t_flags & TF_EOB)) &&		    len + off >= so->so_snd.sb_cc)		        goto send;		if (tp->t_force)			goto send;		if (len >= tp->max_sndwnd / 2)			goto send;		if (SEQ_LT(tp->snd_nxt, tp->snd_max))			goto send;	}	/*	 * Compare available window to amount of window	 * known to peer (as advertised window less	 * next expected input).  If the difference is at least two	 * max size segments, or at least 50% of the maximum possible	 * window, then want to send a window update to peer.	 */	if (win > 0) {		/* 		 * "adv" is the amount we can increase the window,		 * taking into account that we are limited by		 * TCP_MAXWIN << tp->rcv_scale.		 */		long adv = min(win, (long)TCP_MAXWIN << tp->rcv_scale) -			(tp->rcv_adv - tp->rcv_nxt);		if (adv >= (long) (2 * tp->t_maxseg))			goto send;		if (2 * adv >= (long) so->so_rcv.sb_hiwat)			goto send;	}	/*	 * Send if we owe peer an ACK.	 */	if (tp->t_flags & TF_ACKNOW)		goto send;	if (flags & (TH_SYN|TH_RST))		goto send;	if (SEQ_GT(tp->snd_up, tp->snd_una))		goto send;	/*	 * If our state indicates that FIN should be sent	 * and we have not yet done so, or we're retransmitting the FIN,	 * then we need to send.	 */	if (flags & TH_FIN &&	    ((tp->t_flags & TF_SENTFIN) == 0 || tp->snd_nxt == tp->snd_una))		goto send;	/*	 * TCP window updates are not reliable, rather a polling protocol	 * using ``persist'' packets is used to insure receipt of window	 * updates.  The three ``states'' for the output side are:	 *	idle			not doing retransmits or persists	 *	persisting		to move a small or zero window	 *	(re)transmitting	and thereby not persisting	 *	 * tp->t_timer[TCPT_PERSIST]	 *	is set when we are in persist state.	 * tp->t_force	 *	is set when we are called to send a persist packet.	 * tp->t_timer[TCPT_REXMT]	 *	is set when we are retransmitting	 * The output side is idle when both timers are zero.	 *	 * If send window is too small, there is data to transmit, and no	 * retransmit or persist is pending, then go to persist state.	 * If nothing happens soon, send when timer expires:	 * if window is nonzero, transmit what we can,	 * otherwise force out a byte.	 */	if (so->so_snd.sb_cc && tp->t_timer[TCPT_REXMT] == 0 &&	    tp->t_timer[TCPT_PERSIST] == 0) {		tp->t_rxtshift = 0;		tcp_setpersist(tp);	}	/*	 * No reason to send a segment, just return.	 */	return (0);send:	/*	 * Before ESTABLISHED, force sending of initial options	 * unless TCP set not to do any options.	 * NOTE: we assume that the IP/TCP header plus TCP options	 * always fit in a single mbuf, leaving room for a maximum	 * link header, i.e.	 *	max_linkhdr + sizeof (struct tcpiphdr) + optlen <= MHLEN	 */	optlen = 0;	hdrlen = sizeof (struct tcpiphdr);	if (flags & TH_SYN) {		tp->snd_nxt = tp->iss;		if ((tp->t_flags & TF_NOOPT) == 0) {			u_short mss;			opt[0] = TCPOPT_MAXSEG;			opt[1] = 4;			mss = htons((u_short) tcp_mss(tp, 0));			bcopy((caddr_t)&mss, (caddr_t)(opt + 2), sizeof(mss));			optlen = 4;	 			if ((tp->t_flags & TF_REQ_SCALE) &&			    ((flags & TH_ACK) == 0 ||			    (tp->t_flags & TF_RCVD_SCALE))) {				*((u_long *) (opt + optlen)) = htonl(					TCPOPT_NOP << 24 |					TCPOPT_WINDOW << 16 |					TCPOLEN_WINDOW << 8 |					tp->request_r_scale);				optlen += 4;			}		} 	}  	/*	 * Send a timestamp and echo-reply if this is a SYN and our side 	 * wants to use timestamps (TF_REQ_TSTMP is set) or both our side	 * and our peer have sent timestamps in our SYN's. 	 */ 	if ((tp->t_flags & (TF_REQ_TSTMP|TF_NOOPT)) == TF_REQ_TSTMP && 	     (flags & TH_RST) == 0 && 	    ((flags & (TH_SYN|TH_ACK)) == TH_SYN ||	     (tp->t_flags & TF_RCVD_TSTMP))) {		u_long *lp = (u_long *)(opt + optlen);  		/* Form timestamp option as shown in appendix A of RFC 1323. */ 		*lp++ = htonl(TCPOPT_TSTAMP_HDR); 		*lp++ = htonl(tcp_now); 		*lp   = htonl(tp->ts_recent); 		optlen += TCPOLEN_TSTAMP_APPA; 	} 	hdrlen += optlen; 	/*	 * Adjust data length if insertion of options will	 * bump the packet length beyond the t_maxseg length.	 */	if (len > tp->t_maxseg - optlen) {		len = tp->t_maxseg - optlen;		sendalot = 1;		flags &= ~TH_FIN;	 }#ifdef DIAGNOSTIC 	if (max_linkhdr + hdrlen > CL_SIZE_128)            {#ifdef WV_INSTRUMENTATION#ifdef INCLUDE_WVNET    /* WV_NET_EMERGENCY event */        WV_NET_PORTOUT_EVENT_1 (NET_CORE_EVENT, WV_NET_EMERGENCY, 28, 1,                                tp->t_inpcb->inp_lport, tp->t_inpcb->inp_fport,                                 WV_NETEVENT_TCPOUT_HDRPANIC, WV_NET_SEND,                                so->so_fd)#endif  /* INCLUDE_WVNET */#endif            panic("tcphdr too big");            }#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线精品观看国产| 久久精品欧美一区二区三区不卡| 日韩三级高清在线| 1024亚洲合集| 国产尤物一区二区| 欧美性猛交xxxx黑人交| 久久精品一区二区三区av| 亚洲激情六月丁香| 岛国精品一区二区| 欧美一区二区三区爱爱| 中文字幕亚洲综合久久菠萝蜜| 奇米在线7777在线精品 | 欧美午夜电影一区| 中文一区二区完整视频在线观看| 美国毛片一区二区三区| 色综合咪咪久久| 国产亚洲综合在线| 免费成人在线观看视频| 91极品视觉盛宴| 中文字幕色av一区二区三区| 国产一区二区精品久久| 日韩欧美在线综合网| 三级在线观看一区二区| 欧美在线观看你懂的| 亚洲人成在线播放网站岛国| 成人免费va视频| 精品处破学生在线二十三| 琪琪久久久久日韩精品| 日韩一区二区三区电影在线观看| 亚洲国产人成综合网站| 91日韩在线专区| 亚洲欧美激情插| 一本色道久久综合精品竹菊| 国产精品久久久久天堂| 成人性生交大片免费看中文| 国产精品入口麻豆九色| 成人久久久精品乱码一区二区三区| 久久亚洲春色中文字幕久久久| 精品一区二区免费看| 精品国产一二三| 国产精品一区二区三区四区| 国产午夜精品一区二区| 国产高清久久久久| 国产午夜亚洲精品羞羞网站| 不卡视频在线看| 依依成人综合视频| 欧美三级韩国三级日本三斤| 图片区小说区国产精品视频 | 成人高清在线视频| 亚洲欧美一区二区在线观看| 91国偷自产一区二区使用方法| 亚洲制服丝袜av| 欧美一区二区私人影院日本| 国产寡妇亲子伦一区二区| 国产欧美日韩久久| 色综合中文综合网| 丝袜美腿亚洲一区| 欧美哺乳videos| 国产精品一区二区在线观看不卡| 欧美高清在线精品一区| 色94色欧美sute亚洲线路一久 | 成人激情电影免费在线观看| 一区二区三区精品在线| 欧美一卡二卡三卡| 国产成人小视频| 亚洲一区二区三区四区在线观看| 69久久99精品久久久久婷婷| 国产伦精品一区二区三区视频青涩| 国产精品传媒入口麻豆| 欧美日韩久久久| 大白屁股一区二区视频| 亚洲专区一二三| 国产日韩精品一区二区三区| 欧美午夜精品一区| 国产九九视频一区二区三区| 亚洲综合激情小说| 久久久综合九色合综国产精品| 色婷婷av一区二区三区大白胸| 久久99最新地址| 亚洲综合成人在线| 欧美精品一区二区精品网| 色婷婷精品久久二区二区蜜臀av| 久久99精品久久久久久国产越南 | 91精品国产福利| 菠萝蜜视频在线观看一区| 午夜私人影院久久久久| 久久精品一区二区三区四区| 91精品国产综合久久久久久漫画| 成人自拍视频在线观看| 日韩av电影免费观看高清完整版| 一区精品在线播放| 精品国产一二三| 欧美日本不卡视频| 风流少妇一区二区| 九九热在线视频观看这里只有精品| 一二三四社区欧美黄| 国产亚洲污的网站| 日韩精品一区二区三区在线| 欧美精品久久久久久久多人混战 | 国产精品毛片无遮挡高清| 91精品国产综合久久久久久漫画| 色婷婷精品久久二区二区蜜臂av | 粉嫩绯色av一区二区在线观看| 免费观看在线色综合| 一区二区三区在线视频观看58 | 国产夜色精品一区二区av| 欧美v日韩v国产v| 欧美精品色一区二区三区| 91黄色小视频| 日本高清无吗v一区| 一本到不卡精品视频在线观看| 成人白浆超碰人人人人| 国产剧情一区二区| 国内久久精品视频| 久久国产精品一区二区| 另类人妖一区二区av| 三级不卡在线观看| 日本vs亚洲vs韩国一区三区| 日韩成人免费电影| 日韩精品一卡二卡三卡四卡无卡| 丝袜亚洲另类丝袜在线| 午夜久久久久久| 日本亚洲天堂网| 毛片av中文字幕一区二区| 日韩和欧美的一区| 美女一区二区久久| 精品一区二区在线视频| 国产一区二区三区久久久| 国产麻豆视频精品| 国产91精品精华液一区二区三区 | 日韩亚洲欧美在线| 日韩欧美国产一区二区三区 | 国产成人综合在线观看| 五月开心婷婷久久| 久久99热国产| 精品国产乱码久久久久久闺蜜 | 激情小说亚洲一区| 精品国产在天天线2019| 国产黄色精品视频| 欧美日韩一区二区三区四区 | 国产成人综合视频| 日本不卡123| 一本大道久久精品懂色aⅴ| 一区二区三区久久| 精品久久久久久亚洲综合网| 在线免费观看一区| 亚洲在线免费播放| 欧美精品tushy高清| 国产麻豆视频一区二区| 91福利精品视频| 亚洲国产精品久久久久秋霞影院 | 99精品视频在线观看免费| 在线观看成人免费视频| 亚洲人123区| 丁香婷婷综合网| 2欧美一区二区三区在线观看视频| 亚洲精品视频在线看| 狠狠色综合播放一区二区| 欧美色视频在线观看| 日本一区二区三区久久久久久久久不 | 欧美一区二区私人影院日本| 日韩精品一二区| 国产拍揄自揄精品视频麻豆| 国产一区二区三区久久悠悠色av| 久久女同性恋中文字幕| 久久精品噜噜噜成人av农村| 在线播放视频一区| 婷婷综合另类小说色区| 欧美一区二区在线播放| 美女国产一区二区三区| www一区二区| 99精品国产热久久91蜜凸| 亚洲欧美日韩成人高清在线一区| 91麻豆国产精品久久| 亚洲美女视频在线观看| 色哟哟精品一区| 免费在线一区观看| 久久精品男人的天堂| 国产不卡视频在线观看| 中文字幕亚洲在| 777奇米四色成人影色区| 久久99精品久久久久久| 久久久精品人体av艺术| 波多野结衣在线aⅴ中文字幕不卡 波多野结衣在线一区 | 中文字幕一区在线| 欧美在线三级电影| 国产中文字幕精品| 亚洲电影激情视频网站| 日韩小视频在线观看专区| 99re成人精品视频| 久久9热精品视频| 亚洲成人久久影院| 亚洲欧美中日韩| 日本一区二区三区高清不卡| 欧洲人成人精品| 97久久超碰国产精品| 国精产品一区一区三区mba桃花| 尤物av一区二区| 亚洲人成人一区二区在线观看 | 国产日本欧美一区二区|