proxygen
HeaderConstants.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018-present, Facebook, Inc.
3  * All rights reserved.
4  *
5  * This source code is licensed under the BSD-style license found in the
6  * LICENSE file in the root directory of this source tree. An additional grant
7  * of patent rights can be found in the PATENTS file in the same directory.
8  *
9  */
11 
12 namespace proxygen { namespace headers {
13 
14 const std::string kAuthority(":authority");
15 const std::string kMethod(":method");
16 const std::string kPath(":path");
17 const std::string kScheme(":scheme");
18 const std::string kStatus(":status");
19 const std::string kProtocol(":protocol");
20 
21 const std::string kHttp("http");
22 const std::string kHttps("https");
23 
24 const std::string kWebsocketString("websocket");
25 const std::string kStatus200("200");
26 
27 }}
const std::string kProtocol
const std::string kScheme
const std::string kStatus200
const std::string kHttp
const char * string
Definition: Conv.cpp:212
const std::string kStatus
const std::string kPath
const std::string kAuthority
const std::string kWebsocketString
const std::string kMethod
const std::string kHttps