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 | 249 | net/tcp/ip.c | print_ipprot (struct ip_protocol *ipprot) |
ipprot | 252 | net/tcp/ip.c | ipprot->handler, ipprot->protocol, ipprot->copy)); |
ipprot | 818 | net/tcp/ip.c | struct ip_protocol *ipprot; |
ipprot | 861 | net/tcp/ip.c | for (ipprot = (struct ip_protocol *)ip_protos[hash]; |
ipprot | 862 | net/tcp/ip.c | ipprot != NULL; |
ipprot | 863 | net/tcp/ip.c | ipprot=(struct ip_protocol *)ipprot->next) |
ipprot | 866 | net/tcp/ip.c | if (ipprot->protocol != iph->protocol) continue; |
ipprot | 867 | net/tcp/ip.c | PRINTK (("Using protocol = %X:\n", ipprot)); |
ipprot | 868 | net/tcp/ip.c | print_ipprot (ipprot); |
ipprot | 875 | net/tcp/ip.c | if (ipprot->copy) |
ipprot | 891 | net/tcp/ip.c | ipprot->handler (skb2, dev, &opt, iph->daddr, |
ipprot | 893 | net/tcp/ip.c | iph->saddr, 0, ipprot); |
ipprot | 143 | net/tcp/ip.h | unsigned long saddr, struct ip_protocol *ipprot); |