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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? netlcp.c

?? 一個(gè)tcp/ip協(xié)議棧,帶有PPP、IP、TCP、UDP等協(xié)議
?? C
?? 第 1 頁 / 共 4 頁
字號:
/*****************************************************************************
* netlcp.c - Network Link Control Protocol program file.
*
* 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
*
* 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 "netconf.h"
#include <string.h>
#include "net.h"
#include "netbuf.h"
#include "nettimer.h"
#include "netppp.h"
#include "netfsm.h"
#include "netchap.h"
#include "netmagic.h"
#include "netauth.h"
#include "netlcp.h"

#include <stdio.h>
#include "netdebug.h"
#if TRACELCP > 0
#include <string.h>
#endif


/*************************/
/*** 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

/* Number of unanswered echo requests before failure. */
#define MAXECHOFAILS 3

/* Interval in seconds between keepalive echo requests. */
#define ECHOINTERVAL 10


/***********************************/
/*** LOCAL FUNCTION DECLARATIONS ***/
/***********************************/
/*
 * Callbacks for fsm code.  (CI = Configuration Information)
 */
static void lcp_resetci __P((fsm*));	        /* Reset our CI */
static int  lcp_cilen __P((fsm*));		        /* Return length of our CI */
static void lcp_addci __P((fsm*, u_char*, int*));       /* Add our CI to pkt */
static int  lcp_ackci __P((fsm*, u_char*, int));/* Peer ack'd our CI */
static int  lcp_nakci __P((fsm*, u_char*, int));/* Peer nak'd our CI */
static int  lcp_rejci __P((fsm*, u_char*, int));/* Peer rej'd our CI */
static int  lcp_reqci __P((fsm*, u_char*, int*, int));  /* Rcv peer CI */
static void lcp_up __P((fsm*));		            /* We're UP */
static void lcp_down __P((fsm*));	    	    /* We're DOWN */
static void lcp_starting __P((fsm*));   	    /* We need lower layer up */
static void lcp_finished __P((fsm*));	        /* We need lower layer down */
//static int  lcp_extcode __P((fsm*, int, int, u_char*, int));
static int  lcp_extcode __P((fsm*, int, u_char, u_char*, int));

static void lcp_rprotrej __P((fsm*, u_char*, int));

/*
 * routines to send LCP echos to peer
 */
static void lcp_echo_lowerup __P((int));
static void lcp_echo_lowerdown __P((int));
static void LcpEchoTimeout __P((void*));
static void lcp_received_echo_reply __P((fsm*, int, u_char*, int));
static void LcpSendEchoRequest __P((fsm*));
static void LcpLinkFailure __P((fsm*));
static void LcpEchoCheck __P((fsm*));

/*
 * Protocol entry points.
 * Some of these are called directly.
 */
static void lcp_input __P((int, u_char *, int));
static void lcp_protrej __P((int));
static int  lcp_printpkt __P((u_char *, int,
			      void (*) __P((void *, char *, ...)), void *));

#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 int	lcp_echo_interval = ECHOINTERVAL; /* Interval between LCP echo-requests */
//static int	lcp_echo_fails = MAXECHOFAILS; /* Tolerance to unanswered echo-requests */
static u_int	 lcp_echo_interval = ECHOINTERVAL; /* Interval between LCP echo-requests */
static u_int	 lcp_echo_fails = MAXECHOFAILS; /* Tolerance to unanswered echo-requests */
static u_int32_t lcp_echos_pending = 0;	/* Number of outstanding echo msgs */
static u_int32_t lcp_echo_number   = 0;	/* ID number of next echo frame */
static u_int32_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,
    lcp_printpkt,
    NULL,
    1,
    "LCP",
    NULL,
    NULL,
    NULL
};

int lcp_loopbackfail = DEFLOOPBACKFAIL;

/*
 * lcp_printpkt - print the contents of an LCP packet.
 */
