JunkBox_Lib++ (for Windows) 1.10.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
https_tool.h
Go to the documentation of this file.
1#ifndef __JBXL_HTTPS_TOOL_H_
2#define __JBXL_HTTPS_TOOL_H_
3
10#include "ssl_tool.h"
11#include "http_tool.h"
12
13
14#ifdef DISABLE_SSL
15#undef ENABLE_SSL
16#endif
17
18#ifdef ENABLE_SSL
19
20int recv_https_header(int sofd, SSL* ssl, tList** pl, int* len, int tm, FILE* fp, int* state);
21int send_https_header(int sofd, SSL* ssl, tList* pl, int mode);
22
23int recv_https_content(int sofd, SSL* ssl, Buffer* buf, int len, int tm, FILE* fp, int* state);
24int recv_https_chunked(int sofd, SSL* ssl, Buffer* buf, int tm, FILE* fp, int* state);
25int recv_https_closed (int sofd, SSL* ssl, Buffer* buf, int tm, FILE* fp);
26
27int recv_https_chunked_remain(int sofd, SSL* ssl, Buffer* buf, int chnksz, int tm);
28
29int recv_https_Buffer(int sofd, SSL* ssl, tList** pl, Buffer* buf, int timeout, int* hdonly, int* state, int nochunk);
30int send_https_Buffer(int sofd, SSL* ssl, tList* pl, Buffer* buf);
31
32int recv_https_file(int sofd, SSL* ssl, tList** pl, const char* fname, const char* wdir, int timeout, int* hdonly, int* state);
33int send_https_file(int sofd, SSL* ssl, tList* pl, const char* fname);
34
35int save_https_xml(int cofd, SSL* ssl, tList** pl, tXML** xml, char** recvfn, const char* wdir, int timeout, int* state);
36
37#endif // ENABLE_SSL
38
39#endif // __JBXL_HTTPS_TOOL_H_
40
HTTP ツールライブラリ ヘッダ