Port of LwIP performed by Ralf in 2010. Not recommended for use with recent mbed libraries, but good demos of raw LwIP possible

Dependents:   LwIP_raw_API_serverExample tiny-dtls

Committer:
RodColeman
Date:
Tue Sep 18 14:41:24 2012 +0000
Revision:
0:0791c1fece8e
[mbed] converted /Eth_TCP_Wei_Server/lwip

Who changed what in which revision?

UserRevisionLine numberNew contents of line
RodColeman 0:0791c1fece8e 1 #ifndef ETHNETIF_H
RodColeman 0:0791c1fece8e 2 #define ETHNETIF_H
RodColeman 0:0791c1fece8e 3
RodColeman 0:0791c1fece8e 4 #ifdef __cplusplus
RodColeman 0:0791c1fece8e 5 extern "C" {
RodColeman 0:0791c1fece8e 6 #endif
RodColeman 0:0791c1fece8e 7
RodColeman 0:0791c1fece8e 8 void device_poll();
RodColeman 0:0791c1fece8e 9 err_t device_init(struct netif *netif);
RodColeman 0:0791c1fece8e 10 void device_address(char *mac);
RodColeman 0:0791c1fece8e 11
RodColeman 0:0791c1fece8e 12
RodColeman 0:0791c1fece8e 13 #ifdef __cplusplus
RodColeman 0:0791c1fece8e 14 };
RodColeman 0:0791c1fece8e 15 #endif
RodColeman 0:0791c1fece8e 16
RodColeman 0:0791c1fece8e 17 #endif