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

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

?? ospf_mib_utilities.c

?? vxworks下ospf協議棧
?? 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,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国内精品写真在线观看| 精品美女被调教视频大全网站| 欧美日韩一区二区三区四区五区| 在线综合视频播放| 国产精品三级视频| 精品一区二区三区免费毛片爱 | 91成人免费在线| 久久中文字幕电影| 奇米影视一区二区三区| 色嗨嗨av一区二区三区| 中文字幕不卡在线| 国产精品一区三区| 日韩一级黄色大片| 水野朝阳av一区二区三区| 91一区一区三区| 亚洲欧洲成人精品av97| 国内精品免费**视频| 91精品麻豆日日躁夜夜躁| 亚洲成av人片在线观看无码| 91成人免费电影| 亚洲在线观看免费| 欧美日韩一区二区三区视频| 捆绑紧缚一区二区三区视频 | 中文字幕在线一区二区三区| 韩国成人精品a∨在线观看| 91精品国产欧美一区二区18| 五月天亚洲精品| 欧美日韩一区高清| 日韩高清中文字幕一区| 欧美一区二区美女| 蜜桃av一区二区三区电影| 91麻豆精品国产91久久久久| 亚洲bt欧美bt精品777| 在线播放国产精品二区一二区四区 | 久久久天堂av| 国产福利不卡视频| 国产三级一区二区| 国产成人精品一区二区三区网站观看| 日韩欧美一级特黄在线播放| 麻豆成人在线观看| 国产视频不卡一区| caoporn国产一区二区| 亚洲老司机在线| 欧美午夜精品久久久| 日韩av高清在线观看| 日韩欧美中文一区二区| 激情文学综合插| 国产精品少妇自拍| 色系网站成人免费| 日韩av中文字幕一区二区三区| 精品欧美一区二区三区精品久久| 国产专区欧美精品| 亚洲婷婷综合久久一本伊一区 | 国产精品一区二区不卡| 国产精品美女久久久久久久网站| 91免费观看在线| 五月天激情综合网| 久久伊99综合婷婷久久伊| 成人av资源站| 日日夜夜精品免费视频| 国产精品电影院| 欧美色图免费看| 国产一区在线看| 亚洲乱码中文字幕综合| 宅男在线国产精品| a级高清视频欧美日韩| 日韩高清欧美激情| 国产精品成人网| 日韩一区二区免费高清| 91免费观看国产| 激情欧美一区二区| 婷婷中文字幕综合| 国产无遮挡一区二区三区毛片日本| 在线视频欧美区| 国产精品小仙女| 日本网站在线观看一区二区三区| 亚洲国产精品成人综合色在线婷婷| 欧美影视一区二区三区| 福利电影一区二区| 日本一道高清亚洲日美韩| 亚洲丝袜自拍清纯另类| 亚洲精品在线观看视频| 欧美酷刑日本凌虐凌虐| 99视频在线观看一区三区| 国产乱淫av一区二区三区| 婷婷久久综合九色综合绿巨人 | 亚洲一区国产视频| 中文字幕精品一区| 欧美xingq一区二区| 欧美日韩精品系列| 色婷婷激情综合| 波多野结衣一区二区三区| 国产精品正在播放| 99精品视频在线观看| 国产一区在线观看麻豆| 免费看日韩精品| 日日摸夜夜添夜夜添精品视频| 亚洲精品va在线观看| 中文字幕一区二区日韩精品绯色| 久久亚洲精品国产精品紫薇| 91精品国产一区二区三区蜜臀 | 日韩欧美一二三四区| 欧美日韩一区成人| 在线精品视频免费播放| av色综合久久天堂av综合| 成人黄色av电影| 东方aⅴ免费观看久久av| 国产成人免费av在线| 国产精品中文字幕一区二区三区| 久久99久久久久久久久久久| 另类综合日韩欧美亚洲| 美女视频一区在线观看| 美腿丝袜亚洲色图| 卡一卡二国产精品| 国内欧美视频一区二区| 国产曰批免费观看久久久| 国产一区二区三区电影在线观看 | 色婷婷综合久色| 色综合久久综合网97色综合| 日本久久精品电影| 色视频欧美一区二区三区| 欧美性猛交xxxx乱大交退制版| 在线观看91精品国产入口| 91成人网在线| 欧美一区二区三区四区五区| 欧美不卡在线视频| 国产午夜一区二区三区| 欧美极品美女视频| 一区二区在线免费观看| 亚洲不卡一区二区三区| 精品一区二区三区香蕉蜜桃| 丰满少妇在线播放bd日韩电影| 色域天天综合网| 在线成人av网站| 国产偷国产偷精品高清尤物| 亚洲乱码中文字幕综合| 日韩av中文在线观看| 国产mv日韩mv欧美| 欧美主播一区二区三区美女| 欧美一级爆毛片| 中文字幕在线一区免费| 日日欢夜夜爽一区| 国产黄色91视频| 欧美日韩在线三区| 久久蜜桃av一区精品变态类天堂| 亚洲欧美日韩国产综合在线| 日本不卡高清视频| eeuss国产一区二区三区| 欧美精品欧美精品系列| 日本一区二区视频在线观看| 亚洲国产人成综合网站| 国产成人在线视频网站| 精品污污网站免费看| 久久久久久久久久久久电影| 亚洲综合在线视频| 国产精品一级黄| 欧美日韩在线综合| 国产精品久久久久影院色老大| 午夜久久久久久| 成a人片亚洲日本久久| 欧美成人一区二区三区在线观看| 亚洲黄色小视频| 国产91清纯白嫩初高中在线观看| 欧美日韩日日摸| 日韩一区中文字幕| 国产美女视频91| 日韩精品中文字幕在线不卡尤物| 亚洲视频在线观看三级| 国产电影一区在线| 91精品麻豆日日躁夜夜躁| 亚洲精品中文在线影院| 国产91丝袜在线观看| 日韩一区二区影院| 亚洲.国产.中文慕字在线| 99视频在线观看一区三区| 久久婷婷综合激情| 蜜桃传媒麻豆第一区在线观看| 日韩丝袜情趣美女图片| 亚洲一区二区三区四区在线免费观看 | 99国产精品久| 中文无字幕一区二区三区| 美女诱惑一区二区| 91精品欧美综合在线观看最新| 亚洲欧美国产毛片在线| caoporm超碰国产精品| 中文字幕第一区二区| 韩国一区二区在线观看| 日韩欧美视频一区| 久久精品国产**网站演员| 欧美区视频在线观看| 亚洲成av人片一区二区梦乃| 日本高清不卡一区| 亚洲色图.com| 一本色道久久综合亚洲aⅴ蜜桃 | 丁香五精品蜜臀久久久久99网站| 日韩精品一区二区三区在线观看| 日本不卡在线视频| 欧美一级生活片| 奇米色777欧美一区二区| 在线不卡免费av|