Lines Matching refs:ih
729 struct igmphdr *ih; in igmp_send_report() local
786 ih = skb_put(skb, sizeof(struct igmphdr)); in igmp_send_report()
787 ih->type = type; in igmp_send_report()
788 ih->code = 0; in igmp_send_report()
789 ih->csum = 0; in igmp_send_report()
790 ih->group = group; in igmp_send_report()
791 ih->csum = ip_compute_csum((void *)ih, sizeof(struct igmphdr)); in igmp_send_report()
936 struct igmphdr *ih = igmp_hdr(skb); in igmp_heard_query() local
939 __be32 group = ih->group; in igmp_heard_query()
946 if (ih->code == 0) { in igmp_heard_query()
956 max_delay = ih->code*(HZ/IGMP_TIMER_SCALE); in igmp_heard_query()
1064 struct igmphdr *ih; in igmp_rcv() local
1086 ih = igmp_hdr(skb); in igmp_rcv()
1087 switch (ih->type) { in igmp_rcv()
1099 dropped = igmp_heard_report(in_dev, ih->group); in igmp_rcv()