aboutsummaryrefslogtreecommitdiff
path: root/ksocket/utils.h
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-09-15 11:21:31 +0200
committerToni Uhlig <matzeton@googlemail.com>2023-09-15 11:21:31 +0200
commit0cbfbe129934976359460fdbe69fb97632d81d24 (patch)
tree3d4685fc1f02244c80d4f5de2fa6c80fae94a425 /ksocket/utils.h
parent37d1e657e5e79bc240ea036cfb8da377b1640490 (diff)
Added C++ (`ksocket/ksocket.hpp`) Socket wrapper classes.
* another flatbuffers example (WiP!) * Makefile improvements Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'ksocket/utils.h')
-rw-r--r--ksocket/utils.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/ksocket/utils.h b/ksocket/utils.h
new file mode 100644
index 0000000..e3c0474
--- /dev/null
+++ b/ksocket/utils.h
@@ -0,0 +1,30 @@
+#ifndef KSOCKET_UTILS_H
+#define KSOCKET_UTILS_H 1
+
+#include <stdint.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+uint64_t htonll(uint64_t hostlonglong);
+
+#ifndef BUILD_USERMODE
+uint32_t htonl(uint32_t hostlong);
+
+uint16_t htons(uint16_t hostshort);
+#endif
+
+uint64_t ntohll(uint64_t netlonglong);
+
+#ifndef BUILD_USERMODE
+uint32_t ntohl(uint32_t netlong);
+
+uint16_t ntohs(uint16_t netshort);
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif