view net.h @ 2000:e45a317802bd

Fix broken enum definitions that cause multiple definition errors when building with -fno-common which is now the default in GCC 10
author Mike Pavone <pavone@retrodev.com>
date Sat, 11 Jul 2020 21:16:32 -0700
parents 4f94e0f90c83
children
line wrap: on
line source

#ifndef NET_H_
#define NET_H_
#include <stdint.h>

typedef struct {
	uint8_t ip[4];
	uint8_t net_mask[4];
} iface_info;

uint8_t get_host_address(iface_info *out);

#endif //NET_H_