www.pudn.com > Hook-api-mir.rar > http.h


// Copyright: www.pudn.com,程序员联合开发网,www.programsalon.com 
// 如果要使用或修改本程序,请保留次信息 
// 
#ifndef __HTTP_H__ 
 
#include  
 
int http_init(); 
int http_connect(char *host, int port); 
int http_send(int sd, char *host, char *url); 
int http_recv(int sd, char *buf, int max_buf_size); 
int http_parse(char *buf, char *res_buf, int buf_size); 
void http_close(int sd); 
 
#endif