static char *lcp_codenames[] = {
	"ConfReq", "ConfAck", "ConfNak", "ConfRej",
	"TermReq", "TermAck", "CodeRej", "ProtRej",
	"EchoReq", "EchoRep", "DiscReq"
};



/***********************************/
/*** 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 = DEFMRU;
	wo->neg_asyncmap = 1;
	wo->asyncmap = 0x000A0000l;	/* 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 = MAXMRU;
	ao->neg_asyncmap = 1;
	ao->asyncmap = 0x000A0000l;	/* 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",
				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",
				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.
	*/
	p += 2;
	len -= 2;
	
	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, int id, u_char *inp, int len)
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", 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!"));
		return;
	}
	
	GETSHORT(prot, inp);
	
	LCPDEBUG((LOG_INFO,
			"lcp_rprotrej: Rcvd Protocol-Reject packet for %x!",
			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",
				f->state));
		return;
	}
	
	/*
	* Upcall the proper Protocol-Reject routine.
	*/
	for (i = 0; (protp = 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",
			prot));
}


/*
 * lcp_protrej - A Protocol-Reject was received.
 */
#pragma argsused
static void lcp_protrej(int unit)
{
	/*
	* Can't reject LCP!

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品免费在线观看| 成人久久久精品乱码一区二区三区 | 国产精品免费看片| 一区二区视频在线| 日本欧美加勒比视频| 国产精品18久久久久久久网站| bt欧美亚洲午夜电影天堂| 欧美日本国产一区| 国产亚洲成av人在线观看导航| 亚洲卡通欧美制服中文| 久久不见久久见中文字幕免费| 成人国产精品视频| 制服丝袜一区二区三区| 日本一区二区三区国色天香| 亚洲第一搞黄网站| 福利一区二区在线观看| 91麻豆精品国产自产在线观看一区 | 亚洲精品水蜜桃| 国产在线一区二区| 欧美专区亚洲专区| 欧美激情中文字幕一区二区| 亚洲第四色夜色| 粉嫩高潮美女一区二区三区| 欧美男生操女生| 国产精品免费aⅴ片在线观看| 热久久免费视频| 一本到一区二区三区| 久久综合久久综合亚洲| 亚洲国产va精品久久久不卡综合| 成人在线视频首页| 精品久久久久香蕉网| 亚洲一线二线三线视频| 国产精品羞羞答答xxdd| 宅男在线国产精品| 夜夜操天天操亚洲| 成人黄色大片在线观看| 26uuu国产电影一区二区| 香蕉成人伊视频在线观看| 99久久久无码国产精品| 精品国产乱码久久久久久夜甘婷婷| 亚洲综合在线电影| av成人老司机| 亚洲精品国产精华液| 国产电影一区在线| 日韩精品中午字幕| 日本在线不卡视频一二三区| 在线精品亚洲一区二区不卡| 中文字幕日韩精品一区| 国产精品亚洲综合一区在线观看| 日韩欧美综合一区| 日韩精品国产欧美| 欧美精品日韩一区| 午夜欧美2019年伦理| 欧美午夜电影网| 一区二区视频在线| 色婷婷久久久综合中文字幕| 综合欧美一区二区三区| 国产91精品一区二区麻豆亚洲| 久久麻豆一区二区| 国产高清在线精品| 久久精品一区四区| 国产高清不卡二三区| 国产亚洲一区字幕| 懂色av一区二区三区免费看| 国产日韩精品一区二区三区| 国产很黄免费观看久久| 欧美极品少妇xxxxⅹ高跟鞋 | 国产女人水真多18毛片18精品视频| 久久精品久久综合| 日韩午夜在线观看视频| 毛片av一区二区| 久久综合九色综合97婷婷女人| 美女在线观看视频一区二区| 日韩一区二区电影在线| 激情综合网最新| 久久新电视剧免费观看| 国产精品一区二区视频| 中文文精品字幕一区二区| 国产.欧美.日韩| 中文字幕在线视频一区| 91丨国产丨九色丨pron| 亚洲在线视频网站| 欧美精品欧美精品系列| 美女精品一区二区| 久久久久9999亚洲精品| 成人免费视频播放| 亚洲视频在线观看三级| 色婷婷精品久久二区二区蜜臂av | 91久久精品一区二区| 一区二区三区资源| 欧美午夜精品久久久久久孕妇| 午夜久久电影网| 91精品国产综合久久久久久久久久 | av综合在线播放| 亚洲精品乱码久久久久久日本蜜臀| 色屁屁一区二区| 日韩av二区在线播放| www欧美成人18+| 99精品在线免费| 亚洲第一福利视频在线| 精品国产一区二区三区四区四| 国产激情一区二区三区桃花岛亚洲| 国产精品久久久久aaaa| 欧美三级电影一区| 视频一区视频二区在线观看| 久久综合精品国产一区二区三区 | 日一区二区三区| 久久新电视剧免费观看| 91捆绑美女网站| 日韩1区2区日韩1区2区| 国产三级欧美三级日产三级99| 91久久精品一区二区| 蜜桃视频免费观看一区| 中文字幕精品三区| 欧洲视频一区二区| 国产一区欧美一区| 洋洋av久久久久久久一区| 日韩一区二区视频| 97精品电影院| 久久精品国产成人一区二区三区 | 欧美在线一区二区| 经典三级视频一区| 亚洲综合色网站| 久久人人97超碰com| 欧美色视频在线观看| 国产成人午夜电影网| 亚洲一本大道在线| 国产偷v国产偷v亚洲高清| 欧美日韩电影一区| 国产成人综合网| 日韩专区欧美专区| 亚洲色图一区二区| 久久久夜色精品亚洲| 欧美三级蜜桃2在线观看| 国产成人精品一区二区三区四区| 亚洲国产精品久久久男人的天堂 | 色偷偷一区二区三区| 激情文学综合丁香| 亚洲第一主播视频| 国产精品久久久久久久午夜片| 欧美一区二区三区成人| 在线精品视频一区二区三四| 东方aⅴ免费观看久久av| 日本免费新一区视频| 日韩毛片视频在线看| 国产偷v国产偷v亚洲高清| 欧美一级黄色片| 欧美视频一区二区三区| 91在线小视频| 成人午夜激情视频| 国产一区二区三区免费在线观看| 三级精品在线观看| 一区二区在线观看免费视频播放| 中文字幕av免费专区久久| 精品国产一区二区国模嫣然| 欧美日韩午夜在线视频| 色综合久久综合网欧美综合网| 国产精品影视网| 激情久久五月天| 久久精品国产精品青草| 日韩av在线发布| 日韩精品午夜视频| 亚洲一区二区三区四区不卡| 国产精品久久久久9999吃药| 国产午夜精品久久久久久免费视| 欧美成人一区二区三区| 91精品国产免费| 欧美日韩不卡在线| 欧美日韩在线电影| 欧美三级三级三级| 欧美午夜精品电影| 欧美视频在线播放| 欧美日韩高清一区二区三区| 精品视频在线看| 欧美日韩国产精选| 欧美日本韩国一区| 欧美一区二区三区系列电影| 欧美日韩一本到| 欧美伦理影视网| 5月丁香婷婷综合| 欧美一三区三区四区免费在线看| 欧美性猛交xxxx黑人交| 欧美性大战xxxxx久久久| 欧美日韩一区成人| 6080yy午夜一二三区久久| 日韩视频在线一区二区| 日韩亚洲欧美中文三级| 日韩欧美一区在线| 精品福利一二区| 亚洲一区二区精品3399| 亚洲一区二区偷拍精品| 亚洲成人精品一区| 天天操天天干天天综合网| 毛片av一区二区| 国内精品伊人久久久久影院对白| 国产麻豆精品theporn| heyzo一本久久综合| 色综合久久综合网| 3d动漫精品啪啪1区2区免费| 日韩欧美一级特黄在线播放|