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

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

?? ospf_mib_utilities.c

?? vxworks下ospf協(xié)議棧
?? C
?? 第 1 頁 / 共 5 頁
字號:
/* ospf_mib_utilities.c - utilities for OSPF version 2.0 Management Interface *//* Copyright 1998-2003 Wind River Systems, Inc. */#include "copyright_wrs.h"/*Modification history--------------------01o,06may03,mwv Fixed SPR#88210 - replaced all import statements for mib                 display strings with ospf_mib_helper_show.h include statement.01p,28feb03,kc  Fixed SPR#86505 - modified per new mibApi.h header file updates.                 Renamed MAPI_COMMIT_FORCE and MAPI_GET_FORCE mApiReqType_t request type                to MAPI_COMMIT_FORCE and MAPI_GET_FORCE respectively.01o,28feb03,kc  Fixed SPR#86502 - renamed INCLUDE_OSPF_SHOW_ROUTINES to                 INCLUDE_OSPF_MIB_SHOW_ROUTINES.01n,19nov02,mwv Merge TMS code SPR 8428401m,12nov02,kc  Redefine MAPI_UTILS_INIT_CHECK macro to also check if the ospf                mApi management facility is initialized.01l,09aug02,kc  Added support for wrnOspfIfTable from WRN-OSPF Enterprise MIB.01k,17jun02,kc  Added pObjCookie argument to ospf_mApi_buildRequest().01j,08may02,kc  Fixed doc for refgen.01i,17apr02,kc  Renamed ospf_mApi_utilsInit() to ospfMapiUtilitiesInit();                ospf_mApi_utilsDestroy() to ospfMapiUtilitiesDestroy();                ospf_mApi_set() to ospfMapiSet(); ospf_mApi_get() to                ospfMapiGet(); ospf_mApi_getNext() to ospfMapiGetNext();                wrnOspf_mApi_get() to wrnOspfMapiGet(); wrnOspf_mApi_getNext()                to wrnOspfMapiGetNext(); wrnOspf_mApi_set() to wrnOspfMapiSet()01h,15apr02,kc  Added ospf_mApi_requestHelper() routine, thus, simplify the                wrnOspf_mApi_sendRequest() and ospf_mApi_sendRequest() routines.01g,22feb02,kc  Fixed callout to OSPF MIB API as a result of function name changes.01f,04feb02,kc  Added support for wrnOspfRedistributeDefaultRoutes,                wrnOspfRedistributeStaticRoutes, wrnOspfRedistributeRIPRoutes,                and wrnOspfRedistributeBGPRoutes objects to the wrnOspfMibTableList                lookup table.01e,12dec01,kc  Modified ospf_mApi_sendRequest() and wrnOspf_mApi_sendRequest() to                display the MIB API return error.01d,10dec01,kc  Added ospf_mApi_objInfoGetNext() function.01c,10dec01,kc  Added WRN-OSPF Enterprise MIB support.01b,06dec01,kc  Fixed ospf_mApi_processSetRequest() - send IP Address in network                byte order.01a,30nov01,kc  Initial file creation.*//*DESCRIPTIONThis module provides various SNMP equivalent GET, GET NEXT and SET routines for theRFC1850 OSPF MIB and WRN OSPF Enterprise MIB.  To use the facility provided by thismodule, this module must first be installed using ospfMapiUtilitiesInit(), which needs to be called after the OSPF MIB API facilities have been initialized. This facilitycan only be used if the OSPF MIB API facilities are also initialized.Currently, the following routines are provided:\csRFC1850 OSPF MIB: ospfMapiGet, ospfMapiGetNext, ospfMapiSetWRN OSPF Enterprise MIB: wrnOspfMapiGet, wrnOspfMapiGetNext, wrnOspfMapiSet\ce*//* This include is here to get rid of the "empty file" compiler warning */#include <vxWorks.h>#if defined(__OSPF_MIB__)/* VxWorks standard includes */#include <stdio.h>#include <stdlib.h>#include <string.h>#include <ctype.h>#include <semLib.h>#include <inetLib.h>#include <lstLib.h>#include <avlLib.h>/* management interface includes */#include "rowStatusLib.h"#include "mibApi.h"#include "ospf_mib_helper.h"#include "ospf_mib_helper_update.h"#include "ospf_mib_api.h"#include "ospf_mib_wrn_helper.h"#if defined(INCLUDE_OSPF_MIB_UTILITIES)/* all the display strings are defined in ospf_mib_helper_show.h. */#include "ospf_mib_helper_show.h"/* private data */#define OBJECT_NAME_LENGTH_MAX  32   /* max ospf-mib and wrn-ospf-mib object name */ #define OSPF_INSTANCE_LEN_MAX   17   /* max number of sub-ids in instance *//* internal error codes */#define MAPI_WRONG_OID_LEN           100/* pointer to the MIB API GET/SET request function */typedef STATUS (* OSPF_MAPI_FUNCPTR)( mApiRequest_t *pRequest, mApiReqType_t reqType );/* the following access type is defined in the mib */typedef enum{    read_only = 1,      /* object is read-only */    read_write = 2,     /* object is read-write */    read_create = 3,    /* object is read-create */    obsolete            /* object has obsolete */} ospfMibAccessType_t;/* the following object tag determines the length of the data */typedef enum {    ospfMibTag_ipaddress,    ospfMibTag_integer,    ospfMibTag_counter,    ospfMibTag_counter32,    ospfMibTag_gauge,    ospfMibTag_gauge32,    ospfMibTag_octetString} ospfMibTag_t;/* the following alternate object tag is mainly for formatting the output */typedef enum{    ospfMibAltTag_none,            /* no alternate tag */    ospfMibAltTag_rowStatus,       /* rowStatus tag */    ospfMibAltTag_trueValue,       /* true value tag */    ospfMibAltTag_status,          /* status tag */    ospfMibAltTag_authType,        /* authentication type tag */    ospfMibAltTag_ifState,         /* interface state tag */    ospfMibAltTag_ifType,          /* interface type tag */    ospfMibAltTag_lsdbType,        /* link state database type tag */    ospfMibAltTag_octetString,     /* link state advertisement octet strig */    ospfMibAltTag_nbrState,        /* neighbor state tag */    ospfMibAltTag_asType,          /* AS External type tag */    ospfMibAltTag_summaryType,     /* area summary type tag */    ospfMibAltTag_stubMetricType,  /* stub metric type tag */    ospfMibAltTag_mcastType,       /* multicast type tag */    ospfMibAltTag_permanence,      /* neighbor permanence tag */    ospfMibAltTag_extLsdbType,     /* external lsdb type tag */    ospfMibAltTag_agType,          /* area aggregation type tag */    ospfMibAltTag_agEffect,        /* area aggregation effect type tag */    ospfMibAltTag_opaqueType       /* opaque lsa type tag */} ospfMibAltTag_t;char *mApiRequestType[] = {    "UNKNOWN", "GET", "GET NEXT", "TEST", "COMMIT", "UNDO", "COMPLETE",     "TEST FORCE", "COMMIT NVM", "GET NVM" };char *ospfMibTagStr[] = {    "ipaddress",    "integer",    "couter",    "counter32",    "gauge",    "gauge32",    "octetString"};typedef struct ospfMibList{    /* object name as specified in the MIB */    char                 objectName[OBJECT_NAME_LENGTH_MAX];    int                  objectPrefixEnum;  /* object prefix enumeration value */    ospfMibTag_t         objectTag;         /* object tag */    ospfMibAltTag_t      objectAltTag;      /* object alternate tag */    ospfMibAccessType_t  objectAccessType;  /* object access type */             } ospfMibList_t;/* RFC1850 OSPF-MIB lookup table */LOCAL ospfMibList_t ospfMibTableList[] ={    /* ospfGeneralGroup */    {"ospfRouterId", (int)mApiOspfRouterId, ospfMibTag_ipaddress,      ospfMibAltTag_none, read_write},    {"ospfAdminStat", (int)mApiOspfAdminStat, ospfMibTag_integer,      ospfMibAltTag_status, read_write},    {"ospfVersionNumber", (int)mApiOspfVersionNumber, ospfMibTag_integer,      ospfMibAltTag_none, read_only},             {"ospfAreaBdrRtrStatus", (int)mApiOspfAreaBdrRtrStatus, ospfMibTag_integer,      ospfMibAltTag_trueValue, read_only},         {"ospfASBdrRtrStatus", (int)mApiOspfASBdrRtrStatus, ospfMibTag_integer,      ospfMibAltTag_trueValue, read_write},    {"ospfExternLsaCount", (int)mApiOspfExternLsaCount, ospfMibTag_gauge,      ospfMibAltTag_none, read_only},             {"ospfExternLsaCksumSum", (int)mApiOspfExternLsaCksumSum, ospfMibTag_integer,      ospfMibAltTag_none, read_only},           {"ospfTOSSupport", (int)mApiOspfTOSSupport, ospfMibTag_integer,      ospfMibAltTag_trueValue, read_write},    {"ospfOriginateNewLsas", (int)mApiOspfOriginateNewLsas, ospfMibTag_counter,      ospfMibAltTag_none, read_only},           {"ospfRxNewLsas", (int)mApiOspfRxNewLsas, ospfMibTag_counter,      ospfMibAltTag_none, read_only},     {"ospfExtLsdbLimit", (int)mApiOspfExtLsdbLimit, ospfMibTag_integer,      ospfMibAltTag_none, read_write},    {"ospfMulticastExtensions", (int)mApiOspfMulticastExtensions, ospfMibTag_integer,     ospfMibAltTag_none, read_write},    {"ospfExitOverflowInterval", (int)mApiOspfExitOverflowInterval, ospfMibTag_integer,      ospfMibAltTag_none, read_write},    {"ospfDemandExtensions", (int)mApiOspfDemandExtensions, ospfMibTag_integer,      ospfMibAltTag_trueValue, read_write},    /* ospfAreaTable */    {"ospfAreaId", (int)mApiOspfAreaId, ospfMibTag_ipaddress,      ospfMibAltTag_none, read_only},    {"ospfAuthType", (int)mApiOspfAuthType, ospfMibTag_integer,      ospfMibAltTag_authType, obsolete},    {"ospfImportAsExtern", (int)mApiOspfImportAsExtern, ospfMibTag_integer,      ospfMibAltTag_asType, read_create},    {"ospfSpfRuns", (int)mApiOspfSpfRuns, ospfMibTag_counter32,      ospfMibAltTag_none, read_only},    {"ospfAreaBdrRtrCount", (int)mApiOspfAreaBdrRtrCount, ospfMibTag_gauge32,      ospfMibAltTag_none, read_only},    {"ospfAsBdrRtrCount", (int)mApiOspfAsBdrRtrCount, ospfMibTag_gauge32,      ospfMibAltTag_none, read_only},    {"ospfAreaLsaCount", (int)mApiOspfAreaLsaCount, ospfMibTag_gauge32,      ospfMibAltTag_none, read_only},    {"ospfAreaLsaCksumSum", (int)mApiOspfAreaLsaCksumSum, ospfMibTag_integer,      ospfMibAltTag_none, read_only},    {"ospfAreaSummary", (int)mApiOspfAreaSummary, ospfMibTag_integer,      ospfMibAltTag_summaryType, read_create},    {"ospfAreaStatus", (int)mApiOspfAreaStatus, ospfMibTag_integer,      ospfMibAltTag_rowStatus, read_create},    /* ospfStubAtable */    {"ospfStubAreaId", (int)mApiOspfStubAreaId, ospfMibTag_ipaddress,      ospfMibAltTag_none, read_only},    {"ospfStubTOS", (int)mApiOspfStubTOS, ospfMibTag_integer,      ospfMibAltTag_none, read_only},    {"ospfStubMetric", (int)mApiOspfStubMetric, ospfMibTag_integer,      ospfMibAltTag_none, read_create},    {"ospfStubStatus", (int)mApiOspfStubStatus, ospfMibTag_integer,      ospfMibAltTag_rowStatus, read_create},    {"ospfStubMetricType", (int)mApiOspfStubMetricType, ospfMibTag_integer,     ospfMibAltTag_stubMetricType, read_create},    /* ospfLsdbTable */    {"ospfLsdbAreaId", (int)mApiOspfLsdbAreaId, ospfMibTag_ipaddress,      ospfMibAltTag_none, read_only},    {"ospfLsdbType", (int)mApiOspfLsdbType, ospfMibTag_integer,      ospfMibAltTag_lsdbType, read_only},    {"ospfLsdbLsid", (int)mApiOspfLsdbLsid, ospfMibTag_ipaddress,      ospfMibAltTag_none, read_only},    {"ospfLsdbRouterId", (int)mApiOspfLsdbRouterId, ospfMibTag_ipaddress,      ospfMibAltTag_none, read_only},    {"ospfLsdbSequence", (int)mApiOspfLsdbSequence, ospfMibTag_integer,      ospfMibAltTag_none, read_only },    {"ospfLsdbAge", (int)mApiOspfLsdbAge, ospfMibTag_integer,      ospfMibAltTag_none, read_only},    {"ospfLsdbChecksum", (int)mApiOspfLsdbChecksum, ospfMibTag_integer,      ospfMibAltTag_none, read_only},    {"ospfLsdbAdvertisement", (int)mApiOspfLsdbAdvertisement, ospfMibTag_integer,      ospfMibAltTag_octetString, read_only},    /* ospfAreaRangeTable (obsolete ) */    {"ospfAreaRangeAreaId", (int)mApiOspfAreaRangeAreaId, ospfMibTag_ipaddress,      ospfMibAltTag_none, obsolete},    {"ospfAreaRangeNet", (int)mApiOspfAreaRangeNet, ospfMibTag_ipaddress,      ospfMibAltTag_none, obsolete},    {"ospfAreaRangeMask", (int)mApiOspfAreaRangeMask, ospfMibTag_ipaddress,      ospfMibAltTag_none, obsolete},    {"ospfAreaRangeStatus", (int)mApiOspfAreaRangeStatus, ospfMibTag_integer,     ospfMibAltTag_rowStatus, obsolete},    {"ospfAreaRangeEffect", (int)mApiOspfAreaRangeEffect, ospfMibTag_integer,     ospfMibAltTag_agEffect, obsolete},    /* ospfHostTable */    {"ospfHostIpAddress", (int)mApiOspfHostIpAddress, ospfMibTag_ipaddress,      ospfMibAltTag_none, read_only},    {"ospfHostTOS", (int)mApiOspfHostTOS, ospfMibTag_integer,      ospfMibAltTag_none, read_only},    {"ospfHostMetric", (int)mApiOspfHostMetric, ospfMibTag_integer,      ospfMibAltTag_none, read_create},    {"ospfHostStatus", (int)mApiOspfHostStatus, ospfMibTag_integer,      ospfMibAltTag_rowStatus, read_create},    {"ospfHostAreaID", (int)mApiOspfHostAreaID, ospfMibTag_ipaddress,      ospfMibAltTag_none, read_only},    /* ospfIfTable */    {"ospfIfIpAddress", (int)mApiOspfIfIpAddress, ospfMibTag_ipaddress,      ospfMibAltTag_none, read_only},    {"ospfAddressLessIf", (int)mApiOspfAddressLessIf, ospfMibTag_integer,      ospfMibAltTag_none, read_only},    {"ospfIfAreaId", (int)mApiOspfIfAreaId, ospfMibTag_ipaddress,      ospfMibAltTag_none, read_create},    {"ospfIfType", (int)mApiOspfIfType, ospfMibTag_integer,      ospfMibAltTag_ifType, read_create},    {"ospfIfAdminStat", (int)mApiOspfIfAdminStat, ospfMibTag_integer,      ospfMibAltTag_status, read_create},    {"ospfIfRtrPriority", (int)mApiOspfIfRtrPriority, ospfMibTag_integer,      ospfMibAltTag_none, read_create},    {"ospfIfTransitDelay", (int)mApiOspfIfTransitDelay, ospfMibTag_integer,      ospfMibAltTag_none, read_create},    {"ospfIfRetransInterval", (int)mApiOspfIfRetransInterval, ospfMibTag_integer,     ospfMibAltTag_none, read_create},    {"ospfIfHelloInterval", (int)mApiOspfIfHelloInterval, ospfMibTag_integer,     ospfMibAltTag_none, read_create},    {"ospfIfRtrDeadInterval", (int)mApiOspfIfRtrDeadInterval, ospfMibTag_integer,     ospfMibAltTag_none, read_create},    {"ospfIfPollInterval", (int)mApiOspfIfPollInterval, ospfMibTag_integer,      ospfMibAltTag_none, read_create},    {"ospfIfState", (int)mApiOspfIfState, ospfMibTag_integer,      ospfMibAltTag_ifState, read_only},    {"ospfIfDesignatedRouter", (int)mApiOspfIfDesignatedRouter, ospfMibTag_ipaddress,      ospfMibAltTag_none, read_only},    {"ospfIfBackupDesignatedRouter", (int)mApiOspfIfBackupDesignatedRouter,      ospfMibAltTag_none, ospfMibTag_ipaddress, read_only},    {"ospfIfEvents", (int)mApiOspfIfEvents, ospfMibTag_counter,      ospfMibAltTag_none, read_only},    {"ospfIfAuthKey", (int)mApiOspfIfAuthKey, ospfMibTag_octetString,      ospfMibAltTag_none, read_create},    {"ospfIfStatus", (int)mApiOspfIfStatus, ospfMibTag_integer,      ospfMibAltTag_rowStatus, read_create},    {"ospfIfMulticastForwarding", (int)mApiOspfIfMulticastForwarding, ospfMibTag_integer,      ospfMibAltTag_mcastType, read_create},    {"ospfIfDemand", (int)mApiOspfIfDemand, ospfMibTag_integer,      ospfMibAltTag_trueValue, read_create},    {"ospfIfAuthType", (int)mApiOspfIfAuthType, ospfMibTag_integer,      ospfMibAltTag_authType, read_create},            /* ospfIfMetricTable */    {"ospfIfMetricIpAddress", (int)mApiOspfIfMetricIpAddress, ospfMibTag_ipaddress,      ospfMibAltTag_none, read_only},    {"ospfIfMetricAddressLessIf", (int)mApiOspfIfMetricAddressLessIf, ospfMibTag_integer,      ospfMibAltTag_none, read_only},    {"ospfIfMetricTOS", (int)mApiOspfIfMetricTOS, ospfMibTag_integer,      ospfMibAltTag_none, read_only},    {"ospfIfMetricValue", (int)mApiOspfIfMetricValue, ospfMibTag_integer,      ospfMibAltTag_none, read_create},    {"ospfIfMetricStatus", (int)mApiOspfIfMetricStatus, ospfMibTag_integer,      ospfMibAltTag_rowStatus, read_create},    /* ospfVirtIfTable */    {"ospfVirtIfAreaId", (int)mApiOspfVirtIfAreaId, ospfMibTag_ipaddress,      ospfMibAltTag_none, read_only},    {"ospfVirtIfNeighbor", (int)mApiOspfVirtIfNeighbor, ospfMibTag_ipaddress,

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久www成人免费无遮挡大片| 久久99精品久久久久久国产越南| 豆国产96在线|亚洲| 337p粉嫩大胆色噜噜噜噜亚洲| 久久99国产精品久久99| 精品久久国产老人久久综合| 国产一区二区三区国产| 国产精品欧美一区二区三区| 91在线观看高清| 一区二区久久久久久| 欧美狂野另类xxxxoooo| 美女国产一区二区| 国产日韩综合av| 色婷婷国产精品综合在线观看| 午夜久久久久久| 久久人人爽爽爽人久久久| 成人涩涩免费视频| 亚洲成人在线免费| 久久女同精品一区二区| 91麻豆精品视频| 美洲天堂一区二卡三卡四卡视频| 久久久久久久久一| 色中色一区二区| 男女男精品网站| 中文字幕制服丝袜成人av| 欧美日韩美少妇| 国产乱码精品一区二区三区av| 日韩一区中文字幕| 欧美人牲a欧美精品| 福利一区二区在线观看| 亚洲不卡av一区二区三区| www久久精品| 欧美性一二三区| 国产suv精品一区二区883| 亚洲午夜激情av| 中日韩av电影| 91精品欧美一区二区三区综合在| 大美女一区二区三区| 午夜精品久久久久久久99水蜜桃| 国产欧美精品一区二区三区四区| 欧美日韩第一区日日骚| 成人综合婷婷国产精品久久| 日韩成人精品在线| 亚洲精品水蜜桃| 国产亚洲午夜高清国产拍精品| 欧美日韩国产首页| av电影在线观看不卡| 精品亚洲成a人在线观看| 亚洲电影视频在线| 日韩毛片高清在线播放| 国产视频一区二区在线| 日韩欧美国产高清| 在线观看国产精品网站| 波多野洁衣一区| 国产美女在线精品| 免费成人美女在线观看| 亚洲超碰精品一区二区| 亚洲蜜臀av乱码久久精品蜜桃| 国产亚洲精品超碰| 日韩欧美成人一区| 51精品视频一区二区三区| 91国产免费看| 色噜噜久久综合| 97成人超碰视| 99re视频这里只有精品| 成人99免费视频| 国产精品白丝av| 国产传媒欧美日韩成人| 美女一区二区三区在线观看| 亚洲成va人在线观看| 一级做a爱片久久| 一区二区三区鲁丝不卡| 亚洲免费观看高清完整版在线观看| 中文字幕国产一区二区| 国产人成亚洲第一网站在线播放| 久久婷婷国产综合国色天香| 久久中文字幕电影| 精品国产乱码久久久久久老虎| 日韩免费看网站| 精品国产区一区| 亚洲一区二区在线观看视频| 国产精品久久久久久久岛一牛影视 | 欧美mv日韩mv| 日韩欧美亚洲国产精品字幕久久久| 欧美日韩电影一区| 日韩精品一区二区三区四区视频 | 91麻豆国产自产在线观看| 成人黄色小视频| aaa欧美大片| 欧美在线视频日韩| 91精品婷婷国产综合久久| 日韩欧美一级在线播放| 精品久久久久久久久久久久久久久| 久久亚洲二区三区| 中文字幕欧美三区| 一区二区三区中文字幕| 亚洲午夜视频在线观看| 日韩国产欧美在线观看| 久久国产人妖系列| 国产999精品久久| 99热精品国产| 欧美日韩在线一区二区| 日韩欧美一区中文| 欧美不卡在线视频| 日本一区二区三区高清不卡| 亚洲色欲色欲www| 午夜在线电影亚洲一区| 日韩av中文字幕一区二区| 国产乱一区二区| 99久久婷婷国产综合精品 | 欧美日韩一区成人| 日韩欧美综合在线| 国产精品免费视频观看| 亚洲小说欧美激情另类| 国模一区二区三区白浆| 91丨国产丨九色丨pron| 欧美一区二区免费| 中文字幕综合网| 经典三级在线一区| 在线一区二区三区做爰视频网站| 日韩一级大片在线观看| 欧美激情艳妇裸体舞| 天天操天天干天天综合网| 成人性生交大片免费看中文网站| 欧美日韩国产乱码电影| 国产欧美一区二区精品秋霞影院| 亚洲一区二区不卡免费| 国产精品影视在线观看| 欧美色图免费看| 国产女人18毛片水真多成人如厕| 性感美女极品91精品| 国产二区国产一区在线观看| 欧美福利一区二区| 中文字幕乱码亚洲精品一区| 日韩va欧美va亚洲va久久| 一本大道久久精品懂色aⅴ| 精品久久久久一区二区国产| 午夜国产精品一区| 99精品欧美一区二区三区综合在线| 日韩免费高清av| 亚洲成av人片观看| 色综合天天在线| 日本一区二区久久| 国模无码大尺度一区二区三区| 欧美视频日韩视频在线观看| 国产精品色哟哟| 麻豆91精品视频| 欧美片在线播放| 一区二区三区在线播| 国产成a人亚洲| 久久免费偷拍视频| 激情综合一区二区三区| 欧美一级高清片在线观看| 夜夜嗨av一区二区三区网页 | 99久久免费精品高清特色大片| 欧美精品一区二区三区蜜桃 | 亚洲图片你懂的| 97久久精品人人爽人人爽蜜臀| 久久综合五月天婷婷伊人| 免费成人美女在线观看.| 正在播放亚洲一区| 亚洲mv在线观看| 色av综合在线| 一区二区三区高清不卡| 91免费版在线| 亚洲欧美偷拍三级| 色婷婷综合久久久中文一区二区| 欧美激情中文字幕一区二区| 国产成a人亚洲精| 欧美激情综合网| 99综合影院在线| 亚洲少妇中出一区| 欧美做爰猛烈大尺度电影无法无天| 亚洲女同ⅹxx女同tv| 91麻豆福利精品推荐| 国产精品久久久久久亚洲伦| hitomi一区二区三区精品| 久久久www成人免费毛片麻豆| 国产九九视频一区二区三区| 国产拍揄自揄精品视频麻豆| 成人伦理片在线| 亚洲欧洲性图库| 99精品一区二区三区| 亚洲一区二区三区在线| 在线亚洲一区二区| 亚洲摸摸操操av| 欧美午夜不卡视频| 日本中文字幕一区二区视频| 日韩午夜电影av| 日本va欧美va欧美va精品| 日韩一区二区在线观看视频播放| 精品伊人久久久久7777人| 中文字幕国产一区二区| 欧美综合一区二区| 天天av天天翘天天综合网| 日韩欧美一级精品久久| 成人毛片视频在线观看| 亚洲最快最全在线视频| 日韩欧美激情一区| 99re成人精品视频|