diff options
author | David Madison <dmadison@users.noreply.github.com> | 2019-02-15 12:08:19 -0500 |
---|---|---|
committer | David Madison <dmadison@users.noreply.github.com> | 2019-02-15 12:08:31 -0500 |
commit | 4a7ef06b516dba4cdda939a16e5458c59592f6b1 (patch) | |
tree | b00e15e665a2f456c1fb207aeb9ac12283181a00 /firmwares/wifishield/wifiHD/src/lwip_setup.h | |
parent | 98f00eb533e0ed571b90f8e014d1eb59052a0597 (diff) |
Delete 'firmwares' folder
Diffstat (limited to 'firmwares/wifishield/wifiHD/src/lwip_setup.h')
-rw-r--r-- | firmwares/wifishield/wifiHD/src/lwip_setup.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/firmwares/wifishield/wifiHD/src/lwip_setup.h b/firmwares/wifishield/wifiHD/src/lwip_setup.h deleted file mode 100644 index 7edf2b5..0000000 --- a/firmwares/wifishield/wifiHD/src/lwip_setup.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef _LWIP_SETUP_H -#define _LWIP_SETUP_H - -#define INIT_IP_CONFIG 0xff -#define STATIC_IP_CONFIG 0 -#define DYNAMIC_IP_CONFIG 1 - -struct net_cfg { - struct netif *netif; /* lwip network interface */ - uint8_t dhcp_enabled; - uint8_t dhcp_running; -}; - -struct ctx_server { - struct net_cfg net_cfg; - uint8_t wl_init_complete; -}; - -/*! Start the IP stack. - * If cfg->netif must have been allocated and lwip_init() - * must have been called before this function is called - * (since the IP stack may have to be polled before this - * function can be called). - */ -int start_ip_stack(struct net_cfg *cfg, - struct ip_addr ipaddr, - struct ip_addr netmask, - struct ip_addr gw); - -#endif /* _LWIP_SETUP_H */ |