-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnet.c
105 lines (81 loc) · 2.01 KB
/
net.c
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#include <kernel.h>
#include <stdint.h>
#if __BYTE_ORDER == __LITTLE_ENDIAN
uint16_t flip_short(uint16_t short_int) {
uint32_t first_byte = *((uint8_t*)(&short_int));
uint32_t second_byte = *((uint8_t*)(&short_int) + 1);
return (first_byte << 8) | (second_byte);
}
uint32_t flip_long(uint32_t long_int) {
uint32_t first_byte = *((uint8_t*)(&long_int));
uint32_t second_byte = *((uint8_t*)(&long_int) + 1);
uint32_t third_byte = *((uint8_t*)(&long_int) + 2);
uint32_t fourth_byte = *((uint8_t*)(&long_int) + 3);
return (first_byte << 24) | (second_byte << 16) | (third_byte << 8) | (fourth_byte);
}
uint8_t flip_byte(uint8_t byte, int num_bits) {
uint8_t t = byte << (8 - num_bits);
return t | (byte >> num_bits);
}
uint8_t htonb(uint8_t byte, int num_bits) {
return flip_byte(byte, num_bits);
}
uint8_t ntohb(uint8_t byte, int num_bits) {
return flip_byte(byte, 8 - num_bits);
}
uint16_t htons(uint16_t hostshort) {
return flip_short(hostshort);
}
uint32_t htonl(uint32_t hostlong) {
return flip_long(hostlong);
}
uint16_t ntohs(uint16_t netshort) {
return flip_short(netshort);
}
uint32_t ntohl(uint32_t netlong) {
return flip_long(netlong);
}
#else
/* Big endian machines like motorola, DEC, MIPS, Sparc are Big-Endian.
* Big-endian architectures match the binary layout of network byte order,
* so on those systems the faff above isnt required. Yay for them!
*/
uint16_t flip_short(uint16_t short_int) {
return short_int;
}
uint32_t flip_long(uint32_t long_int) {
return long_int;
}
uint8_t flip_byte(uint8_t byte, int num_bits) {
return byte;
}
uint8_t htonb(uint8_t byte, int num_bits) {
return byte;
}
uint8_t ntohb(uint8_t byte, int num_bits) {
return byte;
}
uint16_t htons(uint16_t hostshort) {
return hostshort;
}
uint32_t htonl(uint32_t hostlong) {
return hostlong;
}
uint16_t ntohs(uint16_t netshort) {
return netshort;
}
uint32_t ntohl(uint32_t netlong) {
return netlong;
}
#endif
void network_up()
{
arp_init();
ip_init();
tcp_init();
dhcp_discover();
init_dns();
}
void network_down()
{
}