Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: net/tools/balsa/http_message_constants.cc

Issue 25085002: Break out balsa and epoll_server from net/tools/flip_server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/tools/balsa/http_message_constants.h ('k') | net/tools/balsa/noop_balsa_visitor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/tools/flip_server/http_message_constants.h" 5 #include "net/tools/balsa/http_message_constants.h"
6 6
7 namespace net { 7 namespace net {
8 8
9 const char* get_http_status_message(int status_message) { 9 const char* get_http_status_message(int status_message) {
10 switch (status_message) { 10 switch (status_message) {
11 case 100: 11 case 100:
12 return "Continue"; 12 return "Continue";
13 case 101: 13 case 101:
14 return "Switching Protocols"; 14 return "Switching Protocols";
15 case 200: 15 case 200:
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 505 137 505
138 }; 138 };
139 139
140 //////////////////////////////////////////////////////////////////////////////// 140 ////////////////////////////////////////////////////////////////////////////////
141 141
142 const int http_status_code_count = sizeof(http_status_codes) / 142 const int http_status_code_count = sizeof(http_status_codes) /
143 sizeof(http_status_codes[0]); 143 sizeof(http_status_codes[0]);
144 144
145 } // namespace net 145 } // namespace net
146 146
OLDNEW
« no previous file with comments | « net/tools/balsa/http_message_constants.h ('k') | net/tools/balsa/noop_balsa_visitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698