summaryrefslogtreecommitdiff
path: root/src/network/ntohl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/ntohl.c')
-rw-r--r--src/network/ntohl.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/network/ntohl.c b/src/network/ntohl.c
new file mode 100644
index 00000000..64379196
--- /dev/null
+++ b/src/network/ntohl.c
@@ -0,0 +1,10 @@
+#include <netinet/in.h>
+
+uint32_t ntohl(uint32_t n)
+{
+ union {
+ uint32_t i;
+ uint8_t b[4];
+ } u = { n };
+ return (u.b[0]<<24) | (u.b[1]<<16) | (u.b[2]<<8) | u.b[3];
+}