comparison net.h @ 1514:4f94e0f90c83

Added support for MegaWiFi command IP_CURRENT
author Michael Pavone <pavone@retrodev.com>
date Tue, 16 Jan 2018 09:31:00 -0800
parents
children
comparison
equal deleted inserted replaced
1513:8f3b6a64b658 1514:4f94e0f90c83
1 #ifndef NET_H_
2 #define NET_H_
3 #include <stdint.h>
4
5 typedef struct {
6 uint8_t ip[4];
7 uint8_t net_mask[4];
8 } iface_info;
9
10 uint8_t get_host_address(iface_info *out);
11
12 #endif //NET_H_