You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
306 B
17 lines
306 B
#ifndef __HTTP_REQUEST_QUEUE_H__
|
|
#define __HTTP_REQUEST_QUEUE_H__
|
|
|
|
#include "class.h"
|
|
#include "http/message.h"
|
|
|
|
#define HTTP_MESSAGE_QUEUE_MAX 1024
|
|
|
|
|
|
CLASS(HttpMessageQueue) {
|
|
HttpMessage msgs[HTTP_MESSAGE_QUEUE_MAX];
|
|
size_t nmsgs;
|
|
};
|
|
|
|
#endif /* __HTTP_REQUEST_QUEUE_H__ */
|
|
|
|
// vim: set ts=4 sw=4:
|