tag | line | file | source code |
ih | 242 | net/ipv4/igmp.c | struct igmphdr *ih; |
ih | 253 | net/ipv4/igmp.c | ih=(struct igmphdr *)skb_put(skb,sizeof(struct igmphdr)); |
ih | 254 | net/ipv4/igmp.c | ih->type=type; |
ih | 255 | net/ipv4/igmp.c | ih->code=0; |
ih | 256 | net/ipv4/igmp.c | ih->csum=0; |
ih | 257 | net/ipv4/igmp.c | ih->group=address; |
ih | 258 | net/ipv4/igmp.c | ih->csum=ip_compute_csum((void *)ih,sizeof(struct igmphdr)); /* Checksum fill */ |
ih | 434 | net/ipv4/igmp.c | struct igmphdr *ih; |
ih | 448 | net/ipv4/igmp.c | ih=(struct igmphdr *)skb->h.raw; |
ih | 468 | net/ipv4/igmp.c | if(ih->type==IGMP_HOST_MEMBERSHIP_QUERY && daddr==IGMP_ALL_HOSTS) |
ih | 469 | net/ipv4/igmp.c | igmp_heard_query(dev,ih->code); |
ih | 470 | net/ipv4/igmp.c | if(ih->type==IGMP_HOST_MEMBERSHIP_REPORT && daddr==ih->group) |
ih | 471 | net/ipv4/igmp.c | igmp_heard_report(dev,ih->group); |
ih | 472 | net/ipv4/igmp.c | if(ih->type==IGMP_HOST_NEW_MEMBERSHIP_REPORT && daddr==ih->group) |
ih | 473 | net/ipv4/igmp.c | igmp_heard_report(dev,ih->group); |