]> Nishi Git Mirror - libw3.git/commitdiff
better example
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Sun, 21 Jan 2024 14:30:28 +0000 (14:30 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Sun, 21 Jan 2024 14:30:28 +0000 (14:30 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@39 d27a3e52-49c5-7645-884c-6793ebffc270

Example/fetch.c

index ac17c18ebd5a52ec6aa90895f945f7f373f172b5..26ea3938e38ce73a565a419ded4ad840d44b6106 100644 (file)
@@ -20,6 +20,10 @@ void status(struct W3* w3, int status){
 
 void header(struct W3* w3, char* key, char* value){
        printf("Header: %s is `%s'\n", key, value);
+       if(strcasecmp(key, "Server") == 0){
+               /* For the example - We get the server software */
+               printf("Server is using `%s'\n", value);
+       }
 }
 
 int main(int argc, char** argv){