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

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

?? ospf_vs_lib.c

?? vxworks下ospf協(xié)議棧
?? C
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
        return (ERROR);        }    /* Free the structure. */    table_free(ospfVsTbl[ospfVsIndex]);    /* Let's be extra paranoid. */    ospfVsTbl[ospfVsIndex] = NULL;    semGive(ospfVsTblLock);    return (OK);    }/********************************************************************************* ospfVirtualStackIdGet - return the OSPF_VSID named in pName** This routine returns a OSPF_VSID in the pointer passed to it in pVSID if a stack* with pName is found in the Virtual Stack Table.** RETURNS: OK or ERROR if the stack named in pName was not found**/STATUS ospfVirtualStackIdGet    (    char* pName, /* Name that was used in ospfVirtualStackCreate */    OSPF_VSID* pVSID    )    {    int ospfVsIndex;    semTake(ospfVsTblLock, WAIT_FOREVER);    for (ospfVsIndex = 0; ospfVsIndex < OSPF_VSID_MAX; ospfVsIndex++)        if (!strncmp (ospfVsTbl[ospfVsIndex]->pName, pName,		      min (strlen (pName), OSPF_VS_NAME_MAX)))            break; /* Hey, we found it! */    /* Check that we did find it. */    if (ospfVsIndex == OSPF_VSID_MAX)        {        semGive(ospfVsTblLock);        return (ERROR);        }    *pVSID = ospfVsTbl[ospfVsIndex];    semGive(ospfVsTblLock);    return (OK);    }/********************************************************************************* ospfVirtualStackInfo - print out some information about an Ospf Virtual Stack** This routine takes the OSPF_VSID in ospf_vsid and prints some information on* the console about it.** RETURNS: OK or ERROR if the OSPF_VSID was somehow invalid**/void ospfVirtualStackInfo    (    OSPF_VSID ospf_vsid    )    {    int ospfVsIndex;    if (ospf_vsid == NULL)        return;    semTake(ospfVsTblLock, WAIT_FOREVER);    for (ospfVsIndex = 0; ospfVsIndex < OSPF_VSID_MAX; ospfVsIndex++)        if (ospfVsTbl[ospfVsIndex] == ospf_vsid)            break; /* Hey, we found it! */    /* Check that we did find it. */    if (ospfVsIndex == OSPF_VSID_MAX)        {        semGive(ospfVsTblLock);        return;        }    printf ("Index: %d \tName: %s\n", ospfVsIndex,           ospfVsTbl[ospfVsIndex]->pName);    semGive(ospfVsTblLock);    }/******************************************************************************** ospfVirtualStackShow - print out the list of Ospf Virtual Stacks** This routine goes through the list of Ospf Virtual Stacks and calls* ospfVirtualStackInfo on each.** RETURNS N/A**/void ospfVirtualStackShow ()    {    int ospfVsIndex;    for (ospfVsIndex = 0; ospfVsIndex < OSPF_VSID_MAX; ospfVsIndex++)        ospfVirtualStackInfo(ospfVsTbl[ospfVsIndex]);    }/************************************************************************************ ospfConfigurationTableInit - init configuration table for virtual stack** This routine initialize the configuration table for virtual stack** RETURNS: N/A*/void ospfConfigurationTableInit(CONFIGURATION_TABLE *configuration_table){	configuration_table->valid = 1;	configuration_table->function[0].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_enum_enable;	configuration_table->function[0].eptr_enable_string = NULL;	configuration_table->function[0].cptr_parameter_string = "OSPF =";	configuration_table->function[0].parameter_1 = (ULONG) offsetof (OSPF_CLASS,protocol_enabled);	configuration_table->function[0].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[0].parameter_3 = (ULONG) NULL;	configuration_table->function[1].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_default_values;	configuration_table->function[1].eptr_enable_string = NULL;	configuration_table->function[1].cptr_parameter_string = "OSPF Use Default Values =";	configuration_table->function[2].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_ip_address;	configuration_table->function[2].eptr_enable_string = NULL;	configuration_table->function[2].cptr_parameter_string = "OSPF Router ID =";	configuration_table->function[2].parameter_1 = (ULONG) offsetof (OSPF_CLASS,router_id);	configuration_table->function[2].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[2].parameter_3 = (ULONG) NULL;	configuration_table->function[3].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_enum_enable;	configuration_table->function[3].eptr_enable_string = NULL;	configuration_table->function[3].cptr_parameter_string = "OSPF Type of Service Capability =";	configuration_table->function[3].parameter_1 = (ULONG) offsetof (OSPF_CLASS,type_of_service_capability);	configuration_table->function[3].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[3].parameter_3 = (ULONG) NULL;	configuration_table->function[4].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_enum_enable;	configuration_table->function[4].eptr_enable_string = NULL;	configuration_table->function[4].cptr_parameter_string = "OSPF Autonomous System Border Router =";	configuration_table->function[4].parameter_1 = (ULONG) offsetof (OSPF_CLASS,autonomous_system_border_router);	configuration_table->function[4].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[4].parameter_3 = (ULONG) NULL;	configuration_table->function[5].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_enum_enable;	configuration_table->function[5].eptr_enable_string = NULL;	configuration_table->function[5].cptr_parameter_string = "OSPF IP Multicast =";	configuration_table->function[5].parameter_1 = (ULONG) offsetof (OSPF_CLASS,ip_multicast);	configuration_table->function[5].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[5].parameter_3 = (ULONG) NULL;	configuration_table->function[6].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_ulong_decimal_value;	configuration_table->function[6].eptr_enable_string = NULL;	configuration_table->function[6].cptr_parameter_string = "OSPF Number of Areas =";	configuration_table->function[6].parameter_1 = (ULONG) offsetof (OSPF_CLASS, number_of_areas);	configuration_table->function[6].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[6].parameter_3 = (ULONG) NULL;	configuration_table->function[7].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_variable_port_and_ip_address;	configuration_table->function[7].eptr_enable_string = NULL;	configuration_table->function[7].cptr_parameter_string = "OSPF Area ID =";	configuration_table->function[7].parameter_1 = (ULONG) offsetof (OSPF_CLASS, area[0].config.area_id);	configuration_table->function[7].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[7].parameter_3 = sizeof (OSPF_AREA_CLASS);#if defined (__RFC_2328__)	configuration_table->function[8].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_variable_port_and_ip_address;	configuration_table->function[8].eptr_enable_string = NULL;	configuration_table->function[8].cptr_parameter_string = "OSPF Area Address Range Address =";	configuration_table->function[8].parameter_1 = (ULONG) offsetof (OSPF_CLASS, area_address_range[0].config.network);	configuration_table->function[8].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[8].parameter_3 = sizeof (OSPF_AREA_ADDRESS_RANGE_CLASS);	configuration_table->function[9].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_variable_port_and_ip_address;	configuration_table->function[9].eptr_enable_string = NULL;	configuration_table->function[9].cptr_parameter_string = "OSPF Area Address Range Mask =";	configuration_table->function[9].parameter_1 = (ULONG) offsetof (OSPF_CLASS, area_address_range[0].config.mask);	configuration_table->function[9].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[9].parameter_3 = sizeof (OSPF_AREA_ADDRESS_RANGE_CLASS);	configuration_table->function[10].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_variable_port_and_enable;	configuration_table->function[10].eptr_enable_string = NULL;	configuration_table->function[10].cptr_parameter_string = "OSPF Area Address Range Advertise =";	configuration_table->function[10].parameter_1 = (ULONG) offsetof (OSPF_CLASS, area_address_range[0].config.advertise);	configuration_table->function[10].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[10].parameter_3 = sizeof (OSPF_AREA_ADDRESS_RANGE_CLASS);	configuration_table->function[11].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_variable_port_and_ulong_decimal_value;	configuration_table->function[11].eptr_enable_string = NULL;	configuration_table->function[11].cptr_parameter_string = "OSPF Area Address Range Cost =";	configuration_table->function[11].parameter_1 = (ULONG) offsetof (OSPF_CLASS, area_address_range[0].config.cost);	configuration_table->function[11].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[11].parameter_3 = sizeof (OSPF_AREA_ADDRESS_RANGE_CLASS);	configuration_table->function[12].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_variable_port_and_enable;	configuration_table->function[12].eptr_enable_string = NULL;	configuration_table->function[12].cptr_parameter_string = "OSPF Area Address Range Area ID =";	configuration_table->function[12].parameter_1 = (ULONG) offsetof (OSPF_CLASS, area_address_range[0].config.area_id);	configuration_table->function[12].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[12].parameter_3 = sizeof (OSPF_AREA_ADDRESS_RANGE_CLASS);#else /*__RFC_2328__*/	configuration_table->function[8].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_variable_port_and_ip_address;	configuration_table->function[8].eptr_enable_string = NULL;	configuration_table->function[8].cptr_parameter_string = "OSPF Area Address =";	configuration_table->function[8].parameter_1 = (ULONG) offsetof (OSPF_CLASS, area[0].config.ip_address);	configuration_table->function[8].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[8].parameter_3 = sizeof (OSPF_AREA_CLASS);	configuration_table->function[9].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_variable_port_and_ip_address;	configuration_table->function[9].eptr_enable_string = NULL;	configuration_table->function[9].cptr_parameter_string = "OSPF Area Address Mask =";	configuration_table->function[9].parameter_1 = (ULONG) offsetof (OSPF_CLASS, area[0].config.subnetmask);	configuration_table->function[9].ulptr_parameter_2 = (ULONG ) &ospf;	configuration_table->function[9].parameter_3 = sizeof (OSPF_AREA_CLASS);	configuration_table->function[10].fptr_parameter_function = (void (*) (char *cptr_start_of_configuration_string,ULONG parameter_1,ULONG ulptr_parameter_2,ULONG parameter_3))		ospf_set_variable_port_and_enable;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
尤物av一区二区| 五月婷婷综合激情| 国产成人在线观看| 亚洲精品在线电影| 久久精品免费观看| 精品免费国产二区三区| 青青草视频一区| 欧美一区二区视频网站| 日韩专区欧美专区| 欧美高清性hdvideosex| 亚洲va中文字幕| 在线播放日韩导航| 免费人成精品欧美精品| 日韩精品一区在线观看| 久久国产夜色精品鲁鲁99| 精品国产免费一区二区三区四区| 免费在线观看精品| 精品国产免费一区二区三区四区| 国产一区二区三区久久久| 久久亚洲精华国产精华液| 国产精品一区二区黑丝| 国产精品欧美极品| 99久久久精品| 91国产免费观看| 亚洲欧美一区二区三区孕妇| 色综合中文字幕| 亚洲福利国产精品| 欧美高清激情brazzers| 免费成人av资源网| www久久久久| 成人午夜电影小说| 亚洲精品一二三区| 欧美日韩成人在线| 精品一区二区三区欧美| 国产欧美日韩不卡| 色综合天天综合网天天看片| 亚洲高清久久久| 日韩欧美一区二区免费| 国产不卡视频在线观看| 亚洲色欲色欲www在线观看| 欧美优质美女网站| 裸体在线国模精品偷拍| 国产日韩欧美精品综合| 91福利国产成人精品照片| 婷婷夜色潮精品综合在线| 亚洲精品一区二区三区蜜桃下载 | 亚洲第一主播视频| 精品久久久久99| 成人精品亚洲人成在线| 一区二区三区精品在线观看| 欧美一二三区在线观看| 国产成人精品影视| 夜夜嗨av一区二区三区| 日韩无一区二区| 成人丝袜视频网| 亚洲午夜电影网| 精品奇米国产一区二区三区| 9色porny自拍视频一区二区| 午夜国产精品影院在线观看| 国产亚洲人成网站| 欧美最猛黑人xxxxx猛交| 久久国产精品99久久久久久老狼| 国产精品久久久久久久岛一牛影视| 欧美性xxxxxxxx| 国产一区不卡精品| 亚洲一区二区三区爽爽爽爽爽| 日韩欧美色电影| 色婷婷综合久久久中文一区二区| 人人爽香蕉精品| 亚洲视频一区二区在线| 日韩免费高清av| 一本在线高清不卡dvd| 美女看a上一区| 亚洲人吸女人奶水| 精品久久国产字幕高潮| 色噜噜狠狠成人网p站| 狠狠色狠狠色综合日日91app| 一区二区三区毛片| 国产日韩v精品一区二区| 51午夜精品国产| av电影在线观看不卡| 久久国产尿小便嘘嘘尿| 亚洲精品乱码久久久久久| 国产亚洲制服色| 欧美丰满美乳xxx高潮www| caoporn国产一区二区| 蜜桃精品视频在线观看| 怡红院av一区二区三区| 国产欧美日韩卡一| 欧美va日韩va| 欧美手机在线视频| 99re视频这里只有精品| 久久精品999| 偷拍自拍另类欧美| 亚洲综合视频网| 日本一区二区不卡视频| 欧美一区二区美女| 91成人在线免费观看| 成人一级视频在线观看| 精品一区二区在线播放| 日韩成人免费在线| 亚洲图片有声小说| 亚洲天堂福利av| 国产欧美日韩视频一区二区| 精品国产亚洲一区二区三区在线观看| 欧美色综合久久| 91免费国产视频网站| 国产 日韩 欧美大片| 久久国内精品视频| 蜜臀99久久精品久久久久久软件| 亚洲国产成人tv| 亚洲综合久久av| 亚洲精品国产一区二区三区四区在线 | 欧美亚洲日本国产| 色噜噜狠狠色综合中国| www.66久久| yourporn久久国产精品| 国产风韵犹存在线视精品| 国产一区二三区好的| 另类中文字幕网| 免费久久精品视频| 免费不卡在线视频| 日本欧美一区二区三区| 日韩极品在线观看| 天堂久久久久va久久久久| 一级精品视频在线观看宜春院| 日韩理论片在线| 亚洲欧洲综合另类| 亚洲蜜臀av乱码久久精品蜜桃| 亚洲欧美日韩国产中文在线| 亚洲欧洲精品天堂一级| 国产精品不卡在线观看| 国产精品超碰97尤物18| 日韩一区有码在线| 国产精品美女一区二区在线观看| 久久久午夜精品| 日本一区二区三区电影| 国产精品久久久久久久久免费桃花| 欧美激情一区二区三区蜜桃视频 | 亚洲视频香蕉人妖| 亚洲精品视频在线| 艳妇臀荡乳欲伦亚洲一区| 亚洲成人免费视| 日本视频中文字幕一区二区三区| 青青草精品视频| 国产综合一区二区| 国产成人免费在线视频| 成人精品视频.| 91免费观看视频| 在线视频欧美区| 69p69国产精品| 精品少妇一区二区三区在线播放 | 亚洲精品国久久99热| 亚洲成人激情av| 日av在线不卡| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 国产一区激情在线| 成人深夜在线观看| 色婷婷久久久综合中文字幕| 欧美三级视频在线播放| 制服丝袜亚洲精品中文字幕| 精品毛片乱码1区2区3区| 亚洲国产高清在线观看视频| 亚洲乱码日产精品bd| 天堂久久一区二区三区| 国产一区啦啦啦在线观看| 99精品欧美一区| 在线播放欧美女士性生活| 久久久久青草大香线综合精品| 综合网在线视频| 日精品一区二区| 懂色av一区二区夜夜嗨| 在线观看91视频| 精品国产精品网麻豆系列| 国产精品久久久久影院亚瑟| 亚洲综合色噜噜狠狠| 久久精品国产精品亚洲红杏| a在线播放不卡| 91麻豆精品国产自产在线| 国产调教视频一区| 亚洲一区二区欧美激情| 激情小说欧美图片| 91蝌蚪porny九色| 日韩一级大片在线观看| 国产精品不卡在线| 免费一级欧美片在线观看| 成人免费观看视频| 91精品国产综合久久福利| 亚洲国产精品成人综合色在线婷婷 | 亚洲女女做受ⅹxx高潮| 老鸭窝一区二区久久精品| 91玉足脚交白嫩脚丫在线播放| 日韩欧美自拍偷拍| 亚洲少妇30p| 国内精品伊人久久久久av一坑| 色综合色综合色综合| 26uuuu精品一区二区| 亚洲综合在线五月| 国产精品一区二区果冻传媒| 欧美日韩视频专区在线播放|