taglinefilesource code
eth120net/inet/dev.hint        (*rebuild_header)(void *eth, struct device *dev);
eth79net/inet/eth.ceth_dump(struct ethhdr *eth)
eth83net/inet/eth.cprintk("eth: SRC = %s ", eth_print(eth->h_source));
eth84net/inet/eth.cprintk("DST = %s ", eth_print(eth->h_dest));
eth85net/inet/eth.cprintk("TYPE = %04X\n", ntohs(eth->h_proto));
eth94net/inet/eth.cstruct ethhdr *eth;
eth100net/inet/eth.ceth = (struct ethhdr *) buff;
eth101net/inet/eth.ceth->h_proto = ntohs(type);
eth102net/inet/eth.cmemcpy(eth->h_source, dev->dev_addr, dev->addr_len);
eth107net/inet/eth.cmemset(eth->h_dest, 0, dev->addr_len);
eth114net/inet/eth.cmemcpy(eth->h_dest, dev->broadcast, dev->addr_len);
eth119net/inet/eth.cif (arp_find(eth->h_dest, daddr, dev, saddr)) {
eth129net/inet/eth.cstruct ethhdr *eth;
eth133net/inet/eth.ceth = (struct ethhdr *) buff;
eth134net/inet/eth.csrc = *(unsigned long *) eth->h_source;
eth135net/inet/eth.cdst = *(unsigned long *) eth->h_dest;
eth138net/inet/eth.cif (arp_find(eth->h_dest, dst, dev, src)) return(1);
eth139net/inet/eth.cmemcpy(eth->h_source, dev->dev_addr, dev->addr_len);
eth148net/inet/eth.cstruct ethhdr *eth;
eth150net/inet/eth.ceth = (struct ethhdr *) (skb + 1);
eth151net/inet/eth.carp_add(addr, eth->h_source, dev);
eth159net/inet/eth.cstruct ethhdr *eth;
eth161net/inet/eth.ceth = (struct ethhdr *) (skb + 1);
eth162net/inet/eth.creturn(eth->h_proto);
eth26net/inet/eth.hextern void    eth_dump(struct ethhdr *eth);
eth37net/inet/skbuff.hstruct ethhdr  *eth;