Server 0.0.1
HTTP/REST server implementation

include/utils/http.h

Go to the documentation of this file.
00001 
00023 #ifndef __UTILS_HTTP_H__
00024 #define __UTILS_HTTP_H__
00025 
00026 #include <sys/types.h>
00027 
00028 #include "http/message.h"
00029 
00030 char        isHttpVersion(const char *, size_t);
00031 HttpMessage httpGetMessage(
00032                 const char *, size_t,
00033                 const char *, size_t,
00034                 const char *, size_t);
00035 
00036 #endif // __UTILS_HTTP_H__
00037 
00038 // vim: set ts=4 sw=4:
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines