diff options
author | Aaditya Dhruv <[email protected]> | 2025-06-05 16:48:13 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-06-05 16:48:13 -0500 |
commit | b5c0d20d05be427b002cdbd6b7b08b56872509c2 (patch) | |
tree | 0345d6f68dcadd7a50cc9a69865e5ec33dc6a449 /src/network.c | |
parent | 420ce14859e41d1e8b616ebf1c472763eabe93be (diff) |
Include headers in installation
Diffstat (limited to 'src/network.c')
-rw-r--r-- | src/network.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/network.c b/src/network.c index 64d217b..7d4d45b 100644 --- a/src/network.c +++ b/src/network.c @@ -11,6 +11,7 @@ #define TAG "network" +//TCP SEND int tcp_ipv4_send_packet(char* ip, char* port, char* data) { int sock; @@ -53,3 +54,7 @@ int tcp_ipv4_send_packet(char* ip, char* port, char* data) { freeaddrinfo(res); return 0; } + + +// TCP BIND +int tcp_ipv4_b |