Lines Matching refs:netif
176 rfc7668_set_local_addr_eui64(struct netif *netif, const u8_t *local_addr, size_t local_addr_len) in rfc7668_set_local_addr_eui64() argument
179 LWIP_UNUSED_ARG(netif); in rfc7668_set_local_addr_eui64()
187 rfc7668_set_local_addr_mac48(struct netif *netif, const u8_t *local_addr, size_t local_addr_len, in… in rfc7668_set_local_addr_mac48() argument
190 LWIP_UNUSED_ARG(netif); in rfc7668_set_local_addr_mac48()
198 rfc7668_set_peer_addr_eui64(struct netif *netif, const u8_t *peer_addr, size_t peer_addr_len) in rfc7668_set_peer_addr_eui64() argument
201 LWIP_UNUSED_ARG(netif); in rfc7668_set_peer_addr_eui64()
209 rfc7668_set_peer_addr_mac48(struct netif *netif, const u8_t *peer_addr, size_t peer_addr_len, int i… in rfc7668_set_peer_addr_mac48() argument
212 LWIP_UNUSED_ARG(netif); in rfc7668_set_peer_addr_mac48()
230 rfc7668_compress(struct netif *netif, struct pbuf *p) in rfc7668_compress() argument
239 LWIP_ASSERT("lowpan6_frag: netif->linkoutput not set", netif->linkoutput != NULL); in rfc7668_compress()
248 MIB2_STATS_NETIF_INC(netif, ifoutdiscards); in rfc7668_compress()
256 err = lowpan6_compress_headers(netif, (u8_t *)p->payload, p->len, buffer, p_frag->len, in rfc7668_compress()
259 MIB2_STATS_NETIF_INC(netif, ifoutdiscards); in rfc7668_compress()
275 MIB2_STATS_NETIF_ADD(netif, ifoutoctets, p_frag->tot_len); in rfc7668_compress()
277 err = netif->linkoutput(netif, p_frag); in rfc7668_compress()
328 rfc7668_output(struct netif *netif, struct pbuf *q, const ip6_addr_t *ip6addr) in rfc7668_output() argument
333 return rfc7668_compress(netif, q); in rfc7668_output()
347 rfc7668_input(struct pbuf * p, struct netif *netif) in rfc7668_input() argument
351 MIB2_STATS_NETIF_ADD(netif, ifinoctets, p->tot_len); in rfc7668_input()
368 MIB2_STATS_NETIF_INC(netif, ifindiscards); in rfc7668_input()
374 MIB2_STATS_NETIF_INC(netif, ifindiscards); in rfc7668_input()
379 MIB2_STATS_NETIF_INC(netif, ifinucastpkts); in rfc7668_input()
395 return ip6_input(p, netif); in rfc7668_input()
410 rfc7668_if_init(struct netif *netif) in rfc7668_if_init() argument
412 netif->name[0] = 'b'; in rfc7668_if_init()
413 netif->name[1] = 't'; in rfc7668_if_init()
415 netif->output_ip6 = rfc7668_output; in rfc7668_if_init()
417 MIB2_INIT_NETIF(netif, snmp_ifType_other, 0); in rfc7668_if_init()
420 netif->mtu = 1280; in rfc7668_if_init()
423 netif->flags = 0; in rfc7668_if_init()
440 tcpip_rfc7668_input(struct pbuf *p, struct netif *inp) in tcpip_rfc7668_input()