Added WirelessManager, a port of wpa_supplicant.
[AROS.git] / workbench / network / WirelessManager / src / wps / http_client.h
blob924d6ab4a2a460a1fb84a2eaf19ea8dc443b84d0
1 /*
2 * http_client - HTTP client
3 * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
12 * See README and COPYING for more details.
15 #ifndef HTTP_CLIENT_H
16 #define HTTP_CLIENT_H
18 struct http_client;
20 enum http_client_event {
21 HTTP_CLIENT_FAILED,
22 HTTP_CLIENT_TIMEOUT,
23 HTTP_CLIENT_OK,
24 HTTP_CLIENT_INVALID_REPLY,
27 char * http_client_url_parse(const char *url, struct sockaddr_in *dst,
28 char **path);
29 struct http_client * http_client_addr(struct sockaddr_in *dst,
30 struct wpabuf *req, size_t max_response,
31 void (*cb)(void *ctx,
32 struct http_client *c,
33 enum http_client_event event),
34 void *cb_ctx);
35 struct http_client * http_client_url(const char *url,
36 struct wpabuf *req, size_t max_response,
37 void (*cb)(void *ctx,
38 struct http_client *c,
39 enum http_client_event event),
40 void *cb_ctx);
41 void http_client_free(struct http_client *c);
42 struct wpabuf * http_client_get_body(struct http_client *c);
43 char * http_client_get_hdr_line(struct http_client *c, const char *tag);
44 char * http_link_update(char *url, const char *base);
46 #endif /* HTTP_CLIENT_H */