Index: benchmark/io/http/protocol.cfa
===================================================================
--- benchmark/io/http/protocol.cfa	(revision 5ad381b89a9bdf721500b0149a252171940668fe)
+++ benchmark/io/http/protocol.cfa	(revision 390fb02b2df905afef08792dee99f77218c37c0c)
@@ -18,10 +18,12 @@
 #include "options.hfa"
 
+const char * volatile date = "Wed, 17 Apr 2013 12:00:00 GMT";
+
 const char * http_msgs[] = {
-	"HTTP/1.1 200 OK\nContent-Type: text/plain\nContent-Length: %zu\n\n",
-	"HTTP/1.1 400 Bad Request\nContent-Type: text/plain\nContent-Length: 0\n\n",
-	"HTTP/1.1 404 Not Found\nContent-Type: text/plain\nContent-Length: 0\n\n",
-	"HTTP/1.1 413 Payload Too Large\nContent-Type: text/plain\nContent-Length: 0\n\n",
-	"HTTP/1.1 414 URI Too Long\nContent-Type: text/plain\nContent-Length: 0\n\n",
+	"HTTP/1.1 200 OK\nServer: HttoForall\nDate: %s \nContent-Type: text/plain\nContent-Length: %zu \n\n",
+	"HTTP/1.1 400 Bad Request\nServer: HttoForall\nDate: %s \nContent-Type: text/plain\nContent-Length: 0 \n\n",
+	"HTTP/1.1 404 Not Found\nServer: HttoForall\nDate: %s \nContent-Type: text/plain\nContent-Length: 0 \n\n",
+	"HTTP/1.1 413 Payload Too Large\nServer: HttoForall\nDate: %s \nContent-Type: text/plain\nContent-Length: 0 \n\n",
+	"HTTP/1.1 414 URI Too Long\nServer: HttoForall\nDate: %s \nContent-Type: text/plain\nContent-Length: 0 \n\n",
 };
 
@@ -63,7 +65,7 @@
 int answer_header( int fd, size_t size ) {
 	const char * fmt = http_msgs[OK200];
-	int len = 100;
+	int len = 200;
 	char buffer[len];
-	len = snprintf(buffer, len, fmt, size);
+	len = snprintf(buffer, len, fmt, date, size);
 	return answer( fd, buffer, len );
 }
