summaryrefslogtreecommitdiff
path: root/src/network/inet_legacy.c
blob: 0a0ad6fc607446dc75a48a36786771998a1eb884 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include "__dns.h"

in_addr_t inet_network(const char *p)
{
	return ntohl(inet_addr(p));
}

int inet_aton(const char *cp, struct in_addr *inp)
{
	struct sockaddr_in sin;
	if (__ipparse(&sin, AF_INET, cp) < 0) return 0;
	*inp = sin.sin_addr;
	return 1;
}

struct in_addr inet_makeaddr(int net, int host)
{
	uint32_t n = net, h = host;
	if (n < 256) h |= n<<24;
	else if (n < 65536) h |= n<<16;
	else h |= n<<8;
	return (struct in_addr){ h };
}

in_addr_t inet_lnaof(struct in_addr in)
{
	uint32_t h = in.s_addr;
	if (h>>24 < 128) return h & 0xffffff;
	if (h>>24 < 192) return h & 0xffff;
	return h & 0xff;
}

in_addr_t inet_netof(struct in_addr in)
{
	uint32_t h = in.s_addr;
	if (h>>24 < 128) return h >> 24;
	if (h>>24 < 192) return h >> 16;
	return h >> 8;
}