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

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

?? mld6igmp_node.hh

?? MLDv2 support igmpv3 lite
?? HH
?? 第 1 頁 / 共 3 頁
字號:
// -*- c-basic-offset: 4; tab-width: 8; indent-tabs-mode: t -*-// Copyright (c) 2001-2008 XORP, Inc.//// Permission is hereby granted, free of charge, to any person obtaining a// copy of this software and associated documentation files (the "Software")// to deal in the Software without restriction, subject to the conditions// listed in the XORP LICENSE file. These conditions include: you must// preserve this copyright notice, and you cannot mention the copyright// holders in advertising related to the Software without their permission.// The Software is provided WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED. This// notice is a summary of the XORP LICENSE file; the license in that file is// legally binding.// $XORP: xorp/contrib/mld6igmp_lite/mld6igmp_node.hh,v 1.2 2008/07/23 05:09:49 pavlin Exp $#ifndef __MLD6IGMP_MLD6IGMP_NODE_HH__#define __MLD6IGMP_MLD6IGMP_NODE_HH__//// IGMP and MLD node definition.//#include <vector>#include "libxorp/vif.hh"#include "libproto/proto_node.hh"#include "libfeaclient/ifmgr_xrl_mirror.hh"#include "mrt/buffer.h"#include "mrt/multicast_defs.h"//// Constants definitions////// Structures/classes, typedefs and macros//class EventLoop;class IPvX;class IPvXNet;class Mld6igmpVif;/** * @short The MLD/IGMP node class. *  * There should be one node per MLD or IGMP instance. There should be * one instance per address family. */class Mld6igmpNode : public ProtoNode<Mld6igmpVif>,		     public IfMgrHintObserver,		     public ServiceChangeObserverBase {public:    /**     * Constructor for a given address family, module ID, and event loop.     *      * @param family the address family (AF_INET or AF_INET6 for     * IPv4 and IPv6 respectively).     * @param module_id the module ID (@ref xorp_module_id). Should be     * equal to XORP_MODULE_MLD6IGMP.     * @param eventloop the event loop to use.     */    Mld6igmpNode(int family, xorp_module_id module_id, EventLoop& eventloop);        /**     * Destructor     */    virtual ~Mld6igmpNode();        /**     * Start the node operation.     *      * Start the MLD or IGMP protocol.     * After the startup operations are completed,     * @ref Mld6igmpNode::final_start() is called internally     * to complete the job.     *      * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		start();        /**     * Stop the node operation.     *      * Gracefully stop the MLD or IGMP protocol.     * After the shutdown operations are completed,     * @ref Mld6igmpNode::final_stop() is called internally     * to complete the job.     *      * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		stop();    /**     * Completely start the node operation.     *      * This method should be called internally after @ref Mld6igmpNode::start()     * to complete the job.     *      * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		final_start();    /**     * Completely stop the node operation.     *      * This method should be called internally after @ref Mld6igmpNode::stop()     * to complete the job.     *      * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		final_stop();        /**     * Enable node operation.     *      * If an unit is not enabled, it cannot be start, or pending-start.     */    void	enable();        /**     * Disable node operation.     *      * If an unit is disabled, it cannot be start or pending-start.     * If the unit was runnning, it will be stop first.     */    void	disable();    /**     * Get the IP protocol number.     *     * @return the IP protocol number.     */    uint8_t	ip_protocol_number() const;    /**     * Install a new MLD/IGMP vif.     *      * @param vif vif information about the new Mld6igmpVif to install.     * @param error_msg the error message (if error).     * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		add_vif(const Vif& vif, string& error_msg);        /**     * Install a new MLD/IGMP vif.     *      * @param vif_name the name of the new vif.     * @param vif_index the vif index of the new vif.     * @param error_msg the error message (if error).     * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		add_vif(const string& vif_name, uint32_t vif_index,			string& error_msg);        /**     * Delete an existing MLD/IGMP vif.     *      * @param vif_name the name of the vif to delete.     * @param error_msg the error message (if error).     * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		delete_vif(const string& vif_name, string& error_msg);        /**     * Set flags to a vif.     *      * @param vif_name the name of the vif.     * @param is_pim_register true if this is a PIM Register vif.     * @param is_p2p true if this is a point-to-point vif.     * @param is_loopback true if this is a loopback interface.     * @param is_multicast true if the vif is multicast-capable.     * @param is_broadcast true if the vif is broadcast-capable.     * @param is_up true if the vif is UP and running.     * @param mtu the MTU of the vif.     * @param error_msg the error message (if error).     * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		set_vif_flags(const string& vif_name,			      bool is_pim_register, bool is_p2p,			      bool is_loopback, bool is_multicast,			      bool is_broadcast, bool is_up, uint32_t mtu,			      string& error_msg);        /**     * Add an address to a vif.     *      * @param vif_name the name of the vif.     * @param addr the unicast address to add.     * @param subnet_addr the subnet address to add.     * @param broadcast_addr the broadcast address (when applicable).     * @param peer_addr the peer address (when applicable).     * @param error_msg the error message (if error).     * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		add_vif_addr(const string& vif_name,			     const IPvX& addr,			     const IPvXNet& subnet_addr,			     const IPvX& broadcast_addr,			     const IPvX& peer_addr,			     string& error_msg);        /**     * Delete an address from a vif.     *      * @param vif_name the name of the vif.     * @param addr the unicast address to delete.     * @param error_msg the error message (if error).     * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		delete_vif_addr(const string& vif_name,				const IPvX& addr,				string& error_msg);        /**     * Enable an existing MLD6IGMP vif.     *      * @param vif_name the name of the vif to enable.     * @param error_msg the error message (if error).     * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		enable_vif(const string& vif_name, string& error_msg);    /**     * Disable an existing MLD6IGMP vif.     *      * @param vif_name the name of the vif to disable.     * @param error_msg the error message (if error).     * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		disable_vif(const string& vif_name, string& error_msg);    /**     * Start an existing MLD6IGMP vif.     *      * @param vif_name the name of the vif to start.     * @param error_msg the error message (if error).     * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		start_vif(const string& vif_name, string& error_msg);        /**     * Stop an existing MLD6IGMP vif.     *      * @param vif_name the name of the vif to start.     * @param error_msg the error message (if error).     * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		stop_vif(const string& vif_name, string& error_msg);        /**     * Start MLD/IGMP on all enabled interfaces.     *      * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		start_all_vifs();        /**     * Stop MLD/IGMP on all interfaces it was running on.     *      * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		stop_all_vifs();        /**     * Enable MLD/IGMP on all interfaces.     *      * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		enable_all_vifs();        /**     * Disable MLD/IGMP on all interfaces.     *      * @return XORP_OK on success, otherwise XORP_ERROR.     */    int		disable_all_vifs();        /**     * Delete all MLD/IGMP vifs.     */    void	delete_all_vifs();    /**     * A method called when a vif has completed its shutdown.     *      * @param vif_name the name of the vif that has completed its shutdown.     */    void	vif_shutdown_completed(const string& vif_name);    /**     * Receive a protocol packet.     *     * @param if_name the interface name the packet arrived on.     * @param vif_name the vif name the packet arrived on.     * @param src_address the IP source address.     * @param dst_address the IP destination address.     * @param ip_protocol the IP protocol number.     * @param ip_ttl the IP TTL (hop-limit). If it has a negative value, then     * the received value is unknown.     * @param ip_tos the Type of Service (Diffserv/ECN bits for IPv4). If it     * has a negative value, then the received value is unknown.     * @param ip_router_alert if true, the IP Router Alert option was included     * in the IP packet.     * @param ip_internet_control if true, then this is IP control traffic.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区二区福利| 91在线视频在线| 不卡一区二区中文字幕| 欧美性视频一区二区三区| 久久综合五月天婷婷伊人| 综合久久综合久久| 国内成人自拍视频| 欧美日韩视频第一区| 国产精品丝袜91| 久久精品99国产精品日本| 欧亚一区二区三区| 一区精品在线播放| 国产乱码一区二区三区| 日韩西西人体444www| 尤物在线观看一区| 成人免费毛片aaaaa**| 日韩欧美区一区二| 日本人妖一区二区| 欧美日韩一区二区三区在线 | 一区二区视频在线| 国产福利91精品一区二区三区| 欧美高清视频在线高清观看mv色露露十八 | 欧美激情一区在线| 国产精品一区二区久激情瑜伽| 欧美一区中文字幕| 首页综合国产亚洲丝袜| 在线观看日韩精品| 一区二区三区四区精品在线视频 | 激情综合五月婷婷| 欧美一区二区精美| 久久精品国产精品亚洲精品| 欧美一区二区三区色| 青青草91视频| 欧美一区二区大片| 国产在线视视频有精品| 亚洲精品一区二区三区蜜桃下载| 久久国产精品一区二区| 欧美精品一区二区在线观看| 久久精品999| 久久综合国产精品| 国产老女人精品毛片久久| 国产三级欧美三级| www.在线欧美| 亚洲激情校园春色| 欧美日韩国产综合久久| 日本中文字幕一区二区视频| 日韩久久久精品| 国产69精品一区二区亚洲孕妇 | 99re热视频精品| 亚洲精品日韩一| 欧美精品色综合| 经典一区二区三区| 久久久久综合网| 色综合 综合色| 性感美女久久精品| 久久综合狠狠综合久久激情| www.亚洲人| 天涯成人国产亚洲精品一区av| 欧美一级午夜免费电影| 国产成人丝袜美腿| 伊人婷婷欧美激情| 日韩视频免费观看高清完整版在线观看| 久久99久久99| 一区二区三区久久| 日韩一二三区不卡| 成人av在线看| 丝瓜av网站精品一区二区| 久久嫩草精品久久久精品一| 色婷婷一区二区| 久久99热这里只有精品| 中文字幕一区二区在线播放| 777亚洲妇女| 成人av手机在线观看| 日韩中文字幕麻豆| 中文字幕亚洲区| 日韩一区二区中文字幕| 91性感美女视频| 毛片av一区二区| 亚洲男女一区二区三区| 精品精品国产高清a毛片牛牛| 一本大道久久a久久综合| 久久国产精品色| 亚洲一区二区不卡免费| 国产午夜精品一区二区三区视频 | 久久精品久久综合| 亚洲激情网站免费观看| 国产日韩精品久久久| 4438成人网| 在线亚洲+欧美+日本专区| 国产福利视频一区二区三区| 午夜视频一区在线观看| 1024亚洲合集| 国产日产欧产精品推荐色 | 亚洲免费资源在线播放| 欧美精品一区二区精品网| 在线视频一区二区三| 成人蜜臀av电影| 国产精品综合在线视频| 老司机精品视频一区二区三区| 一区二区三区欧美视频| 国产精品夫妻自拍| 日本一区二区三区电影| 精品国产乱码久久久久久浪潮 | 亚洲国产精品成人久久综合一区| 日韩女优电影在线观看| 这里只有精品电影| 91.xcao| 欧美日韩一区二区三区在线看| 色狠狠一区二区| 91浏览器在线视频| 色综合久久综合中文综合网| eeuss国产一区二区三区| 国产99一区视频免费| 国产精品一区一区三区| 国产精品18久久久| 国产福利电影一区二区三区| 国产成a人无v码亚洲福利| 国产精品一卡二卡| 成人蜜臀av电影| 不卡视频一二三| 色综合久久天天综合网| 色综合久久88色综合天天免费| 91在线精品秘密一区二区| 99久久99精品久久久久久| 91免费视频网址| 欧美性猛交xxxx乱大交退制版| 欧美性受xxxx| 日韩一级成人av| 国产日产欧美精品一区二区三区| 国产精品午夜春色av| 亚洲色图欧洲色图| 亚洲一区二区欧美日韩 | 精品电影一区二区| 久久蜜桃香蕉精品一区二区三区| 久久久99久久| 亚洲欧美国产77777| 亚洲一区二区三区四区中文字幕| 香蕉加勒比综合久久| 久久99精品久久久久婷婷| 国产一区二区三区香蕉| 成人黄色免费短视频| 色94色欧美sute亚洲线路一久| 欧美片网站yy| 久久久久久久综合日本| 亚洲欧美日韩久久| 奇米色777欧美一区二区| 国产精品一区二区在线看| 一本到不卡精品视频在线观看| 欧美一级生活片| 国产精品丝袜一区| 日本中文字幕一区| 99久久精品免费观看| 欧美美女直播网站| 国产嫩草影院久久久久| 亚洲成av人片www| 成人性视频网站| 欧美日本国产视频| 国产精品福利一区二区三区| 日韩电影免费一区| 成人av在线一区二区三区| 欧美一区二区三区性视频| 国产精品视频看| 青青草伊人久久| 色狠狠一区二区三区香蕉| 久久久亚洲高清| 日韩国产精品久久久| 成人国产亚洲欧美成人综合网| 日韩一区和二区| 一区二区三区在线观看欧美| 久久精品国产一区二区三 | 一区二区三区四区激情| 国产99久久久久| 欧美一区二区美女| 亚洲人成在线播放网站岛国 | 日本美女一区二区三区视频| 不卡电影免费在线播放一区| 日韩精品一区二区在线| 亚洲国产视频网站| 99精品视频一区二区| 精品国产精品网麻豆系列| 天天操天天色综合| 91精品1区2区| 亚洲人成7777| 99riav一区二区三区| 国产日韩高清在线| 国产电影一区在线| www国产精品av| 久久国产精品区| 日韩美女在线视频| 久久激情五月婷婷| 欧美一级夜夜爽| 蜜桃av噜噜一区二区三区小说| 欧美日韩一区二区三区四区五区 | 美女在线观看视频一区二区| 在线观看免费一区| 亚洲一区二区视频在线观看| 色婷婷国产精品综合在线观看| 中文字幕日本不卡| 色偷偷成人一区二区三区91 | 久久99精品久久只有精品|