| tag | line | file | source code |
| ipprot | 222 | net/tcp/icmp.c | struct ip_protocol *ipprot; |
| ipprot | 236 | net/tcp/icmp.c | for (ipprot = (struct ip_protocol *)ip_protos[hash]; |
| ipprot | 237 | net/tcp/icmp.c | ipprot != NULL; ) |
| ipprot | 240 | net/tcp/icmp.c | nextip = (struct ip_protocol *)ipprot->next; |
| ipprot | 242 | net/tcp/icmp.c | if (iph->protocol == ipprot->protocol && ipprot->err_handler) |
| ipprot | 243 | net/tcp/icmp.c | ipprot->err_handler (err, (unsigned char *)(icmph+1), |
| ipprot | 244 | net/tcp/icmp.c | iph->daddr, iph->saddr, ipprot); |
| ipprot | 245 | net/tcp/icmp.c | ipprot = nextip; |
| ipprot | 247 | net/tcp/ip.c | print_ipprot (struct ip_protocol *ipprot) |
| ipprot | 250 | net/tcp/ip.c | ipprot->handler, ipprot->protocol, ipprot->copy)); |
| ipprot | 816 | net/tcp/ip.c | struct ip_protocol *ipprot; |
| ipprot | 859 | net/tcp/ip.c | for (ipprot = (struct ip_protocol *)ip_protos[hash]; |
| ipprot | 860 | net/tcp/ip.c | ipprot != NULL; |
| ipprot | 861 | net/tcp/ip.c | ipprot=(struct ip_protocol *)ipprot->next) |
| ipprot | 864 | net/tcp/ip.c | if (ipprot->protocol != iph->protocol) continue; |
| ipprot | 865 | net/tcp/ip.c | PRINTK (("Using protocol = %X:\n", ipprot)); |
| ipprot | 866 | net/tcp/ip.c | print_ipprot (ipprot); |
| ipprot | 873 | net/tcp/ip.c | if (ipprot->copy) |
| ipprot | 889 | net/tcp/ip.c | ipprot->handler (skb2, dev, &opt, iph->daddr, |
| ipprot | 891 | net/tcp/ip.c | iph->saddr, 0, ipprot); |
| ipprot | 143 | net/tcp/ip.h | unsigned long saddr, struct ip_protocol *ipprot); |