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

Side by Side Diff: net/http/http_proxy_utils.h

Issue 3391029: Revert 60747 - Add a new class SpdyProxyClientSocket which implements ClientS... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 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/http/http_proxy_client_socket.cc ('k') | net/http/http_proxy_utils.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_HTTP_HTTP_PROXY_UTILS_H_
6 #define NET_HTTP_HTTP_PROXY_UTILS_H_
7 #pragma once
8
9 #include <string>
10
11 namespace net {
12
13 struct HttpRequestInfo;
14 class HttpRequestHeaders;
15 class HostPortPair;
16
17 // The HTTP CONNECT method for establishing a tunnel connection is documented
18 // in draft-luotonen-web-proxy-tunneling-01.txt and RFC 2817, Sections 5.2 and
19 // 5.3.
20 void BuildTunnelRequest(const HttpRequestInfo& request_info,
21 const HttpRequestHeaders& auth_headers,
22 const HostPortPair& endpoint,
23 std::string* request_line,
24 HttpRequestHeaders* request_headers);
25
26 } // namespace net
27
28 #endif // NET_HTTP_HTTP_PROXY_UTILS_H_
OLDNEW
« no previous file with comments | « net/http/http_proxy_client_socket.cc ('k') | net/http/http_proxy_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698