Server 0.0.1
HTTP/REST server implementation

include/http/message/queue.h

Go to the documentation of this file.
00001 
00026 #ifndef __HTTP_MESSAGE_QUEUE_H__
00027 #define __HTTP_MESSAGE_QUEUE_H__
00028 
00029 #include "class.h"
00030 #include "http/message.h"
00031 
00032 #define HTTP_MESSAGE_QUEUE_MAX  1024
00033 
00034 
00035 CLASS(HttpMessageQueue) {
00036         HttpMessage msgs[HTTP_MESSAGE_QUEUE_MAX];
00037         size_t      nmsgs;
00038 };
00039 
00040 #endif // __HTTP_MESSAGE_QUEUE_H__
00041 
00042 // vim: set ts=4 sw=4:
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines