]> Nishi Git Mirror - libw3.git/commitdiff
fix
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Wed, 24 Jan 2024 09:56:14 +0000 (09:56 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Wed, 24 Jan 2024 09:56:14 +0000 (09:56 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@55 d27a3e52-49c5-7645-884c-6793ebffc270

Example/fetch.c

index 5311ced627a4107f3a0f094280517c29e83ef9ea..2d0b42db873d4b1d6a49336d1508dd0bbb29eca8 100644 (file)
@@ -36,9 +36,9 @@ int main(int argc, char** argv){
                return 1;
        }
        W3_Library_Init();
-       struct W3* w3 = W3_Create("https", argv[1], 443);
+       struct W3* w3 = W3_Create("http", argv[1], 80);
        if(w3 != NULL){
-               W3_Set_Read_Size(w3, 1024 * 1024);
+               W3_Set_Read_Size(w3, 1024);
                W3_Set_Method(w3, argv[3] == NULL ? "GET" : argv[3]);
                W3_Set_Path(w3, argv[2]);
                W3_On(w3, "status", (void*)status);