tag | line | file | source code |
ipprot | 142 | net/inet/icmp.c | struct inet_protocol *ipprot; |
ipprot | 183 | net/inet/icmp.c | ipprot = (struct inet_protocol *) inet_protos[hash]; |
ipprot | 184 | net/inet/icmp.c | while(ipprot != NULL) { |
ipprot | 187 | net/inet/icmp.c | nextip = (struct inet_protocol *) ipprot->next; |
ipprot | 190 | net/inet/icmp.c | if (iph->protocol == ipprot->protocol && ipprot->err_handler) { |
ipprot | 191 | net/inet/icmp.c | ipprot->err_handler(err, (unsigned char *)(icmph + 1), |
ipprot | 192 | net/inet/icmp.c | iph->daddr, iph->saddr, ipprot); |
ipprot | 195 | net/inet/icmp.c | ipprot = nextip; |
ipprot | 157 | net/inet/ip.c | print_ipprot(struct inet_protocol *ipprot) |
ipprot | 160 | net/inet/ip.c | ipprot->handler, ipprot->protocol, ipprot->copy)); |
ipprot | 1218 | net/inet/ip.c | struct inet_protocol *ipprot; |
ipprot | 1303 | net/inet/ip.c | for (ipprot = (struct inet_protocol *)inet_protos[hash]; |
ipprot | 1304 | net/inet/ip.c | ipprot != NULL; |
ipprot | 1305 | net/inet/ip.c | ipprot=(struct inet_protocol *)ipprot->next) |
ipprot | 1309 | net/inet/ip.c | if (ipprot->protocol != iph->protocol) continue; |
ipprot | 1310 | net/inet/ip.c | DPRINTF((DBG_IP, "Using protocol = %X:\n", ipprot)); |
ipprot | 1311 | net/inet/ip.c | print_ipprot(ipprot); |
ipprot | 1318 | net/inet/ip.c | if (ipprot->copy) { |
ipprot | 1343 | net/inet/ip.c | ipprot->handler(skb2, dev, opts_p ? &opt : 0, iph->daddr, |
ipprot | 1345 | net/inet/ip.c | iph->saddr, 0, ipprot); |