tag | line | file | source code |
eth | 86 | net/tcp/dev.h | int (*rebuild_header)(void *eth, struct device *dev); |
eth | 68 | net/tcp/eth.c | print_eth (struct enet_header *eth) |
eth | 74 | net/tcp/eth.c | PRINTK (("0x%2X ",eth->saddr[i])); |
eth | 81 | net/tcp/eth.c | PRINTK (("0x%2X ",eth->daddr[i])); |
eth | 84 | net/tcp/eth.c | PRINTK (("ethertype = %X\n",net16(eth->type))); |
eth | 92 | net/tcp/eth.c | struct enet_header *eth; |
eth | 93 | net/tcp/eth.c | eth = (struct enet_header *)buff; |
eth | 94 | net/tcp/eth.c | eth->type = net16(type); |
eth | 95 | net/tcp/eth.c | memcpy (eth->saddr, dev->dev_addr, dev->addr_len); |
eth | 98 | net/tcp/eth.c | memset (eth->daddr, 0xff, dev->addr_len); |
eth | 101 | net/tcp/eth.c | if (!arp_find (eth->daddr, daddr, dev, saddr)) |
eth | 107 | net/tcp/eth.c | *(unsigned long *)eth->saddr = saddr; |
eth | 115 | net/tcp/eth.c | struct enet_header *eth; |
eth | 116 | net/tcp/eth.c | eth = buff; |
eth | 117 | net/tcp/eth.c | if (arp_find(eth->daddr, *(unsigned long*)eth->daddr, dev, |
eth | 118 | net/tcp/eth.c | *(unsigned long *)eth->saddr)) |
eth | 120 | 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 | 176 | net/tcp/sock.h | struct enet_header *eth; |