|
Server 0.0.1
HTTP/REST server implementation
|
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: