mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-13 10:37:02 +02:00
Include the correct .h files in http_client.c and http_client.h. The api.h is needed in http_client.c and http_client-t.h is now include directly from http_client.h
14 lines
516 B
C
14 lines
516 B
C
#ifndef _HAPROXY_HTTPCLIENT_H
|
|
#define _HAPROXY_HTTPCLIENT_H
|
|
|
|
#include <haproxy/http_client-t.h>
|
|
|
|
void httpclient_destroy(struct httpclient *hc);
|
|
struct httpclient *httpclient_new(void *caller, enum http_meth_t meth, struct ist url);
|
|
|
|
struct appctx *httpclient_start(struct httpclient *hc);
|
|
int httpclient_res_xfer(struct httpclient *hc, struct buffer *dst);
|
|
int httpclient_req_gen(struct httpclient *hc, const struct ist url, enum http_meth_t meth, const struct http_hdr *hdrs);
|
|
|
|
#endif /* ! _HAPROXY_HTTCLIENT_H */
|