]> Nishi Git Mirror - libw3.git/commitdiff
connection closed
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Tue, 6 Feb 2024 01:06:57 +0000 (01:06 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Tue, 6 Feb 2024 01:06:57 +0000 (01:06 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@167 d27a3e52-49c5-7645-884c-6793ebffc270

Library/DNS.c
Library/HTTP.c
W3Version.h.p

index 0b2685ca215c7258072774640e07595d392060ce..2371344a14b2854508ce3019ab6301bcbf3a575c 100644 (file)
@@ -15,6 +15,7 @@
 #include <netdb.h>
 #include <sys/socket.h>
 #include <netinet/tcp.h>
+#include <arpa/inet.h>
 #endif
 
 #include <stdbool.h>
index 0efb4e9144d582b4c658b7a6633b25b0c8aee664..f2016766bc5fb68cb3495097e236c79b46040b01 100644 (file)
@@ -37,7 +37,7 @@ void __W3_HTTP_Request(struct W3* w3) {
                __W3_Auto_Write(w3, "\r\n", 2);
        }
        __W3_Auto_Write(w3, "Connection: ", 12);
-       __W3_Auto_Write(w3, "closed", 6);
+       __W3_Auto_Write(w3, "close", 5);
        __W3_Auto_Write(w3, "\r\n", 2);
        if(w3->headers != NULL) {
                int i;
index fd5d7c4d62d156f6fa1f5281c0fae8e009bf28ba..dee9ce64d2b714e2f8861b1e0d4cc090a1c93374 100644 (file)
@@ -6,7 +6,7 @@
 extern "C" {
 #endif
 
-#define LIBW3_VERSION "2.2L" \
+#define LIBW3_VERSION "2.2M" \
 SUFFIX
 
 #ifdef __cplusplus