| tag | line | file | source code |
| eth | 80 | net/tcp/dev.h | int (*rebuild_header)(void *eth, struct device *dev); |
| eth | 65 | net/tcp/eth.c | print_eth (struct enet_header *eth) |
| eth | 71 | net/tcp/eth.c | PRINTK ("0x%2X ",eth->saddr[i]); |
| eth | 78 | net/tcp/eth.c | PRINTK ("0x%2X ",eth->daddr[i]); |
| eth | 81 | net/tcp/eth.c | PRINTK ("ethertype = %X\n",net16(eth->type)); |
| eth | 89 | net/tcp/eth.c | struct enet_header *eth; |
| eth | 90 | net/tcp/eth.c | eth = (struct enet_header *)buff; |
| eth | 91 | net/tcp/eth.c | eth->type = net16(type); |
| eth | 92 | net/tcp/eth.c | memcpy (eth->saddr, dev->dev_addr, dev->addr_len); |
| eth | 95 | net/tcp/eth.c | memset (eth->daddr, 0xff, dev->addr_len); |
| eth | 98 | net/tcp/eth.c | if (!arp_find (eth->daddr, daddr, dev, saddr)) |
| eth | 104 | net/tcp/eth.c | *(unsigned long *)eth->saddr = saddr; |
| eth | 112 | net/tcp/eth.c | struct enet_header *eth; |
| eth | 113 | net/tcp/eth.c | eth = buff; |
| eth | 114 | net/tcp/eth.c | if (arp_find(eth->daddr, *(unsigned long*)eth->daddr, dev, |
| eth | 115 | net/tcp/eth.c | *(unsigned long *)eth->saddr)) |
| eth | 117 | net/tcp/eth.c | memcpy (eth->saddr, dev->dev_addr, dev->addr_len); |
| eth | 93 | net/tcp/eth.h | void print_eth(struct enet_header *eth); |
| eth | 98 | net/tcp/eth.h | int eth_rebuild_header(void *eth, struct device *dev); |
| eth | 80 | net/tcp/loopback.c | struct enet_header *eth; |
| eth | 111 | net/tcp/loopback.c | eth = (struct enet_header *)buff; |
| eth | 112 | net/tcp/loopback.c | print_eth (eth); |
| eth | 167 | net/tcp/sock.h | struct enet_header *eth; |