summaryrefslogtreecommitdiff
path: root/private.h
blob: 954d29eebe3106c4ba150ec9fe271beb0d1c2d20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <curl/curl.h>
#include <json.h>
#include "pikul.h"

extern struct shipping {
	CURL *handle;
	char *base;
	struct curl_slist *headers;
	const char **status_trail;
	char *url;
	char *post;
	json_tokener *tokener;
	enum {
		SERVICES,
		ORDER
	} mode;
	const char **trail;
	void *data;
} *shipping_list[];