blob: 3d308474497daa703a14ae3d8055e4c6b9e8b549 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/*
* Copyright (C) 2013 Andreas Steffen
* HSR Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
/**
* @defgroup tnc_ifmap_http tnc_ifmap_http
* @{ @ingroup tnc_ifmap
*/
#ifndef TNC_IFMAP_HTTP_H_
#define TNC_IFMAP_HTTP_H_
#include <library.h>
#include <tls_socket.h>
#include <libxml/parser.h>
typedef struct tnc_ifmap_http_t tnc_ifmap_http_t;
/**
* Interface for building and processing HTTP messages
*/
struct tnc_ifmap_http_t {
/**
* Build a HTTP POST message
*
* @param in input data
* @param out HTTP POST request
* @result status return code
*/
status_t (*build)(tnc_ifmap_http_t *this, chunk_t *in, chunk_t *out);
/**
* Receive a HTTP [chunked] response
*
* @param in [chunked] HTTP response
* @param out output data
* @result status return code
*/
status_t (*process)(tnc_ifmap_http_t *this, chunk_t *in, chunk_t *out);
/**
* Destroy a tnc_ifmap_http_t object.
*/
void (*destroy)(tnc_ifmap_http_t *this);
};
/**
* Create a tnc_ifmap_http instance.
*
* @param uri HTTPS URI with https:// prefix removed
* @param user_pass Optional username:password for HTTP Basic Authentication
*/
tnc_ifmap_http_t *tnc_ifmap_http_create(char *uri, chunk_t user_pass);
#endif /** TNC_IFMAP_HTTP_H_ @}*/
|