summaryrefslogtreecommitdiff
path: root/com32/include/netinet/in.h
blob: d2af351fa752ba89b0ece16081e3d39b5f21cd5d (plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#ifndef _NETINET_IN_H
#define _NETINET_IN_H

/* COM32 will be running on an i386 platform */

#include <stdint.h>
#include <klibc/compiler.h>
#include <klibc/extern.h>

#define __htons_macro(v) ((uint16_t)		  			\
			  (((uint16_t)(v) << 8) | 			\
			   ((uint16_t)(v) >> 8)))

static inline __constfunc uint16_t __htons(uint16_t v)
{
    return __htons_macro(v);
}

#define htons(x) (__builtin_constant_p(x) ? __htons_macro(x) :  __htons(x))
#define ntohs(x) htons(x)

#define __htonl_macro(v) ((uint32_t)					\
                          ((((uint32_t)(v) & 0x000000ff) << 24) |	\
			   (((uint32_t)(v) & 0x0000ff00) << 8)  |	\
			  (((uint32_t)(v) & 0x00ff0000) >> 8)  |	\
			   (((uint32_t)(v) & 0xff000000) >> 24)))

static inline __constfunc uint32_t __htonl(uint32_t v)
{
    asm("xchgb %h0,%b0 ; roll $16,%0 ; xchgb %h0,%b0"
	: "+q" (v));
    return v;
}

#define htonl(x) (__builtin_constant_p(x) ? __htonl_macro(x) : __htonl(x))
#define ntohl(x) htonl(x)

#define __htonq_macro(v) ((uint64_t)					\
    (((uint64_t)__htonl_macro((uint32_t)(v)) << 32) |			\
     (__htonl_macro((uint32_t)((uint64_t)(v) >> 32)))))

static inline __constfunc uint64_t __htonq(uint64_t v)
{
    return ((uint64_t)__htonl(v) << 32) | __htonl(v >> 32);
}

#define htonq(x) (__builtin_constant_p(x) ? __htonq_macro(x) :  __htonq(x))
#define ntohq(x) htonq(x)

typedef uint32_t in_addr_t;
typedef uint16_t in_port_t;

struct in_addr {
    in_addr_t s_addr;
};

__extern char *inet_ntoa(struct in_addr);

#endif /* _NETINET_IN_H */