1 /* This file is part of the YAZ toolkit.
2 * Copyright (C) 1995-2013 Index Data.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of Index Data nor the names of its contributors
13 * may be used to endorse or promote products derived from this
14 * software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * \brief Header for the Z_GDU (HTTP or Z39.50 package)
36 #include <yaz/z-core.h>
40 typedef struct Z_HTTP_Header Z_HTTP_Header;
42 struct Z_HTTP_Header {
52 Z_HTTP_Header *headers;
60 Z_HTTP_Header *headers;
66 #define Z_GDU_HTTP_Request 2
67 #define Z_GDU_HTTP_Response 3
72 Z_HTTP_Request *HTTP_Request;
73 Z_HTTP_Response *HTTP_Response;
76 YAZ_EXPORT int z_GDU (ODR o, Z_GDU **p, int opt, const char *name);
77 YAZ_EXPORT void z_HTTP_header_add(ODR o, Z_HTTP_Header **hp, const char *n,
79 YAZ_EXPORT void z_HTTP_header_set(ODR o, Z_HTTP_Header **hp, const char *n,
81 YAZ_EXPORT void z_HTTP_header_add_content_type(ODR o, Z_HTTP_Header **hp,
82 const char *content_type,
84 YAZ_EXPORT void z_HTTP_header_add_basic_auth(ODR o, Z_HTTP_Header **hp,
86 const char *password);
87 YAZ_EXPORT const char *z_HTTP_header_lookup(const Z_HTTP_Header *hp,
89 YAZ_EXPORT const char *z_HTTP_header_remove(Z_HTTP_Header **hp,
92 YAZ_EXPORT const char *z_HTTP_errmsg(int code);
94 YAZ_EXPORT Z_GDU *z_get_HTTP_Response(ODR o, int code);
95 YAZ_EXPORT Z_GDU *z_get_HTTP_Response_details(ODR o, int code,
97 YAZ_EXPORT Z_GDU *z_get_HTTP_Response_server(ODR o,
98 int code, const char *details,
100 const char *server_url);
101 YAZ_EXPORT Z_GDU *z_get_HTTP_Request(ODR o);
102 YAZ_EXPORT Z_GDU *z_get_HTTP_Request_host_path(ODR odr,
105 YAZ_EXPORT Z_GDU *z_get_HTTP_Request_uri(ODR odr, const char *uri,
108 YAZ_EXPORT int yaz_decode_http_request(ODR o, Z_HTTP_Request **hr_p);
109 YAZ_EXPORT int yaz_decode_http_response(ODR o, Z_HTTP_Response **hr_p);
110 YAZ_EXPORT int yaz_encode_http_response(ODR o, Z_HTTP_Response *hr);
111 YAZ_EXPORT int yaz_encode_http_request(ODR o, Z_HTTP_Request *hr);
119 * c-file-style: "Stroustrup"
120 * indent-tabs-mode: nil
122 * vim: shiftwidth=4 tabstop=8 expandtab