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

Side by Side Diff: net/server/http_server_request_info.h

Issue 2868036: Brushed up listen socket: (Closed)
Patch Set: Lint. Created 10 years, 5 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
« no previous file with comments | « net/server/http_listen_socket.cc ('k') | net/socket/tcp_client_socket_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NET_SERVER_HTTP_SERVER_REQUEST_INFO_H_
6 #define NET_SERVER_HTTP_SERVER_REQUEST_INFO_H_
7
8 #include <string>
9
10 #include "net/http/http_request_info.h"
11
12 // Meta information about an HTTP request.
13 // This is geared toward servers in that it keeps a map of the headers and
14 // values rather than just a list of header strings (which net::HttpRequestInfo
15 // does).
16 class HttpServerRequestInfo {
17 public:
18 HttpServerRequestInfo() {}
19
20 // Request method.
21 std::string method;
22
23 // Request line.
24 std::string path;
25
26 // Request data.
27 std::string data;
28
29 // A map of the names -> values for HTTP headers.
30 typedef std::map<std::string, std::string> HeadersMap;
31 HeadersMap headers;
32 };
33
34 #endif // NET_SERVER_HTTP_SERVER_REQUEST_INFO_H_
OLDNEW
« no previous file with comments | « net/server/http_listen_socket.cc ('k') | net/socket/tcp_client_socket_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698