Global cleanups and standardization of code style.

This commit is contained in:
Thulinma 2012-12-11 11:03:33 +01:00
parent 51a9b4162c
commit 38ef8704f8
33 changed files with 4322 additions and 2824 deletions

View file

@ -8,7 +8,7 @@
#include <stdio.h>
/// Holds all HTTP processing related code.
namespace HTTP{
namespace HTTP {
/// Simple class for reading and writing HTTP 1.0 and 1.1.
class Parser{
public:
@ -45,5 +45,7 @@ namespace HTTP{
void Trim(std::string & s);
static int unhex(char c);
static std::string hex(char dec);
};//HTTP::Parser class
};//HTTP namespace
};
//HTTP::Parser class
}//HTTP namespace