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

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

?? lcp.c

?? lwip在ucos上的移植
?? C
?? 第 1 頁 / 共 4 頁
字號:
/****************************************************************************** lcp.c - Network Link Control Protocol program file.** Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc.* portions Copyright (c) 1997 by Global Election Systems Inc.** The authors hereby grant permission to use, copy, modify, distribute,* and license this software and its documentation for any purpose, provided* that existing copyright notices are retained in all copies and that this* notice and the following disclaimer are included verbatim in any * distributions. No written agreement, license, or royalty fee is required* for any of the authorized uses.** THIS SOFTWARE IS PROVIDED BY THE 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 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.******************************************************************************** REVISION HISTORY** 03-01-01 Marc Boucher <marc@mbsi.ca>*   Ported to lwIP.* 97-12-01 Guy Lancaster <lancasterg@acm.org>, Global Election Systems Inc.*	Original.*****************************************************************************//* * lcp.c - PPP Link Control Protocol. * * Copyright (c) 1989 Carnegie Mellon University. * All rights reserved. * * Redistribution and use in source and binary forms are permitted * provided that the above copyright notice and this paragraph are * duplicated in all such forms and that any documentation, * advertising materials, and other materials related to such * distribution and use acknowledge that the software was developed * by Carnegie Mellon University.  The name of the * University may not be used to endorse or promote products derived * from this software without specific prior written permission. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */#include "ppp.h"#if PPP_SUPPORT > 0#include "fsm.h"#include "chap.h"#include "magic.h"#include "auth.h"#include "lcp.h"#include "pppdebug.h"/*************************//*** LOCAL DEFINITIONS ***//*************************//* * Length of each type of configuration option (in octets) */#define CILEN_VOID	2#define CILEN_CHAR	3#define CILEN_SHORT	4	/* CILEN_VOID + sizeof(short) */#define CILEN_CHAP	5	/* CILEN_VOID + sizeof(short) + 1 */#define CILEN_LONG	6	/* CILEN_VOID + sizeof(long) */#define CILEN_LQR	8	/* CILEN_VOID + sizeof(short) + sizeof(long) */#define CILEN_CBCP	3/***********************************//*** LOCAL FUNCTION DECLARATIONS ***//***********************************//* * Callbacks for fsm code.  (CI = Configuration Information) */static void lcp_resetci (fsm*);	        /* Reset our CI */static int  lcp_cilen (fsm*);		        /* Return length of our CI */static void lcp_addci (fsm*, u_char*, int*);       /* Add our CI to pkt */static int  lcp_ackci (fsm*, u_char*, int);/* Peer ack'd our CI */static int  lcp_nakci (fsm*, u_char*, int);/* Peer nak'd our CI */static int  lcp_rejci (fsm*, u_char*, int);/* Peer rej'd our CI */static int  lcp_reqci (fsm*, u_char*, int*, int);  /* Rcv peer CI */static void lcp_up (fsm*);		            /* We're UP */static void lcp_down (fsm*);	    	    /* We're DOWN */static void lcp_starting (fsm*);   	    /* We need lower layer up */static void lcp_finished (fsm*);	        /* We need lower layer down */static int  lcp_extcode (fsm*, int, u_char, u_char*, int);static void lcp_rprotrej (fsm*, u_char*, int);/* * routines to send LCP echos to peer */static void lcp_echo_lowerup (int);static void lcp_echo_lowerdown (int);static void LcpEchoTimeout (void*);static void lcp_received_echo_reply (fsm*, int, u_char*, int);static void LcpSendEchoRequest (fsm*);static void LcpLinkFailure (fsm*);static void LcpEchoCheck (fsm*);/* * Protocol entry points. * Some of these are called directly. */static void lcp_input (int, u_char *, int);static void lcp_protrej (int);#define CODENAME(x)	((x) == CONFACK ? "ACK" : \			 (x) == CONFNAK ? "NAK" : "REJ")/******************************//*** PUBLIC DATA STRUCTURES ***//******************************//* global vars */LinkPhase lcp_phase[NUM_PPP];			/* Phase of link session (RFC 1661) */lcp_options lcp_wantoptions[NUM_PPP];	/* Options that we want to request */lcp_options lcp_gotoptions[NUM_PPP];	/* Options that peer ack'd */lcp_options lcp_allowoptions[NUM_PPP];	/* Options we allow peer to request */lcp_options lcp_hisoptions[NUM_PPP];	/* Options that we ack'd */ext_accm xmit_accm[NUM_PPP];			/* extended transmit ACCM *//*****************************//*** LOCAL DATA STRUCTURES ***//*****************************/static fsm lcp_fsm[NUM_PPP];			/* LCP fsm structure (global)*/static u_int	 lcp_echo_interval = LCP_ECHOINTERVAL; /* Interval between LCP echo-requests */static u_int	 lcp_echo_fails = LCP_MAXECHOFAILS; /* Tolerance to unanswered echo-requests */static u32_t lcp_echos_pending = 0;	/* Number of outstanding echo msgs */static u32_t lcp_echo_number   = 0;	/* ID number of next echo frame */static u32_t lcp_echo_timer_running = 0;  /* TRUE if a timer is running */static u_char nak_buffer[PPP_MRU];	/* where we construct a nak packet */static fsm_callbacks lcp_callbacks = {	/* LCP callback routines */    lcp_resetci,		/* Reset our Configuration Information */    lcp_cilen,			/* Length of our Configuration Information */    lcp_addci,			/* Add our Configuration Information */    lcp_ackci,			/* ACK our Configuration Information */    lcp_nakci,			/* NAK our Configuration Information */    lcp_rejci,			/* Reject our Configuration Information */    lcp_reqci,			/* Request peer's Configuration Information */    lcp_up,				/* Called when fsm reaches OPENED state */    lcp_down,			/* Called when fsm leaves OPENED state */    lcp_starting,		/* Called when we want the lower layer up */    lcp_finished,		/* Called when we want the lower layer down */    NULL,				/* Called when Protocol-Reject received */    NULL,				/* Retransmission is necessary */    lcp_extcode,		/* Called to handle LCP-specific codes */    "LCP"				/* String name of protocol */};struct protent lcp_protent = {    PPP_LCP,    lcp_init,    lcp_input,    lcp_protrej,    lcp_lowerup,    lcp_lowerdown,    lcp_open,    lcp_close,#if 0    lcp_printpkt,    NULL,#endif    1,    "LCP",#if 0    NULL,    NULL,    NULL#endif};int lcp_loopbackfail = DEFLOOPBACKFAIL;/***********************************//*** PUBLIC FUNCTION DEFINITIONS ***//***********************************//* * lcp_init - Initialize LCP. */void lcp_init(int unit){	fsm *f = &lcp_fsm[unit];	lcp_options *wo = &lcp_wantoptions[unit];	lcp_options *ao = &lcp_allowoptions[unit];		f->unit = unit;	f->protocol = PPP_LCP;	f->callbacks = &lcp_callbacks;		fsm_init(f);		wo->passive = 0;	wo->silent = 0;	wo->restart = 0;			/* Set to 1 in kernels or multi-line								 * implementations */	wo->neg_mru = 1;	wo->mru = PPP_DEFMRU;	wo->neg_asyncmap = 1;	wo->asyncmap = 0x00000000l;	/* Assume don't need to escape any ctl chars. */	wo->neg_chap = 0;			/* Set to 1 on server */	wo->neg_upap = 0;			/* Set to 1 on server */	wo->chap_mdtype = CHAP_DIGEST_MD5;	wo->neg_magicnumber = 1;	wo->neg_pcompression = 1;	wo->neg_accompression = 1;	wo->neg_lqr = 0;			/* no LQR implementation yet */	wo->neg_cbcp = 0;		ao->neg_mru = 1;	ao->mru = PPP_MAXMRU;	ao->neg_asyncmap = 1;	ao->asyncmap = 0x00000000l;	/* Assume don't need to escape any ctl chars. */	ao->neg_chap = (CHAP_SUPPORT != 0);	ao->chap_mdtype = CHAP_DIGEST_MD5;	ao->neg_upap = (PAP_SUPPORT != 0);	ao->neg_magicnumber = 1;	ao->neg_pcompression = 1;	ao->neg_accompression = 1;	ao->neg_lqr = 0;			/* no LQR implementation yet */	ao->neg_cbcp = (CBCP_SUPPORT != 0);	/* 	 * Set transmit escape for the flag and escape characters plus anything	 * set for the allowable options.	 */	memset(xmit_accm[unit], 0, sizeof(xmit_accm[0]));	xmit_accm[unit][15] = 0x60;	xmit_accm[unit][0] = (u_char)(ao->asyncmap & 0xFF);	xmit_accm[unit][1] = (u_char)((ao->asyncmap >> 8) & 0xFF);	xmit_accm[unit][2] = (u_char)((ao->asyncmap >> 16) & 0xFF);	xmit_accm[unit][3] = (u_char)((ao->asyncmap >> 24) & 0xFF);	LCPDEBUG((LOG_INFO, "lcp_init: xmit_accm=%X %X %X %X\n",				xmit_accm[unit][0],				xmit_accm[unit][1],				xmit_accm[unit][2],				xmit_accm[unit][3]));		lcp_phase[unit] = PHASE_INITIALIZE;}/* * lcp_open - LCP is allowed to come up. */void lcp_open(int unit){	fsm *f = &lcp_fsm[unit];	lcp_options *wo = &lcp_wantoptions[unit];		f->flags = 0;	if (wo->passive)		f->flags |= OPT_PASSIVE;	if (wo->silent)		f->flags |= OPT_SILENT;	fsm_open(f);		lcp_phase[unit] = PHASE_ESTABLISH; }/* * lcp_close - Take LCP down. */void lcp_close(int unit, char *reason){	fsm *f = &lcp_fsm[unit];		if (lcp_phase[unit] != PHASE_DEAD)		lcp_phase[unit] = PHASE_TERMINATE;	if (f->state == STOPPED && f->flags & (OPT_PASSIVE|OPT_SILENT)) {		/*		 * This action is not strictly according to the FSM in RFC1548,		 * but it does mean that the program terminates if you do an		 * lcp_close() in passive/silent mode when a connection hasn't		 * been established.		 */		f->state = CLOSED;		lcp_finished(f);	}	else		fsm_close(&lcp_fsm[unit], reason);}/* * lcp_lowerup - The lower layer is up. */void lcp_lowerup(int unit){	lcp_options *wo = &lcp_wantoptions[unit];		/*	* Don't use A/C or protocol compression on transmission,	* but accept A/C and protocol compressed packets	* if we are going to ask for A/C and protocol compression.	*/	ppp_set_xaccm(unit, &xmit_accm[unit]);	ppp_send_config(unit, PPP_MRU, 0xffffffffl, 0, 0);	ppp_recv_config(unit, PPP_MRU, 0x00000000l,					wo->neg_pcompression, wo->neg_accompression);	peer_mru[unit] = PPP_MRU;	lcp_allowoptions[unit].asyncmap 		= (u_long)xmit_accm[unit][0]			| ((u_long)xmit_accm[unit][1] << 8)			| ((u_long)xmit_accm[unit][2] << 16)			| ((u_long)xmit_accm[unit][3] << 24);	LCPDEBUG((LOG_INFO, "lcp_lowerup: asyncmap=%X %X %X %X\n",				xmit_accm[unit][3],				xmit_accm[unit][2],				xmit_accm[unit][1],				xmit_accm[unit][0]));		fsm_lowerup(&lcp_fsm[unit]);}/* * lcp_lowerdown - The lower layer is down. */void lcp_lowerdown(int unit){	fsm_lowerdown(&lcp_fsm[unit]);}/* * lcp_sprotrej - Send a Protocol-Reject for some protocol. */void lcp_sprotrej(int unit, u_char *p, int len){	/*	* Send back the protocol and the information field of the	* rejected packet.  We only get here if LCP is in the OPENED state.	*/	fsm_sdata(&lcp_fsm[unit], PROTREJ, ++lcp_fsm[unit].id,				p, len);}/**********************************//*** LOCAL FUNCTION DEFINITIONS ***//**********************************//* * lcp_input - Input LCP packet. */static void lcp_input(int unit, u_char *p, int len){	fsm *f = &lcp_fsm[unit];		fsm_input(f, p, len);}/* * lcp_extcode - Handle a LCP-specific code. */static int lcp_extcode(fsm *f, int code, u_char id, u_char *inp, int len){	u_char *magp;		switch( code ){	case PROTREJ:		lcp_rprotrej(f, inp, len);		break;		case ECHOREQ:		if (f->state != OPENED)			break;		LCPDEBUG((LOG_INFO, "lcp: Echo-Request, Rcvd id %d\n", id));		magp = inp;		PUTLONG(lcp_gotoptions[f->unit].magicnumber, magp);		fsm_sdata(f, ECHOREP, id, inp, len);		break;		case ECHOREP:		lcp_received_echo_reply(f, id, inp, len);		break;		case DISCREQ:		break;		default:		return 0;	}	return 1;}    /* * lcp_rprotrej - Receive an Protocol-Reject. * * Figure out which protocol is rejected and inform it. */static void lcp_rprotrej(fsm *f, u_char *inp, int len){	int i;	struct protent *protp;	u_short prot;		if (len < sizeof (u_short)) {		LCPDEBUG((LOG_INFO,				"lcp_rprotrej: Rcvd short Protocol-Reject packet!\n"));		return;	}		GETSHORT(prot, inp);		LCPDEBUG((LOG_INFO,			"lcp_rprotrej: Rcvd Protocol-Reject packet for %x!\n",			prot));		/*	* Protocol-Reject packets received in any state other than the LCP	* OPENED state SHOULD be silently discarded.	*/	if( f->state != OPENED ){		LCPDEBUG((LOG_INFO, "Protocol-Reject discarded: LCP in state %d\n",				f->state));		return;	}		/*	* Upcall the proper Protocol-Reject routine.	*/	for (i = 0; (protp = ppp_protocols[i]) != NULL; ++i)		if (protp->protocol == prot && protp->enabled_flag) {			(*protp->protrej)(f->unit);			return;		}		LCPDEBUG((LOG_WARNING, "Protocol-Reject for unsupported protocol 0x%x\n",			prot));}/* * lcp_protrej - A Protocol-Reject was received. */static void lcp_protrej(int unit){	(void)unit;	/*	* Can't reject LCP!	*/	LCPDEBUG((LOG_WARNING,			"lcp_protrej: Received Protocol-Reject for LCP!\n"));	fsm_protreject(&lcp_fsm[unit]);}/* * lcp_resetci - Reset our CI. */static void lcp_resetci(fsm *f){	lcp_wantoptions[f->unit].magicnumber = magic();	lcp_wantoptions[f->unit].numloops = 0;	lcp_gotoptions[f->unit] = lcp_wantoptions[f->unit];	peer_mru[f->unit] = PPP_MRU;	auth_reset(f->unit);}/* * lcp_cilen - Return length of our CI. */static int lcp_cilen(fsm *f){	lcp_options *go = &lcp_gotoptions[f->unit];#define LENCIVOID(neg)	((neg) ? CILEN_VOID : 0)#define LENCICHAP(neg)	((neg) ? CILEN_CHAP : 0)#define LENCISHORT(neg)	((neg) ? CILEN_SHORT : 0)#define LENCILONG(neg)	((neg) ? CILEN_LONG : 0)#define LENCILQR(neg)	((neg) ? CILEN_LQR: 0)#define LENCICBCP(neg)	((neg) ? CILEN_CBCP: 0)	/*	* NB: we only ask for one of CHAP and UPAP, even if we will	* accept either.	*/	return (LENCISHORT(go->neg_mru && go->mru != PPP_DEFMRU) +		LENCILONG(go->neg_asyncmap && go->asyncmap != 0xFFFFFFFFl) +

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本福利一区二区| 国产成人综合亚洲网站| 亚洲精品高清在线| 亚洲欧美成人一区二区三区| 国产精品色呦呦| 欧美国产97人人爽人人喊| 欧美经典一区二区三区| 中文字幕av不卡| 中文字幕亚洲欧美在线不卡| 亚洲天堂久久久久久久| 亚洲精品久久7777| 五月天一区二区| 精品一区二区久久久| 国精产品一区一区三区mba桃花 | 久久久久久久精| 久久一区二区三区四区| 国产欧美视频在线观看| 亚洲精品日韩一| 亚洲第一精品在线| 久草这里只有精品视频| 国产v综合v亚洲欧| 91久久精品网| 欧美成人vr18sexvr| 久久欧美一区二区| 亚洲一区中文日韩| 美女视频免费一区| 99re在线视频这里只有精品| 欧美日韩免费视频| 久久久天堂av| 日韩不卡一二三区| 成人深夜视频在线观看| 色综合久久久久久久久| 精品少妇一区二区三区日产乱码| 欧美极品aⅴ影院| 午夜亚洲国产au精品一区二区| 极品少妇xxxx精品少妇| 色婷婷激情一区二区三区| 日韩欧美www| 亚洲女人的天堂| 国产激情91久久精品导航| 欧美日韩一区二区三区四区五区| 欧美精品一区二区三区四区| 亚洲最新在线观看| 国产成a人亚洲精品| 在线观看91av| 亚洲欧美另类小说| 国产露脸91国语对白| 欧美浪妇xxxx高跟鞋交| 国产精品天天看| 精品一区二区三区在线播放视频| 色综合天天视频在线观看| 久久久精品国产免费观看同学| 午夜激情久久久| 日本精品视频一区二区三区| 久久人人爽人人爽| 婷婷开心久久网| 91九色最新地址| 亚洲欧美在线视频| 国产成人精品免费| 久久婷婷国产综合精品青草| 视频一区国产视频| 欧美日韩国产色站一区二区三区| **性色生活片久久毛片| 成人在线综合网站| 久久久噜噜噜久久中文字幕色伊伊| 亚洲成人动漫在线免费观看| 91美女精品福利| 亚洲欧美日韩国产中文在线| 波波电影院一区二区三区| 国产婷婷一区二区| 国产成人精品免费一区二区| 久久久久免费观看| 国产电影一区在线| 国产精品久久午夜| av激情成人网| 亚洲乱码日产精品bd| 色综合欧美在线视频区| 亚洲五码中文字幕| 欧美老肥妇做.爰bbww| 男女激情视频一区| 精品国产一区二区亚洲人成毛片| 麻豆精品新av中文字幕| 精品久久久久久综合日本欧美 | 色哟哟一区二区三区| 亚洲免费三区一区二区| 欧美日韩精品一区二区三区 | 播五月开心婷婷综合| 中文字幕av一区二区三区高| 99久久婷婷国产综合精品| 最新不卡av在线| 欧美视频在线不卡| 美美哒免费高清在线观看视频一区二区| 欧美一级一区二区| 国产在线日韩欧美| 一区在线中文字幕| 欧美午夜精品久久久久久超碰| 午夜电影网一区| 精品久久99ma| 97精品视频在线观看自产线路二| 悠悠色在线精品| 日韩一区二区电影| 国产精品亚洲成人| 亚洲已满18点击进入久久| 欧美一区二区三区思思人| 国产精品一区二区久久精品爱涩 | 538在线一区二区精品国产| 蜜臀av一区二区在线观看| 国产亚洲成年网址在线观看| 色综合色综合色综合色综合色综合 | 色综合激情久久| 日韩和的一区二区| 久久精品一区四区| 欧美性感一类影片在线播放| 婷婷开心久久网| 国产精品欧美久久久久一区二区 | 欧美日产国产精品| 国产成人免费视频| 视频一区二区不卡| 国产清纯美女被跳蛋高潮一区二区久久w | 久色婷婷小香蕉久久| 国产女主播在线一区二区| 欧美日韩精品一区二区在线播放| 国产乱人伦偷精品视频免下载| 一个色妞综合视频在线观看| 久久综合999| 欧美日韩在线精品一区二区三区激情| 国产精品99久久不卡二区| 亚洲国产成人av网| 亚洲欧美日韩一区二区三区在线观看| 日韩欧美精品在线视频| 欧美色图免费看| 色综合天天综合网国产成人综合天| 捆绑紧缚一区二区三区视频| 一区二区三区欧美激情| 中日韩av电影| 久久精品亚洲麻豆av一区二区| 欧美理论在线播放| 欧美午夜精品理论片a级按摩| 色呦呦国产精品| 色婷婷综合在线| 99国产精品久| 不卡的av电影在线观看| 国产美女精品在线| 国产尤物一区二区在线| 日本成人中文字幕| 一区二区三区电影在线播| 中文字幕在线观看不卡视频| 337p日本欧洲亚洲大胆精品| 日韩欧美国产高清| 欧美不卡一区二区三区四区| 在线综合视频播放| 日韩一级片网站| 91麻豆精品久久久久蜜臀| 69久久夜色精品国产69蝌蚪网| 欧美日韩aaa| 91麻豆精品国产91久久久使用方法| 色88888久久久久久影院野外| 99精品久久免费看蜜臀剧情介绍 | 亚洲欧美另类久久久精品| 亚洲欧洲精品天堂一级| 亚洲视频中文字幕| 亚洲一区二区三区爽爽爽爽爽| 午夜久久久影院| 麻豆国产91在线播放| 国产精品亚洲一区二区三区妖精| 国产一区二区伦理| av影院午夜一区| 欧美日韩一二三| 日韩一区二区三区在线| 久久久夜色精品亚洲| 中文字幕精品三区| 亚洲 欧美综合在线网络| 青娱乐精品视频| 国产精品888| 在线欧美日韩精品| 在线播放国产精品二区一二区四区 | 日本高清成人免费播放| 一本高清dvd不卡在线观看| 欧美日韩国产小视频在线观看| 欧美成人一区二区三区片免费 | 国产成人免费在线视频| 成人av电影在线网| 欧美一区二区三区婷婷月色| 国产午夜久久久久| 依依成人综合视频| 激情亚洲综合在线| 99久久婷婷国产综合精品| 91精品一区二区三区久久久久久| 精品第一国产综合精品aⅴ| 亚洲啪啪综合av一区二区三区| 日本成人在线网站| 成人福利视频在线| 欧美久久高跟鞋激| 综合欧美一区二区三区| 久久国产剧场电影| 在线视频欧美精品| 日本一区二区成人| 黑人巨大精品欧美黑白配亚洲| 日本高清不卡一区| 国产精品久久久久久亚洲伦|