comparison net.h @ 1692:5dacaef602a7 segacd

Merge from default
author Michael Pavone <pavone@retrodev.com>
date Sat, 05 Jan 2019 00:58:08 -0800
parents 4f94e0f90c83
children
comparison
equal deleted inserted replaced
1504:95b3a1a8b26c 1692:5dacaef602a7
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_