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

  /external/iw/
mpath.c 32 char dst[20], next_hop[20], dev[20]; local
64 mac_addr_n2a(next_hop, nla_data(tb[NL80211_ATTR_MPATH_NEXT_HOP]));
66 printf("%s %s %s", dst, next_hop, dev);
136 unsigned char next_hop[ETH_ALEN]; local
148 if (strcmp("next_hop", argv[0]) != 0)
153 if (mac_addr_a2n(next_hop, argv[0])) {
164 NLA_PUT(msg, NL80211_ATTR_MPATH_NEXT_HOP, ETH_ALEN, next_hop);
171 COMMAND(mpath, new, "<destination MAC address> next_hop <next hop MAC address>",
174 COMMAND(mpath, set, "<destination MAC address> next_hop <next hop MAC address>",
mpp.c 20 char dst[20], next_hop[20], dev[20]; local
32 mac_addr_n2a(next_hop, nla_data(tb[NL80211_ATTR_MPATH_NEXT_HOP]));
34 printf("%s %s %s\n", dst, next_hop, dev);
  /external/syslinux/gpxe/src/net/
ipv6.c 184 struct in6_addr next_hop; local
202 next_hop = dest->sin6_addr;
210 next_hop = miniroute->gateway;
230 if ( next_hop.in6_u.u6_addr8[0] == 0xff ) {
233 ll_dest_buf[2] = next_hop.in6_u.u6_addr8[12];
234 ll_dest_buf[3] = next_hop.in6_u.u6_addr8[13];
235 ll_dest_buf[4] = next_hop.in6_u.u6_addr8[14];
236 ll_dest_buf[5] = next_hop.in6_u.u6_addr8[15];
239 if ( ( rc = ndp_resolve ( netdev, &next_hop, &ip6hdr->src,
241 DBG ( "No entry for %s\n", inet6_ntoa ( next_hop ) );
    [all...]
ipv4.c 311 struct in_addr next_hop; local
326 next_hop = iphdr->dest;
329 if ( ( next_hop.s_addr != INADDR_BROADCAST ) &&
330 ( ! IN_MULTICAST ( ntohl ( next_hop.s_addr ) ) ) &&
331 ( ( miniroute = ipv4_route ( &next_hop ) ) != NULL ) ) {
342 if ( ( rc = ipv4_ll_addr ( next_hop, iphdr->src, netdev,
345 inet_ntoa ( next_hop ), strerror ( rc ) );

Completed in 152 milliseconds