Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | On the RFC5322 date-time string, use GMT rather than +0000. /forum/1bdf3707fc |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2e301c653c2a08bf63442ba7f1a4eda9 |
User & Date: | drh 2021-02-11 22:56:46 |
Context
2021-05-14
| ||
11:41 | New bots added to the forbidden list. ... (check-in: 7233f5eccb user: drh tags: trunk) | |
2021-02-11
| ||
22:56 | On the RFC5322 date-time string, use GMT rather than +0000. /forum/1bdf3707fc ... (check-in: 2e301c653c user: drh tags: trunk) | |
16:03 | Fix a typo in a comment. /forumpost/91afec3c52. ... (check-in: 9847c5d331 user: drh tags: trunk) | |
Changes
Changes to althttpd.c.
︙ | ︙ | |||
446 447 448 449 450 451 452 | zFilename = zLogFile; } waitpid(-1, &waitStatus, WNOHANG); getrusage(RUSAGE_SELF, &self); getrusage(RUSAGE_CHILDREN, &children); if( (log = fopen(zFilename,"a"))!=0 ){ #ifdef COMBINED_LOG_FORMAT | | | 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 | zFilename = zLogFile; } waitpid(-1, &waitStatus, WNOHANG); getrusage(RUSAGE_SELF, &self); getrusage(RUSAGE_CHILDREN, &children); if( (log = fopen(zFilename,"a"))!=0 ){ #ifdef COMBINED_LOG_FORMAT strftime(zDate, sizeof(zDate), "%d/%b/%Y:%H:%M:%S %Z", pTm); fprintf(log, "%s - - [%s] \"%s %s %s\" %s %d \"%s\" \"%s\"\n", zRemoteAddr, zDate, zMethod, zScript, zProtocol, zReplyStatus, nOut, zReferer, zAgent); #else strftime(zDate, sizeof(zDate), "%Y-%m-%d %H:%M:%S", pTm); /* Log record files: ** (1) Date and time |
︙ | ︙ | |||
613 614 615 616 617 618 619 | /* Render seconds since 1970 as an RFC822 date string. Return ** a pointer to that string in a static buffer. */ static char *Rfc822Date(time_t t){ struct tm *tm; static char zDate[100]; tm = gmtime(&t); | | | 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 | /* Render seconds since 1970 as an RFC822 date string. Return ** a pointer to that string in a static buffer. */ static char *Rfc822Date(time_t t){ struct tm *tm; static char zDate[100]; tm = gmtime(&t); strftime(zDate, sizeof(zDate), "%a, %d %b %Y %H:%M:%S %Z", tm); return zDate; } /* ** Print a date tag in the header. The name of the tag is zTag. ** The date is determined from the unix timestamp given. */ |
︙ | ︙ |