|
server 0.0.1
basicserverinfrastructure
|
00001 #ifndef __HTTP_REQUEST_QUEUE_H__ 00002 #define __HTTP_REQUEST_QUEUE_H__ 00003 00004 #include "class.h" 00005 #include "http/request.h" 00006 00007 #define HTTP_REQUEST_QUEUE_MAX 1024 00008 00009 00010 CLASS(HttpRequestQueue) { 00011 HttpRequest requests[HTTP_REQUEST_QUEUE_MAX]; 00012 size_t nrequests; 00013 }; 00014 00015 #endif /* __HTTP_REQUEST_QUEUE_H__ */ 00016 00017 // vim: set ts=4 sw=4: