summaryrefslogtreecommitdiff
path: root/net_win.c
blob: 2abae16a2837cc7465905b1310eb1801686f0150 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "net.h"

uint8_t get_host_address(iface_info *out)
{
	out->ip[0] = 127;
	out->ip[1] = 0;
	out->ip[2] = 0;
	out->ip[3] = 1;
	out->net_mask[0] = 255;
	out->net_mask[0] = 255;
	out->net_mask[0] = 255;
	out->net_mask[0] = 0;
	return 1;
}