HACK
[asbestos.git] / stage2 / network.h
blob9f5b19a13a33b788d43603309ff14a90d305c498
1 /* network.h - Toplevel networking functions
3 Copyright (C) 2010-2011 Hector Martin "marcan" <hector@marcansoft.com>
5 This code is licensed to you under the terms of the GNU GPL, version 2;
6 see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
7 */
9 #ifndef NETWORK_H
10 #define NETWORK_H
12 #include "lwip/dhcp.h"
14 #define P_IP(w) (u8)((w)>>24), (u8)((w)>>16), (u8)((w)>>8), (u8)(w)
16 extern struct netif eth;
18 void net_init(void);
19 void net_poll(void);
20 void net_shutdown(void);
22 #endif