HomeSort by relevance Sort by last modified time
    Searched refs:nexthop (Results 1 - 9 of 9) sorted by null

  /system/netd/server/
RouteController.h 69 // |nexthop| can be NULL (to indicate a directly-connected route), "unreachable" (to indicate a
71 static int addRoute(const char* interface, const char* destination, const char* nexthop,
73 static int removeRoute(const char* interface, const char* destination, const char* nexthop,
NetworkController.h 77 // |nexthop| can be NULL (to indicate a directly-connected route), "unreachable" (to indicate a
83 const char* nexthop, bool legacy, uid_t uid) WARN_UNUSED_RESULT;
85 const char* nexthop, bool legacy, uid_t uid) WARN_UNUSED_RESULT;
99 const char* nexthop, bool add, bool legacy, uid_t uid) WARN_UNUSED_RESULT;
RouteController.cpp 336 const char* destination, const char* nexthop) {
363 if (nexthop && !strcmp(nexthop, "unreachable")) {
366 // the table number. But it's an error to specify an interface ("dev ...") or a nexthop for
369 nexthop = NULL;
370 } else if (nexthop && !strcmp(nexthop, "throw")) {
373 nexthop = NULL;
384 // If a nexthop was specified, parse it as the same family as the prefix.
385 if (nexthop && inet_pton(family, nexthop, rawNexthop) <= 0)
    [all...]
NetworkController.cpp 439 const char* nexthop, bool legacy, uid_t uid) {
440 return modifyRoute(netId, interface, destination, nexthop, true, legacy, uid);
444 const char* nexthop, bool legacy, uid_t uid) {
445 return modifyRoute(netId, interface, destination, nexthop, false, legacy, uid);
524 const char* nexthop, bool add, bool legacy, uid_t uid) {
552 return add ? RouteController::addRoute(interface, destination, nexthop, tableType) :
553 RouteController::removeRoute(interface, destination, nexthop, tableType);
CommandListener.cpp 1433 const char* nexthop = argc > nextArg ? argv[nextArg] : NULL; local
    [all...]
  /external/tcpdump/
print-eigrp.c 128 u_int8_t nexthop[4]; member in struct:eigrp_tlv_ip_int_t
141 u_int8_t nexthop[4]; member in struct:eigrp_tlv_ip_ext_t
167 u_int8_t nexthop[4]; member in struct:eigrp_tlv_at_int_t
180 u_int8_t nexthop[4]; member in struct:eigrp_tlv_at_ext_t
336 printf("\n\t IPv4 prefix: %15s/%u, nexthop: ",
339 if (EXTRACT_32BITS(&tlv_ptr.eigrp_tlv_ip_int->nexthop) == 0)
342 printf("%s",ipaddr_string(&tlv_ptr.eigrp_tlv_ip_int->nexthop));
365 printf("\n\t IPv4 prefix: %15s/%u, nexthop: ",
368 if (EXTRACT_32BITS(&tlv_ptr.eigrp_tlv_ip_ext->nexthop) == 0)
371 printf("%s",ipaddr_string(&tlv_ptr.eigrp_tlv_ip_ext->nexthop));
    [all...]
  /external/libnl/include/netlink/route/
route.h 19 #include <netlink/route/nexthop.h>
  /external/iproute2/doc/
ip-cref.tex     [all...]
  /external/libnl/lib/route/
route_obj.c 41 #include <netlink/route/nexthop.h>
811 * 2) At least one nexthop not directly connected -> universe scope
826 * Use scope uiniverse if there is at least one nexthop which
1043 * we add it as regular nexthop to maintain backwards
1047 /* Kernel supports new style nexthop configuration,
1048 * verify that it is a duplicate and discard nexthop. */

Completed in 614 milliseconds