summaryrefslogtreecommitdiff
path: root/src/libc/include/netinet/in.h
diff options
context:
space:
mode:
authordzwdz2023-12-25 18:36:02 +0100
committerdzwdz2023-12-25 18:36:02 +0100
commit4e1a6f1b3c543b9fbeb882a9e97551f7c58ca65a (patch)
tree8c2048c751db8b98e3033a61b6ad5bbd11a303a9 /src/libc/include/netinet/in.h
parent64d4330810a37dd9c41a82ae6cc420850ca1e7da (diff)
ports: curl :^)
had to do a lot of hacky stuff, but it's there. worked on this on and off for a while now
Diffstat (limited to 'src/libc/include/netinet/in.h')
-rw-r--r--src/libc/include/netinet/in.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/libc/include/netinet/in.h b/src/libc/include/netinet/in.h
new file mode 100644
index 0000000..b56a22a
--- /dev/null
+++ b/src/libc/include/netinet/in.h
@@ -0,0 +1,16 @@
+#pragma once
+#include <sys/socket.h>
+
+#define IPPROTO_TCP 1
+#define IPPROTO_UDP 2
+#define IPPROTO_IP 4
+
+struct in_addr {
+ in_addr_t s_addr;
+};
+
+struct sockaddr_in {
+ sa_family_t sin_family; /* AF_INET */
+ in_port_t sin_port;
+ struct in_addr sin_addr;
+};