HTTP Communalities between Server and Client Module

The HTTP client module and the server module has a few things in common which we keep in this file.

#ifndef HTTPUTIL_H
#define HTTPUTIL_H

HTTP Version Management

typedef enum _HTTPVersion {
    HTTP = 0,
    HTTP_09,		
    HTTP_10,
    HTTP_11,
    HTTP_12
} HTTPVersion;

Current version of HTTP

#define HTTP_VERSION	"HTTP/1.0"
#endif
End of declaration