taglinefilesource code
ipprot222net/tcp/icmp.cstruct ip_protocol *ipprot;
ipprot236net/tcp/icmp.cfor (ipprot = (struct ip_protocol *)ip_protos[hash];
ipprot237net/tcp/icmp.cipprot != NULL; )
ipprot240net/tcp/icmp.cnextip = (struct ip_protocol *)ipprot->next;
ipprot242net/tcp/icmp.cif (iph->protocol == ipprot->protocol && ipprot->err_handler)
ipprot243net/tcp/icmp.cipprot->err_handler (err, (unsigned char *)(icmph+1),
ipprot244net/tcp/icmp.ciph->daddr, iph->saddr, ipprot);
ipprot245net/tcp/icmp.cipprot = nextip;
ipprot247net/tcp/ip.cprint_ipprot (struct ip_protocol *ipprot)
ipprot250net/tcp/ip.cipprot->handler, ipprot->protocol, ipprot->copy));
ipprot816net/tcp/ip.cstruct ip_protocol *ipprot;
ipprot859net/tcp/ip.cfor (ipprot = (struct ip_protocol *)ip_protos[hash];
ipprot860net/tcp/ip.cipprot != NULL;
ipprot861net/tcp/ip.cipprot=(struct ip_protocol *)ipprot->next)
ipprot864net/tcp/ip.cif (ipprot->protocol != iph->protocol) continue;
ipprot865net/tcp/ip.cPRINTK (("Using protocol = %X:\n", ipprot));
ipprot866net/tcp/ip.cprint_ipprot (ipprot);
ipprot873net/tcp/ip.cif (ipprot->copy)
ipprot889net/tcp/ip.cipprot->handler (skb2, dev, &opt, iph->daddr,
ipprot891net/tcp/ip.ciph->saddr, 0, ipprot);
ipprot143net/tcp/ip.hunsigned long saddr, struct ip_protocol *ipprot);