#ifndef _HTTP_MANAGER_H | |
#define _HTTP_MANAGER_H | |
#include "http/lynq_http.h" | |
#include "thread_pool.h" | |
#include "list.h" | |
#include "common.h" | |
typedef struct | |
{ | |
struct list_head list; | |
lynq_http_client_t data; | |
}HTTP_LIST_LINK_S; | |
void http_list_init(void); | |
int http_list_locate(void); | |
int http_param_verification(char result[][BUF_SIZE], int line); | |
int http_act_handler(thread_pool_t *pool); | |
#endif | |