Source
15
15
** You should have received a copy of the GNU General Public License
16
16
** along with this program; if not, write to the Free Software
17
17
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18
18
**/
19
19
20
20
#ifndef ZABBIX_ZBXHTTP_H
21
21
#define ZABBIX_ZBXHTTP_H
22
22
23
23
#include "zbxcommon.h"
24
24
25
+
#define ZBX_HTTPFIELD_HEADER 0
26
+
#define ZBX_HTTPFIELD_VARIABLE 1
27
+
#define ZBX_HTTPFIELD_POST_FIELD 2
28
+
#define ZBX_HTTPFIELD_QUERY_FIELD 3
29
+
30
+
#define ZBX_POSTTYPE_RAW 0
31
+
#define ZBX_POSTTYPE_FORM 1
32
+
#define ZBX_POSTTYPE_JSON 2
33
+
#define ZBX_POSTTYPE_XML 3
34
+
#define ZBX_POSTTYPE_NDJSON 4
35
+
36
+
#define ZBX_RETRIEVE_MODE_CONTENT 0
37
+
#define ZBX_RETRIEVE_MODE_HEADERS 1
38
+
#define ZBX_RETRIEVE_MODE_BOTH 2
39
+
25
40
int zbx_http_punycode_encode_url(char **url);
26
41
void zbx_http_url_encode(const char *source, char **result);
27
42
int zbx_http_url_decode(const char *source, char **result);
28
43
29
44
#ifdef HAVE_LIBCURL
30
45
31
46
typedef struct
32
47
{
33
48
char *data;
34
49
size_t allocated;