]>
Commit | Line | Data |
---|---|---|
3c4e084d JP |
1 | /* net.h |
2 | * Top-level network clue code headers | |
3 | * NetWatch system management mode administration console | |
4 | * | |
5 | * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved. | |
6 | * This program is free software; you can redistribute and/or modify it under | |
7 | * the terms found in the file LICENSE in the root of this source tree. | |
8 | * | |
9 | */ | |
10 | ||
54d4b877 JW |
11 | #ifndef _NET_H |
12 | #define _NET_H | |
3b3161a1 | 13 | |
3e6d6106 | 14 | #include "etherboot-compat.h" |
bec09bd1 | 15 | #include <lwip/pbuf.h> |
3e6d6106 | 16 | |
3b3161a1 | 17 | extern void eth_init(); |
bec09bd1 | 18 | extern void eth_recv(struct nic *nic, struct pbuf *p); |
3b3161a1 | 19 | extern void eth_poll(); |
7a914840 | 20 | extern int eth_register(struct nic *nic); |
42125f27 | 21 | |
3b3161a1 | 22 | #endif |