Commit 8e4e3dae1e5e096a3bf4f1e6971a04e6b26b5370

Authored by Georg Hopp
1 parent 1c5d6099

no more request body debig output

Showing 2 changed files with 9 additions and 5 deletions
  1 +2012-02-09 11:44:17 +0100 Georg Hopp
  2 +
  3 + * no more request body debig output (HEAD, master)
  4 +
1 2012-02-09 11:32:28 +0100 Georg Hopp 5 2012-02-09 11:32:28 +0100 Georg Hopp
2 6
3 - * add missing header_get to repo and build header hash only from lowercase letters now as it seems header identifier should be case insensitive (HEAD, master) 7 + * add missing header_get to repo and build header hash only from lowercase letters now as it seems header identifier should be case insensitive
4 8
5 2012-02-09 09:34:21 +0100 Georg Hopp 9 2012-02-09 09:34:21 +0100 Georg Hopp
6 10
@@ -80,10 +80,10 @@ serverRun(Server this) @@ -80,10 +80,10 @@ serverRun(Server this)
80 for (j=0; j<queue->nrequests; j++) { 80 for (j=0; j<queue->nrequests; j++) {
81 HttpRequest request = queue->requests[j]; 81 HttpRequest request = queue->requests[j];
82 82
83 - if (NULL != request->body) {  
84 - puts("==REQUEST BODY==");  
85 - puts(request->body);  
86 - } 83 + //if (NULL != request->body) {
  84 + // puts("==REQUEST BODY==");
  85 + // puts(request->body);
  86 + //}
87 87
88 /** 88 /**
89 * @TODO: for now simply remove request and send not found. 89 * @TODO: for now simply remove request and send not found.
Please register or login to post a comment