summaryrefslogtreecommitdiff
path: root/net/netdev.h
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-26 10:22:37 +0200
committerMiguel <m.i@gmx.at>2018-09-26 10:22:37 +0200
commitae33cc6557790a502a01b380b0926944ca2f3cfa (patch)
treee72632052d1c6f6830c40d10d26c04b73aac74c6 /net/netdev.h
parentdaf374435560861681c3e4d14a2d44141aa11abc (diff)
ntp and udp
Diffstat (limited to 'net/netdev.h')
-rw-r--r--net/netdev.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netdev.h b/net/netdev.h
index 73f9783..92ff9f2 100644
--- a/net/netdev.h
+++ b/net/netdev.h
@@ -10,7 +10,7 @@ struct netdev
int (*transmit)(const void *data, uint16_t p_len);
};
-void netdev_transmit(struct netdev *dev, struct eth_hdr *hdr, uint16_t ethertype, int len, unsigned char *dst);
void net_incoming(struct netdev *netdev, struct eth_hdr *hdr);
+void netdev_transmit(struct netdev *dev, struct eth_hdr *hdr, uint16_t ethertype, int len, unsigned char *dst);
#endif