1 Star 0 Fork 114

飞雪悦舞 / httpclient

forked from linxyruffy / httpclient 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
http.h 2.04 KB
一键复制 编辑 原始数据 按行查看 历史
linxyruffy 提交于 2016-07-08 09:59 . 创建httpclient
#ifndef _HTTP_H_
#define _HTTP_H_
#define HTTP_API
#ifdef _cplusplus
extern "C" {
#endif
#define FT_SUPPORT_HTTPS 1
typedef enum http_request_method_e
{
M_GET = 0,
M_POST,
M_HEAD
} http_request_method_e;
enum http_error_e
{
ERR_OK = 0,
ERR_INVALID_PARAM,
ERR_OUT_MEMORY,
ERR_OPEN_FILE,
ERR_PARSE_REP,
ERR_URL_INVALID,
ERR_URL_INVALID_PROTO,
ERR_URL_INVALID_HOST,
ERR_URL_INVALID_IP,
ERR_URL_RESOLVED_HOST,
ERR_SOCKET_CREATE,
ERR_SOCKET_SET_OPT,
ERR_SOCKET_NOBLOCKING,
ERR_SOCKET_CONNECT,
ERR_SOCKET_CONNECT_TIMEOUT,
ERR_SOCKET_SELECT,
ERR_SOCKET_WRITE,
ERR_SOCKET_READ,
ERR_SOCKET_TIMEOUT,
ERR_SOCKET_CLOSED,
ERR_SOCKET_GET_OPT,
#if FT_SUPPORT_HTTPS
ERR_SSL_CREATE_CTX,
ERR_SSL_CREATE_SSL,
ERR_SSL_SET_FD,
ERR_SSL_CONNECT,
ERR_SSL_WRITE,
ERR_SSL_READ
#endif
};
struct ft_http_client_t;
typedef struct ft_http_client_t ft_http_client_t;
typedef int (*data_recv_cb_t)( ft_http_client_t* http, const char* data, int size, int total, void* user);
HTTP_API int ft_http_init();
HTTP_API void ft_http_deinit();
HTTP_API ft_http_client_t* ft_http_new();
HTTP_API void ft_http_destroy(ft_http_client_t* http);
HTTP_API int ft_http_get_error_code(ft_http_client_t* http);
HTTP_API int ft_http_get_status_code(ft_http_client_t* http);
HTTP_API int ft_http_set_timeout(ft_http_client_t* http, int timeout);
HTTP_API const char* ft_http_sync_request(ft_http_client_t* http, const char* url, http_request_method_e m_);
HTTP_API int ft_http_sync_download_file( ft_http_client_t* http, const char* url, const char* filepath);
HTTP_API int ft_http_cancel_request(ft_http_client_t* http);
HTTP_API int ft_http_wait_done(ft_http_client_t* http);
HTTP_API int ft_http_set_data_recv_cb(ft_http_client_t* http, data_recv_cb_t cb, void* user);
HTTP_API int ft_http_exit(ft_http_client_t* http);
HTTP_API const char* ft_http_sync_post_file(ft_http_client_t* http, const char* url, const char* filepath);
#ifdef _cplusplus
}
#endif
#endif
C
1
https://gitee.com/snow2fly/httpclient.git
git@gitee.com:snow2fly/httpclient.git
snow2fly
httpclient
httpclient
master

搜索帮助