fea_fib_client.xif

来自「xorp源码hg」· XIF 代码 · 共 80 行

XIF
80
字号
/* $XORP: xorp/xrl/interfaces/fea_fib_client.xif,v 1.5 2007/01/13 04:20:04 pavlin Exp $ *//* * FEA Forwarding Information Base Client XRL interface. */interface fea_fib_client/0.1 {	/**	 * Notification of a route being added.	 *	 * @param network the network address prefix of the route to add.	 * @param nexthop the address of the next-hop router toward the	 * destination.	 * @param ifname the name of the physical interface toward the	 * destination.	 * @param vifname the name of the virtual interface toward the	 * destination.	 * @param metric the routing metric toward the destination.	 * @param admin_distance the administratively defined distance	 * toward the destination.	 * @param protocol_origin the name of the protocol that originated	 * this route.	 * @param xorp_route true if this route was installed by XORP.	 */	add_route4	? network:ipv4net & nexthop:ipv4 & ifname:txt	\			& vifname:txt & metric:u32 & admin_distance:u32	\			& protocol_origin:txt & xorp_route:bool	add_route6	? network:ipv6net & nexthop:ipv6 & ifname:txt	\			& vifname:txt & metric:u32 & admin_distance:u32	\			& protocol_origin:txt & xorp_route:bool	/**	 * Notification of a route being replaced.	 *	 * @param network the network address prefix of the route to replace.	 * @param nexthop the address of the next-hop router toward the	 * destination.	 * @param ifname the name of the physical interface toward the	 * destination.	 * @param vifname the name of the virtual interface toward the	 * destination.	 * @param metric the routing metric toward the destination.	 * @param admin_distance the administratively defined distance	 * toward the destination.	 * @param protocol_origin the name of the protocol that originated	 * this route.	 * @param xorp_route true if this route was installed by XORP.	 */	replace_route4	? network:ipv4net & nexthop:ipv4 & ifname:txt	\			& vifname:txt & metric:u32 & admin_distance:u32	\			& protocol_origin:txt & xorp_route:bool	replace_route6	? network:ipv6net & nexthop:ipv6 & ifname:txt	\			& vifname:txt & metric:u32 & admin_distance:u32	\			& protocol_origin:txt & xorp_route:bool	/**	 * Notification of a route being deleted.	 *	 * @param network the network address prefix of the route to delete.	 * @param ifname the name of the physical interface toward the	 * destination.	 * @param vifname the name of the virtual interface toward the	 * destination.	 */	delete_route4	? network:ipv4net & ifname:txt & vifname: txt	delete_route6	? network:ipv6net & ifname:txt & vifname: txt	/**	 * Notification of a route resolution request. This is issued	 * when the forwarding plane cannot find any route to a given	 * destination, even a candidate default.	 *	 * @param network the address of the destination.	 * forwarding plane requires a route to be resolved by the	 * upper layer.	 */	resolve_route4	? network:ipv4net	resolve_route6	? network:ipv6net}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?