diff options
Diffstat (limited to 'net/tools/flip_server/http_message_constants.h')
-rw-r--r-- | net/tools/flip_server/http_message_constants.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/net/tools/flip_server/http_message_constants.h b/net/tools/flip_server/http_message_constants.h new file mode 100644 index 0000000..fdee50b --- /dev/null +++ b/net/tools/flip_server/http_message_constants.h @@ -0,0 +1,17 @@ +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef NET_TOOLS_FLIP_SERVER_HTTP_MESSAGE_CONSTANTS_H__ +#define NET_TOOLS_FLIP_SERVER_HTTP_MESSAGE_CONSTANTS_H__ + +namespace gfe2 { + +const char* get_http_status_message(int status_message); +extern const int http_status_codes[]; +extern const int http_status_code_count; + +} // namespace gfe2 + +#endif // NET_TOOLS_FLIP_SERVER_HTTP_MESSAGE_CONSTANTS_H__ + |