feat: ports - git port

This commit is contained in:
2026-08-09 10:47:07 +02:00
parent cfb8d91442
commit 6f3cf99667
34 changed files with 2255 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
/*
* <netinet/tcp.h> for the MontaukOS git port.
*
* Socket option names only; setsockopt() itself fails here. See
* compat/sys/socket.h.
*/
#ifndef _MONTAUK_GIT_NETINET_TCP_H_
#define _MONTAUK_GIT_NETINET_TCP_H_
#define TCP_NODELAY 1
#define TCP_KEEPIDLE 4
#define TCP_KEEPINTVL 5
#define TCP_KEEPCNT 6
#endif /* _MONTAUK_GIT_NETINET_TCP_H_ */