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
309 B
17 lines
309 B
#ifndef __HTTP_REQUEST_QUEUE_H__
|
|
#define __HTTP_REQUEST_QUEUE_H__
|
|
|
|
#include "class.h"
|
|
#include "http/request.h"
|
|
|
|
#define HTTP_REQUEST_QUEUE_MAX 1024
|
|
|
|
|
|
CLASS(HttpRequestQueue) {
|
|
HttpRequest requests[HTTP_REQUEST_QUEUE_MAX];
|
|
size_t nrequests;
|
|
}
|
|
|
|
#endif /* __HTTP_REQUEST_QUEUE_H__ */
|
|
|
|
// vim: set ts=4 sw=4:
|