http_definitions.c
Go to the documentation of this file.
1 /*!**********************************************************************
2 *
3 * @copyright Copyright (C) 2016 Siemens Aktiengesellschaft.\n
4 * All rights reserved.
5 *
6 *************************************************************************
7 *
8 * @file http_definitions.c
9 * @date Sep 23, 2016
10 * @brief HTTP definitions module implementation file.
11 *
12 ************************************************************************/
13 
14 #include "http_definitions.h"
15 #include "definitions.h"
16 
18 {
19  STRING_CONSTANT("Authorization"),
20  STRING_CONSTANT("Content-Type"),
21  STRING_CONSTANT("Content-ID"),
22  STRING_CONSTANT("Content-Length"),
23  STRING_CONSTANT("Transfer-Encoding"),
24  STRING_CONSTANT("Transfer-Encoding: chunked"),
25  STRING_CONSTANT("User-Agent"),
26  STRING_CONSTANT("Accept"),
27  STRING_CONSTANT("Host"),
28  STRING_CONSTANT("Content-Disposition"),
29  STRING_CONSTANT("Range"),
30  STRING_CONSTANT("Content-Range"),
31  STRING_CONSTANT("Server-Time"),
32  STRING_CONSTANT("If-Match"),
33  STRING_CONSTANT("ETag"),
34  STRING_CONSTANT("Correlation-ID")
35 };
HTTP definitions module header file.
#define STRING_CONSTANT(s)
Definition: definitions.h:135
End of http header names.
string_t http_header_names[HTTP_HEADER_NAMES_END]
Definitions module header file.