Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updates to the webserver source code. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1c4aeae543f8d5d29d010f30d11eeec6 |
User & Date: | drh 2014-08-13 18:53:44.809 |
Context
2014-08-14
| ||
12:49 | Set the release date for 2014-08-15. Add a News entry for the release. (check-in: 4de3b544f0 user: drh tags: trunk) | |
2014-08-13
| ||
18:53 | Updates to the webserver source code. (check-in: 1c4aeae543 user: drh tags: trunk) | |
2014-08-12
| ||
22:47 | Mention that the argument to pragma table_info can be a view. (check-in: 63eb2d2623 user: drh tags: trunk) | |
Changes
Changes to misc/althttpd.c.
︙ | ︙ | |||
445 446 447 448 449 450 451 | "The CGI program %s generated an error\n" "</body>\n", zScript); MakeLogEntry(0); exit(0); } /* | | > | < > > > > > | | 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 | "The CGI program %s generated an error\n" "</body>\n", zScript); MakeLogEntry(0); exit(0); } /* ** This is called if we timeout or catch some other kind of signal. ** Log an error code which is 900+iSig and then quit. */ static void Timeout(int iSig){ if( !debugFlag ){ if( zScript && zScript[0] ){ char zBuf[10]; zBuf[0] = '9'; zBuf[1] = '0' + (iSig/10)%10; zBuf[2] = '0' + iSig%10; zBuf[3] = 0; strcpy(zReplyStatus, zBuf); MakeLogEntry(0); } exit(0); } } /* |
︙ | ︙ | |||
926 927 928 929 930 931 932 933 934 935 936 937 938 939 | } nRequest++; /* ** We must receive a complete header within 15 seconds */ signal(SIGALRM, Timeout); if( useTimeout ) alarm(15); /* Get the first line of the request and parse out the ** method, the script and the protocol. */ if( fgets(zLine,sizeof(zLine),stdin)==0 ){ exit(0); | > > | 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 | } nRequest++; /* ** We must receive a complete header within 15 seconds */ signal(SIGALRM, Timeout); signal(SIGSEGV, Timeout); signal(SIGPIPE, Timeout); if( useTimeout ) alarm(15); /* Get the first line of the request and parse out the ** method, the script and the protocol. */ if( fgets(zLine,sizeof(zLine),stdin)==0 ){ exit(0); |
︙ | ︙ | |||
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 | }else if( strcasecmp(zFieldName,"Accept:")==0 ){ zAccept = StrDup(zVal); }else if( strcasecmp(zFieldName,"Content-length:")==0 ){ zContentLength = StrDup(zVal); }else if( strcasecmp(zFieldName,"Content-type:")==0 ){ zContentType = StrDup(zVal); }else if( strcasecmp(zFieldName,"Referer:")==0 ){ zReferer = StrDup(zVal); }else if( strcasecmp(zFieldName,"Cookie:")==0 ){ zCookie = StrAppend(zCookie,"; ",zVal); }else if( strcasecmp(zFieldName,"Connection:")==0 ){ if( strcasecmp(zVal,"close")==0 ){ closeConnection = 1; }else if( !forceClose && strcasecmp(zVal, "keep-alive")==0 ){ | > | 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 | }else if( strcasecmp(zFieldName,"Accept:")==0 ){ zAccept = StrDup(zVal); }else if( strcasecmp(zFieldName,"Content-length:")==0 ){ zContentLength = StrDup(zVal); }else if( strcasecmp(zFieldName,"Content-type:")==0 ){ zContentType = StrDup(zVal); }else if( strcasecmp(zFieldName,"Referer:")==0 ){ if( strstr(zVal, "devids.net/")!=0 ) Forbidden(); zReferer = StrDup(zVal); }else if( strcasecmp(zFieldName,"Cookie:")==0 ){ zCookie = StrAppend(zCookie,"; ",zVal); }else if( strcasecmp(zFieldName,"Connection:")==0 ){ if( strcasecmp(zVal,"close")==0 ){ closeConnection = 1; }else if( !forceClose && strcasecmp(zVal, "keep-alive")==0 ){ |
︙ | ︙ |