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

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

?? ppp_c source file.htm

?? 關(guān)于PPP點(diǎn)對點(diǎn)協(xié)議的一些詳細(xì)資料
?? HTM
?? 第 1 頁 / 共 3 頁
字號:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0044)http://www.italios.it/os1/ppp_8c-source.html -->
<HTML><HEAD><TITLE>ppp.c Source File</TITLE>
<META http-equiv=Content-Type content=text/html;charset=iso-8859-1><LINK 
href="ppp_c Source File.files/doxygen.css" type=text/css rel=stylesheet>
<META content="MSHTML 6.00.2800.1106" name=GENERATOR></HEAD>
<BODY><!-- Generato da Doxygen 1.3-rc3 -->
<CENTER><A class=qindex href="http://www.italios.it/os1/index.html">Pagina 
Principale</A> &nbsp; <A class=qindex 
href="http://www.italios.it/os1/annotated.html">Lista dei composti</A> &nbsp; <A 
class=qindex href="http://www.italios.it/os1/files.html">Lista dei file</A> 
&nbsp; <A class=qindex href="http://www.italios.it/os1/functions.html">Membri 
dei composti</A> &nbsp; <A class=qindex 
href="http://www.italios.it/os1/globals.html">Membri dei file</A> &nbsp; 
</CENTER>
<HR>

