fea.xrls

来自「BCAST Implementation for NS2」· XRLS 代码 · 共 453 行 · 第 1/2 页

XRLS
453
字号
 *   *  @param gateway the address of the next-hop router toward dst. *   *  @param ifname the name of the physical interface toward dst. *   *  @param vifname the name of the virtual interface toward dst. *   *  @param metric the routing metric toward dst. *   *  @param admin_distance the administratively defined distance toward dst. *   *  @param protocol_origin the name of the protocol that originated this entry. */finder://fea/fti/0.2/add_entry4?tid:u32&dst:ipv4net&gateway:ipv4&ifname:txt&vifname:txt&metric:u32&admin_distance:u32&protocol_origin:txt/** *  Add a routing entry. *   *  @param tid the transaction ID of this transaction. *   *  @param dst the destination subnet address of the entry. *   *  @param gateway the address of the next-hop router toward dst. *   *  @param ifname the name of the physical interface toward dst. *   *  @param vifname the name of the virtual interface toward dst. *   *  @param metric the routing metric toward dst. *   *  @param admin_distance the administratively defined distance toward dst. *   *  @param protocol_origin the name of the protocol that originated this entry. */finder://fea/fti/0.2/add_entry6?tid:u32&dst:ipv6net&gateway:ipv6&ifname:txt&vifname:txt&metric:u32&admin_distance:u32&protocol_origin:txt/** *  Delete a routing entry. *   *  @param tid the transaction ID of this transaction. *   *  @param dst the destination subnet address of the entry. */finder://fea/fti/0.2/delete_entry4?tid:u32&dst:ipv4net/** *  Delete a routing entry. *   *  @param tid the transaction ID of this transaction. *   *  @param dst the destination subnet address of the entry. */finder://fea/fti/0.2/delete_entry6?tid:u32&dst:ipv6net/** *  Delete all routing entries for all address families. *   *  @param tid the transaction ID of this transaction. */finder://fea/fti/0.2/delete_all_entries?tid:u32/** *  Delete all routing entries for the IPv4 address family. *   *  @param tid the transaction ID of this transaction. */finder://fea/fti/0.2/delete_all_entries4?tid:u32/** *  Delete all routing entries for the IPv6 address family. *   *  @param tid the transaction ID of this transaction. */finder://fea/fti/0.2/delete_all_entries6?tid:u32/** *  Lookup a route for a destination host address. *   *  @param dst the destination host address to lookup. *   *  @param gateway the address of the next-hop router toward dst. *   *  @param ifname the name of the physical interface toward dst. *   *  @param vifname the name of the virtual interface toward dst. *   *  @param metric the routing metric toward dst. *   *  @param admin_distance the administratively defined distance toward dst. *   *  @param protocol_origin the name of the protocol that originated this entry. */finder://fea/fti/0.2/lookup_route4?dst:ipv4->netmask:ipv4net&gateway:ipv4&ifname:txt&vifname:txt&metric:u32&admin_distance:u32&protocol_origin:txt/** *  Lookup a route for a destination host address. *   *  @param dst the destination host address to lookup. *   *  @param gateway the address of the next-hop router toward dst. *   *  @param ifname the name of the physical interface toward dst. *   *  @param vifname the name of the virtual interface toward dst. *   *  @param metric the routing metric toward dst. *   *  @param admin_distance the administratively defined distance toward dst. *   *  @param protocol_origin the name of the protocol that originated this entry. */finder://fea/fti/0.2/lookup_route6?dst:ipv6->netmask:ipv6net&gateway:ipv6&ifname:txt&vifname:txt&metric:u32&admin_distance:u32&protocol_origin:txt/** *  Lookup a route for a destination subnet address. *   *  @param dst the destination subnet address to lookup. *   *  @param gateway the address of the next-hop router toward dst. *   *  @param ifname the name of the physical interface toward dst. *   *  @param vifname the name of the virtual interface toward dst. *   *  @param metric the routing metric toward dst. *   *  @param admin_distance the administratively defined distance toward dst. *   *  @param protocol_origin the name of the protocol that originated this entry. */finder://fea/fti/0.2/lookup_entry4?dst:ipv4net->gateway:ipv4&ifname:txt&vifname:txt&metric:u32&admin_distance:u32&protocol_origin:txt/** *  Lookup a route for a destination subnet address. *   *  @param dst the destination subnet address to lookup. *   *  @param gateway the address of the next-hop router toward dst. *   *  @param ifname the name of the physical interface toward dst. *   *  @param vifname the name of the virtual interface toward dst. *   *  @param metric the routing metric toward dst. *   *  @param admin_distance the administratively defined distance toward dst. *   *  @param protocol_origin the name of the protocol that originated this entry. */finder://fea/fti/0.2/lookup_entry6?dst:ipv6net->gateway:ipv6&ifname:txt&vifname:txt&metric:u32&admin_distance:u32&protocol_origin:txt/** *  Test if the underlying system supports IPv4. *   *  @param result true if the underlying system supports IPv4, otherwise false. */finder://fea/fti/0.2/have_ipv4->result:bool/** *  Test if the underlying system supports IPv6. *   *  @param result true if the underlying system supports IPv4, otherwise false. */finder://fea/fti/0.2/have_ipv6->result:bool/** *  Test whether the IPv4 unicast forwarding engine is enabled or disabled to *  forward packets. *   *  @param enabled if true, then the IPv4 unicast forwarding is enabled, *  otherwise is disabled. */finder://fea/fti/0.2/get_unicast_forwarding_enabled4->enabled:bool/** *  Test whether the IPv6 unicast forwarding engine is enabled or disabled to *  forward packets. *   *  @param enabled if true, then the IPv6 unicast forwarding is enabled, *  otherwise is disabled. */finder://fea/fti/0.2/get_unicast_forwarding_enabled6->enabled:bool/** *  Set the IPv4 unicast forwarding engine to enable or disable forwarding of *  packets. *   *  @param enabled if true, then enable IPv4 unicast forwarding, otherwise *  disable it. */finder://fea/fti/0.2/set_unicast_forwarding_enabled4?enabled:bool/** *  Set the IPv6 unicast forwarding engine to enable or disable forwarding of *  packets. *   *  @param enabled if true, then enable IPv6 unicast forwarding, otherwise *  disable it. */finder://fea/fti/0.2/set_unicast_forwarding_enabled6?enabled:bool/** *  Send a packet on a raw socket. */finder://fea/raw_packet/0.1/send4?src_address:ipv4&dst_address:ipv4&vif_name:txt&proto:u32&ttl:u32&tos:u32&options:binary&payload:binary/** *  Send raw packet. Checksum is computed and applied before transmission. All *  the fields within the IPv4 header must be in network order. */finder://fea/raw_packet/0.1/send_raw4?vif_name:txt&packet:binary/** *  Register to receive packets. The receiver is expected to support *  raw_socket_client/0.1 interface. */finder://fea/raw_packet/0.1/register_vif_receiver?router_name:txt&if_name:txt&vif_name:txt&proto:u32/** *  Unregister stop receiving packets. *   *  @param proto Protocol number that the receiver is interested in. */finder://fea/raw_packet/0.1/unregister_vif_receiver?router_name:txt&if_name:txt&vif_name:txt&proto:u32

⌨️ 快捷键说明

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