blob: 21f5e700f46bad6a0be1998b13b882c9c08a9e7c [file] [log] [blame]
#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