<H1>ppp.c</H1><A href="http://www.italios.it/os1/ppp_8c.html">Vai alla 
documentazione di questo file.</A>
<DIV class=fragment><PRE>00001 <SPAN class=comment>/*</SPAN>
00002 <SPAN class=comment>ItaliOs</SPAN>
00003 <SPAN class=comment>This program is free software; you can redistribute it and/or</SPAN>
00004 <SPAN class=comment>modify it under the terms of the GNU General Public License</SPAN>
00005 <SPAN class=comment>as published by the Free Software Foundation; either version 2</SPAN>
00006 <SPAN class=comment>of the License, or (at your option) any later version.</SPAN>
00007 <SPAN class=comment></SPAN>
00008 <SPAN class=comment>This program is distributed in the hope that it will be useful,</SPAN>
00009 <SPAN class=comment>but WITHOUT ANY WARRANTY; without even the implied warranty of</SPAN>
00010 <SPAN class=comment>MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</SPAN>
00011 <SPAN class=comment>GNU General Public License for more details.</SPAN>
00012 <SPAN class=comment></SPAN>
00013 <SPAN class=comment>You should have received a copy of the GNU General Public License</SPAN>
00014 <SPAN class=comment>along with this program; if not, write to the Free Software</SPAN>
00015 <SPAN class=comment>Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.</SPAN>
00016 <SPAN class=comment>*/</SPAN>
00017 
00018 
00019 <SPAN class=comment>/* ppp.c: by miki00</SPAN>
00020 <SPAN class=comment></SPAN>
00021 <SPAN class=comment></SPAN>
00022 <SPAN class=comment>   0x7f,0xff,0x03,protocol[2]</SPAN>
00023 <SPAN class=comment></SPAN>
00024 <SPAN class=comment></SPAN>
00025 <SPAN class=comment>  status: PAP,</SPAN>
00026 <SPAN class=comment></SPAN>
00027 <SPAN class=comment></SPAN>
00028 <SPAN class=comment>#include "io.h"</SPAN>
00029 <SPAN class=comment>*/</SPAN>
00030 <SPAN class=preprocessor>#define r_PPP</SPAN>
00031 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#include "<A class=code href="http://www.italios.it/os1/net_2rete_8h.html">rete.h</A>"</SPAN>
00032 
00033 <SPAN class=preprocessor>#define ppp_flag (u_char)*ppp</SPAN>
00034 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppp_addr (u_char)*(ppp+1)</SPAN>
00035 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppp_control (u_char)*(ppp+2)</SPAN>
00036 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppp_proto *(u_short *)(ppp+3)</SPAN>
00037 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppp_code (u_char)*(ppp+5)</SPAN>
00038 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppp_id (u_char)*(ppp+6)</SPAN>
00039 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppp_len *(u_short *)(ppp+7)</SPAN>
00040 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppp_dati (ppp+9)</SPAN>
00041 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppp_fcs *(u_short *)(ppp+scbyte(ppp_len)+5)</SPAN>
00042 <SPAN class=preprocessor></SPAN>
00043 <SPAN class=preprocessor>#define ppplog_addr (u_char)*(ppplog+1)</SPAN>
00044 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppplog_control (u_char)*(ppplog+2)</SPAN>
00045 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppplog_proto *(u_short *)(ppplog+3)</SPAN>
00046 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppplog_code (u_char)*(ppplog+5)</SPAN>
00047 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppplog_id (u_char)*(ppplog+6)</SPAN>
00048 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppplog_len *(u_short *)(ppplog+7)</SPAN>
00049 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppplog_dati (ppplog+9)</SPAN>
00050 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define ppplog_fcs *(u_short *)(ppplog+scbyte(ppplog_len)+5)</SPAN>
00051 <SPAN class=preprocessor></SPAN>
00052 <SPAN class=preprocessor>#define pppout_flag (u_char)*pppout</SPAN>
00053 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define pppout_addr (u_char)*(pppout+1)</SPAN>
00054 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define pppout_control (u_char)*(pppout+2)</SPAN>
00055 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define pppout_proto *(u_short *)(pppout+3)</SPAN>
00056 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define pppout_code (u_char)*(pppout+5)</SPAN>
00057 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define pppout_id (u_char)*(pppout+6)</SPAN>
00058 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define pppout_len *(u_short *)(pppout+7)</SPAN>
00059 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define pppout_dati (pppout+9)</SPAN>
00060 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define pppout_fcs *(u_short *)(pppout+scbyte(pppout_len)+5)</SPAN>
00061 <SPAN class=preprocessor></SPAN>
00062 <SPAN class=preprocessor>#define IP_LUNGH scbyte(*(u_short *)(pppout+7))</SPAN>
00063 <SPAN class=preprocessor></SPAN>
00064 <SPAN class=preprocessor>#ifndef stderr</SPAN>
00065 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define stderr stdout </SPAN>
00066 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#endif</SPAN>
00067 <SPAN class=preprocessor></SPAN>
00068 <SPAN class=comment>/*</SPAN>
00069 <SPAN class=comment>#define Log nlog+=snprintf(log+nlog,200,</SPAN>
00070 <SPAN class=comment>#define Scrivilog {printf("%s\n",log);nlog=0;}</SPAN>
00071 <SPAN class=comment>*/</SPAN>
00072 <SPAN class=preprocessor>#define Log printf(</SPAN>
00073 <SPAN class=preprocessor></SPAN><SPAN class=preprocessor>#define Scrivilog printf("\n");</SPAN>
00074 <SPAN class=preprocessor></SPAN>
00075   <SPAN class=keywordtype>int</SPAN> t;
00076 
00077   u_int PPPtimeout=0;
00078   
00079 <SPAN class=comment>/*  u_char F_PPP=0; */</SPAN>
00080   u_char lastCH=0;
00081   u_char *ppp,*pppout,*ppplog;
00082   u_char *buff=0;
00083   u_char *buffRX=0;
00084   u_short buffRX1,buffRX2=0;
00085   <SPAN class=keywordtype>int</SPAN> punta[]={-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},npunta=0,npunta2=0,puntaP=-1;
00086   <SPAN class=keywordtype>char</SPAN> log[200],nlog=0,CLK=0;
00087   u_int stato=0;
00088   u_int IPlocale,IPremoto;
00089   u_int IPDNS1,IPDNS2;
00090   u_int asyncmap=0xffffffff,asyncmap2;
00091   u_char *bufTX=0;
00092   u_short bufTX1,bufTX2=0;
00093   u_int ritorno;  
00094   u_char ppp_confack,ppp_confnack,ppp_confrej;
00095   <SPAN class=keyword>extern</SPAN> u_char asyncmapno;
00096   
00097   <SPAN class=keyword>static</SPAN> <SPAN class=keywordtype>unsigned</SPAN> <SPAN class=keywordtype>short</SPAN> fcstab[256] = {
00098         0x0000, 0x1189, 0x2312, 0x329b, 0x4624, 0x57ad, 0x6536, 0x74bf,
00099         0x8c48, 0x9dc1, 0xaf5a, 0xbed3, 0xca6c, 0xdbe5, 0xe97e, 0xf8f7,
00100         0x1081, 0x0108, 0x3393, 0x221a, 0x56a5, 0x472c, 0x75b7, 0x643e,
00101         0x9cc9, 0x8d40, 0xbfdb, 0xae52, 0xdaed, 0xcb64, 0xf9ff, 0xe876,
00102         0x2102, 0x308b, 0x0210, 0x1399, 0x6726, 0x76af, 0x4434, 0x55bd,
00103         0xad4a, 0xbcc3, 0x8e58, 0x9fd1, 0xeb6e, 0xfae7, 0xc87c, 0xd9f5,
00104         0x3183, 0x200a, 0x1291, 0x0318, 0x77a7, 0x662e, 0x54b5, 0x453c,
00105         0xbdcb, 0xac42, 0x9ed9, 0x8f50, 0xfbef, 0xea66, 0xd8fd, 0xc974,
00106         0x4204, 0x538d, 0x6116, 0x709f, 0x0420, 0x15a9, 0x2732, 0x36bb,
00107         0xce4c, 0xdfc5, 0xed5e, 0xfcd7, 0x8868, 0x99e1, 0xab7a, 0xbaf3,
00108         0x5285, 0x430c, 0x7197, 0x601e, 0x14a1, 0x0528, 0x37b3, 0x263a,
00109         0xdecd, 0xcf44, 0xfddf, 0xec56, 0x98e9, 0x8960, 0xbbfb, 0xaa72,
00110         0x6306, 0x728f, 0x4014, 0x519d, 0x2522, 0x34ab, 0x0630, 0x17b9,
00111         0xef4e, 0xfec7, 0xcc5c, 0xddd5, 0xa96a, 0xb8e3, 0x8a78, 0x9bf1,
00112         0x7387, 0x620e, 0x5095, 0x411c, 0x35a3, 0x242a, 0x16b1, 0x0738,
00113         0xffcf, 0xee46, 0xdcdd, 0xcd54, 0xb9eb, 0xa862, 0x9af9, 0x8b70,
00114         0x8408, 0x9581, 0xa71a, 0xb693, 0xc22c, 0xd3a5, 0xe13e, 0xf0b7,
00115         0x0840, 0x19c9, 0x2b52, 0x3adb, 0x4e64, 0x5fed, 0x6d76, 0x7cff,
00116         0x9489, 0x8500, 0xb79b, 0xa612, 0xd2ad, 0xc324, 0xf1bf, 0xe036,
00117         0x18c1, 0x0948, 0x3bd3, 0x2a5a, 0x5ee5, 0x4f6c, 0x7df7, 0x6c7e,
00118         0xa50a, 0xb483, 0x8618, 0x9791, 0xe32e, 0xf2a7, 0xc03c, 0xd1b5,
00119         0x2942, 0x38cb, 0x0a50, 0x1bd9, 0x6f66, 0x7eef, 0x4c74, 0x5dfd,
00120         0xb58b, 0xa402, 0x9699, 0x8710, 0xf3af, 0xe226, 0xd0bd, 0xc134,
00121         0x39c3, 0x284a, 0x1ad1, 0x0b58, 0x7fe7, 0x6e6e, 0x5cf5, 0x4d7c,
00122         0xc60c, 0xd785, 0xe51e, 0xf497, 0x8028, 0x91a1, 0xa33a, 0xb2b3,
00123         0x4a44, 0x5bcd, 0x6956, 0x78df, 0x0c60, 0x1de9, 0x2f72, 0x3efb,
00124         0xd68d, 0xc704, 0xf59f, 0xe416, 0x90a9, 0x8120, 0xb3bb, 0xa232,
00125         0x5ac5, 0x4b4c, 0x79d7, 0x685e, 0x1ce1, 0x0d68, 0x3ff3, 0x2e7a,
00126         0xe70e, 0xf687, 0xc41c, 0xd595, 0xa12a, 0xb0a3, 0x8238, 0x93b1,
00127         0x6b46, 0x7acf, 0x4854, 0x59dd, 0x2d62, 0x3ceb, 0x0e70, 0x1ff9,
00128         0xf78f, 0xe606, 0xd49d, 0xc514, 0xb1ab, 0xa022, 0x92b9, 0x8330,
00129         0x7bc7, 0x6a4e, 0x58d5, 0x495c, 0x3de3, 0x2c6a, 0x1ef1, 0x0f78
00130    };
00131 
00132 u_char leggiPPP() {     <SPAN class=comment>/* funzione che legge e marca un frame in Rx */</SPAN>
00133   u_char ch;
00134   ch=((ritorno=leggibyteseriale())&amp;0xff);<SPAN class=comment>/* leggibyte da seriale */</SPAN>
00135   <SPAN class=keywordflow>if</SPAN> (ritorno!=NO_DATA) {       <SPAN class=comment>/* se e' stato letto un byte */</SPAN>
00136   <SPAN class=keywordflow>if</SPAN> (ch==0x7e) {                <SPAN class=comment>/* se e' un flag */</SPAN>
00137    <SPAN class=keywordflow>if</SPAN> (lastCH!=0x7e)              <SPAN class=comment>/* se il penultimo byte non e' un flag */</SPAN>
00138     <SPAN class=keywordflow>if</SPAN> (puntaP&gt;=0) {               <SPAN class=comment>/* se e' un frame completo */</SPAN>
00139        punta[npunta]=puntaP;       <SPAN class=comment>/* allora trasmetti */</SPAN>
00140        npunta=(npunta+1)%10;
00141     }
00142     <SPAN class=keywordflow>if</SPAN> (buffRX2&gt;(10000-3000)) buffRX2=0;
00143     puntaP=buffRX2;                    <SPAN class=comment>/* marca frame successivo */</SPAN>
00144   }
00145   <SPAN class=keywordflow>if</SPAN> (ch==0x7d) {               <SPAN class=comment>/* se e' un codice di escape */</SPAN>
00146     <SPAN class=keywordflow>while</SPAN> ((ritorno=leggibyteseriale())==NO_DATA);
00147       ch=(ritorno&amp;0xff)^0x20;   <SPAN class=comment>/* leggi il prox byte e fai xor 0x20 */</SPAN>
00148   }
00149   buffRX[buffRX2]=ch;               <SPAN class=comment>/* salva carattere nel buffer */</SPAN>
00150   buffRX2++;<SPAN class=keywordflow>if</SPAN> (buffRX2&gt;10000) buffRX2=0;
00151   lastCH=ch;                          <SPAN class=comment>/* salva il carattere il lastCH */</SPAN>
00152   <SPAN class=keywordflow>return</SPAN> 1;
00153  } <SPAN class=keywordflow>else</SPAN> <SPAN class=keywordflow>return</SPAN> 0;
00154 }
00155 
00156 <SPAN class=preprocessor>   #define PPPINITFCS      0xffff  </SPAN><SPAN class=comment>/* Initial FCS value */</SPAN>
00157 
00158 
00159    <SPAN class=comment>/*</SPAN>
00160 <SPAN class=comment>    * Calculate a new fcs given the current fcs and the new data.</SPAN>
00161 <SPAN class=comment>    */</SPAN>
00162    u_short pppfcs(fcs, cp, len) <SPAN class=comment>/* funzione per il calcolo dell'FCS da RFC */</SPAN>
00163        <SPAN class=keyword>register</SPAN> <SPAN class=keywordtype>unsigned</SPAN> <SPAN class=keywordtype>short</SPAN> fcs;
00164        <SPAN class=keyword>register</SPAN> <SPAN class=keywordtype>unsigned</SPAN> <SPAN class=keywordtype>char</SPAN> *cp;
00165        <SPAN class=keyword>register</SPAN> <SPAN class=keywordtype>int</SPAN> len;
00166    {
00167        <SPAN class=keywordflow>while</SPAN> (len--) {
00168            fcs = (fcs &gt;&gt; 8) ^ fcstab[(fcs ^ *cp++) &amp; 0xff];
00169        }
00170        fcs=~fcs;
00171        <SPAN class=keywordflow>return</SPAN> fcs;
00172    }
00173 
00174 <SPAN class=keywordtype>void</SPAN> logga(u_char *ppplog,<SPAN class=keywordtype>char</SPAN> *iniz) { <SPAN class=comment>/* log su stdout */</SPAN>
00175 <SPAN class=keywordtype>int</SPAN> t;
00176 
00177 <SPAN class=keywordtype>void</SPAN> leggiOPZ() {
00178  <SPAN class=keywordtype>int</SPAN> t1;
00179   <SPAN class=keywordflow>for</SPAN> (t=0;t&lt;(scbyte(ppplog_len)-4);) { 
00180    <SPAN class=keywordflow>for</SPAN> (t1=0;t1&lt;ppplog_dati[t+1];t1++)
00181      Log <SPAN class=stringliteral>"%x."</SPAN>,ppplog_dati[t+t1]);
00182    t+=t1;Log <SPAN class=stringliteral>" "</SPAN>);
00183   }   
00184 }
00185 
00186 <SPAN class=keywordtype>void</SPAN> CoNf() {
00187          <SPAN class=keywordflow>switch</SPAN> (ppplog_code) {
00188            <SPAN class=keywordflow>case</SPAN> 1:  Log <SPAN class=stringliteral>"ConfReq "</SPAN>);<SPAN class=keywordflow>break</SPAN>;
00189            <SPAN class=keywordflow>case</SPAN> 2:  Log <SPAN class=stringliteral>"ConfAck "</SPAN>);<SPAN class=keywordflow>break</SPAN>;
00190            <SPAN class=keywordflow>case</SPAN> 3:  Log <SPAN class=stringliteral>"ConfNack "</SPAN>);<SPAN class=keywordflow>break</SPAN>;
00191            <SPAN class=keywordflow>case</SPAN> 4:  Log <SPAN class=stringliteral>"ConfRej "</SPAN>);<SPAN class=keywordflow>break</SPAN>;
00192            <SPAN class=keywordflow>case</SPAN> 5:  Log <SPAN class=stringliteral>"TermReq "</SPAN>);<SPAN class=keywordflow>break</SPAN>;
00193            <SPAN class=keywordflow>case</SPAN> 6:  Log <SPAN class=stringliteral>"TermAck "</SPAN>);<SPAN class=keywordflow>break</SPAN>;
00194          }
00195 }
00196 

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区三区四区av| 国产精品久久免费看| 国产成a人无v码亚洲福利| 亚洲人成7777| 精品国产一区a| 在线亚洲高清视频| 国产成都精品91一区二区三 | 国产精品成人免费在线| 欧美一区二区三区不卡| 91麻豆精品一区二区三区| 国产在线不卡视频| 日本午夜一区二区| 亚洲精品美国一| 国产精品美女久久久久aⅴ| 欧美成人一级视频| 91精品黄色片免费大全| 色先锋aa成人| 99精品久久久久久| 国产98色在线|日韩| 九九九精品视频| 日本午夜一区二区| 日韩精品成人一区二区三区| 一区二区三区四区乱视频| 国产精品久久久久久久久搜平片 | 日本欧美韩国一区三区| 亚洲精品一二三区| 日韩码欧中文字| 国产精品视频观看| 国产日韩亚洲欧美综合| 久久综合av免费| 日韩精品一区二区三区视频在线观看 | 日韩一级二级三级| 欧美狂野另类xxxxoooo| 欧美午夜精品一区二区蜜桃| 日本韩国一区二区三区视频| 成人精品免费看| eeuss鲁片一区二区三区| 国产成人日日夜夜| 成人av手机在线观看| 懂色av中文一区二区三区| 国产成人综合在线观看| 国产99精品视频| 粉嫩aⅴ一区二区三区四区五区| 国产精品自在在线| 国产成人日日夜夜| 91小视频在线免费看| 91欧美一区二区| 欧美自拍丝袜亚洲| 5566中文字幕一区二区电影| 91精品国产91综合久久蜜臀| 欧美一区二区不卡视频| 精品成人免费观看| 日本一区免费视频| 亚洲天天做日日做天天谢日日欢 | 欧美日韩情趣电影| 宅男在线国产精品| 久久婷婷综合激情| 国产精品美女一区二区在线观看| 中文字幕一区二区三区不卡在线 | 亚洲欧美区自拍先锋| 亚洲最新视频在线播放| 午夜视频久久久久久| 精品中文字幕一区二区小辣椒| 国产成人无遮挡在线视频| 不卡在线视频中文字幕| 欧美午夜精品电影| 欧美成人猛片aaaaaaa| 国产天堂亚洲国产碰碰| 亚洲激情六月丁香| 日本三级韩国三级欧美三级| 国产精品乡下勾搭老头1| 91首页免费视频| 日韩一区二区中文字幕| 国产日韩欧美激情| 亚洲妇熟xx妇色黄| 国内精品视频666| 91在线精品一区二区| 7777精品伊人久久久大香线蕉完整版| 精品国产3级a| 亚洲三级小视频| 久久精品理论片| 一本到不卡免费一区二区| 欧美一级日韩免费不卡| 国产精品白丝在线| 日韩激情一区二区| 不卡av在线网| 日韩欧美一卡二卡| 亚洲免费观看高清| 狠狠色综合日日| 91福利视频在线| 久久久久久夜精品精品免费| 伊人一区二区三区| 国产成人自拍网| 6080日韩午夜伦伦午夜伦| 国产精品不卡一区二区三区| 免费看精品久久片| 91极品美女在线| 中文字幕va一区二区三区| 日韩中文字幕一区二区三区| 99视频国产精品| 久久伊人蜜桃av一区二区| 亚洲午夜在线视频| k8久久久一区二区三区| 精品福利二区三区| 亚洲18色成人| 色哟哟在线观看一区二区三区| 精品久久久久久综合日本欧美 | 男男视频亚洲欧美| 欧洲色大大久久| 国产精品美女久久久久久久久久久 | 欧美人xxxx| 亚洲欧美日本韩国| 成人国产精品免费网站| 精品国产免费久久| 蜜臀av在线播放一区二区三区| 色噜噜狠狠色综合中国| 国产精品毛片高清在线完整版| 久久99久久99小草精品免视看| 色婷婷狠狠综合| 日韩理论在线观看| 成人激情免费网站| 国产欧美一区视频| 国产一区二区免费视频| 精品国产91乱码一区二区三区| 日产欧产美韩系列久久99| 欧美日韩美少妇| 亚洲一区二区三区免费视频| 99精品视频在线观看免费| 国产精品你懂的在线| 粉嫩一区二区三区性色av| 久久久精品免费观看| 国产不卡在线视频| 国产欧美日韩一区二区三区在线观看| 国内精品写真在线观看| 久久综合视频网| 国产精品一二三| 国产亚洲欧洲一区高清在线观看| 国产一区二区导航在线播放| 欧美电影免费观看高清完整版| 亚洲va韩国va欧美va| 欧美高清视频一二三区| 日韩二区在线观看| 欧美成人r级一区二区三区| 青草国产精品久久久久久| 日韩午夜在线影院| 久久精品国产精品青草| xnxx国产精品| 岛国精品一区二区| 国产精品久久影院| 色爱区综合激月婷婷| 亚洲国产成人tv| 日韩亚洲欧美一区| 国产成人免费视| 亚洲欧美乱综合| 制服丝袜中文字幕一区| 国产在线麻豆精品观看| 国产日本亚洲高清| 一本到三区不卡视频| 日本特黄久久久高潮| 国产在线精品免费av| 在线视频中文字幕一区二区| 亚洲国产精品嫩草影院| 日韩视频一区二区三区在线播放| 精品一区二区三区不卡 | 成人性生交大片免费看中文网站| 亚洲欧洲国产专区| 欧美另类一区二区三区| 久久97超碰国产精品超碰| 国产精品美女久久久久久久久 | 蜜桃视频一区二区三区| 欧美国产成人在线| 在线亚洲一区观看| 精品一区中文字幕| 综合久久一区二区三区| 欧美精品高清视频| 成人综合在线观看| 五月综合激情网| 欧美—级在线免费片| 欧美日韩一区二区三区高清| 国产一区二区精品久久| 一区二区三区四区精品在线视频| 欧美不卡一区二区三区| 91视频国产资源| 久国产精品韩国三级视频| 亚洲色图一区二区| wwwwww.欧美系列| 欧美丝袜第三区| 丁香六月久久综合狠狠色| 亚洲成人久久影院| 欧美激情综合在线| 欧美一区二区三区免费观看视频| 成人avav影音| 国产麻豆精品95视频| 亚洲高清三级视频| 综合激情成人伊人| 久久理论电影网| 91精品麻豆日日躁夜夜躁| 色一情一乱一乱一91av| 国产1区2区3区精品美女| 伦理电影国产精品|