Common stuff for all my devices' web server pages: css, login, log, ipv4, ipv6, firmware update, clock, reset info etc.

Dependents:   oldheating gps motorhome heating

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers http-not-modified.c Source File

http-not-modified.c

00001 #include "http.h"
00002 
00003 void HttpNotModified()
00004 {
00005     HttpAddText("HTTP/1.1 304 Not Modified\r\n"
00006                      "Date: ");
00007     char pDate[HTTP_DATE_LENGTH];
00008     HttpDateFromNow(pDate);
00009     HttpAddText(pDate);
00010     HttpAddText("\r\n"
00011                      "\r\n");
00012 }