Lines Matching refs:inp
199 * @param inp the netif on which this packet was received
202 ip_forward(struct pbuf *p, struct ip_hdr *iphdr, struct netif *inp)
232 if (netif == inp) {
300 * @param inp the netif on which this packet was received
305 ip_input(struct pbuf *p, struct netif *inp)
331 if (LWIP_HOOK_IP4_INPUT(p, inp)) {
390 if ((inp->flags & NETIF_FLAG_IGMP) && (igmp_lookfor_group(inp, ¤t_iphdr_dest))) {
391 netif = inp;
398 /* start trying with inp. if that's not acceptable, start walking the
402 netif = inp;
439 if (netif == inp) {
463 netif = inp;
475 { if ((ip_addr_isbroadcast(¤t_iphdr_src, inp)) ||
494 if (!ip_addr_isbroadcast(¤t_iphdr_dest, inp)) {
496 ip_forward(p, iphdr, inp);
553 current_netif = inp;
558 if (raw_input(p, inp) == 0)
568 udp_input(p, inp);
574 tcp_input(p, inp);
580 icmp_input(p, inp);
585 igmp_input(p, inp, ¤t_iphdr_dest);
591 if (!ip_addr_isbroadcast(¤t_iphdr_dest, inp) &&