1/*
2 * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License").
5 * You may not use this file except in compliance with the License.
6 * A copy of the License is located at
7 *
8 * http://aws.amazon.com/apache2.0
9 *
10 * or in the "license" file accompanying this file. This file is distributed
11 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12 * express or implied. See the License for the specific language governing
13 * permissions and limitations under the License.
14 */
15
16#include <aws/core/http/HttpRequest.h>
17
18namespace Aws
19{
20namespace Http
21{
22
23const char DATE_HEADER[] = "date";
24const char AWS_DATE_HEADER[] = "X-Amz-Date";
25const char AWS_SECURITY_TOKEN[] = "X-Amz-Security-Token";
26const char ACCEPT_HEADER[] = "accept";
27const char ACCEPT_CHAR_SET_HEADER[] = "accept-charset";
28const char ACCEPT_ENCODING_HEADER[] = "accept-encoding";
29const char AUTHORIZATION_HEADER[] = "authorization";
30const char AWS_AUTHORIZATION_HEADER[] = "authorization";
31const char COOKIE_HEADER[] = "cookie";
32const char CONTENT_LENGTH_HEADER[] = "content-length";
33const char CONTENT_TYPE_HEADER[] = "content-type";
34const char TRANSFER_ENCODING_HEADER[] = "transfer-encoding";
35const char USER_AGENT_HEADER[] = "user-agent";
36const char VIA_HEADER[] = "via";
37const char HOST_HEADER[] = "host";
38const char AMZ_TARGET_HEADER[] = "x-amz-target";
39const char X_AMZ_EXPIRES_HEADER[] = "X-Amz-Expires";
40const char CONTENT_MD5_HEADER[] = "content-md5";
41const char API_VERSION_HEADER[] = "x-amz-api-version";
42const char CHUNKED_VALUE[] = "chunked";
43
44} // Http
45} // Aws
46
47
48
49