1 // Copyright (c) 2012 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.
5 #ifndef NET_HTTP_HTTP_PIPELINED_CONNECTION_H_
6 #define NET_HTTP_HTTP_PIPELINED_CONNECTION_H_
8 #include "net/base/net_export.h"
9 #include "net/base/net_log.h"
10 #include "net/socket/ssl_client_socket.h"
15 class ClientSocketHandle
;
17 class HttpPipelinedStream
;
21 class NET_EXPORT_PRIVATE HttpPipelinedConnection
{
25 PIPELINE_SOCKET_ERROR
,
27 MUST_CLOSE_CONNECTION
,
28 AUTHENTICATION_REQUIRED
,
33 // Called when a pipeline has newly available capacity. This may be because
34 // the first request has been sent and the pipeline is now active. Or, it
35 // may be because a request successfully completed.
36 virtual void OnPipelineHasCapacity(HttpPipelinedConnection
* pipeline
) = 0;
38 // Called every time a pipeline receives headers. Lets the delegate know if
39 // the headers indicate that pipelining can be used.
40 virtual void OnPipelineFeedback(HttpPipelinedConnection
* pipeline
,
41 Feedback feedback
) = 0;
48 virtual HttpPipelinedConnection
* CreateNewPipeline(
49 ClientSocketHandle
* connection
,
51 const HostPortPair
& origin
,
52 const SSLConfig
& used_ssl_config
,
53 const ProxyInfo
& used_proxy_info
,
54 const BoundNetLog
& net_log
,
55 bool was_npn_negotiated
,
56 NextProto protocol_negotiated
) = 0;
59 virtual ~HttpPipelinedConnection() {}
61 // Returns a new stream that uses this pipeline.
62 virtual HttpPipelinedStream
* CreateNewStream() = 0;
64 // The number of streams currently associated with this pipeline.
65 virtual int depth() const = 0;
67 // True if this pipeline can accept new HTTP requests. False if a fatal error
69 virtual bool usable() const = 0;
71 // True if this pipeline has bound one request and is ready for additional
73 virtual bool active() const = 0;
75 // The SSLConfig used to establish this connection.
76 virtual const SSLConfig
& used_ssl_config() const = 0;
78 // The ProxyInfo used to establish this connection.
79 virtual const ProxyInfo
& used_proxy_info() const = 0;
81 // The BoundNetLog of this pipelined connection.
82 virtual const BoundNetLog
& net_log() const = 0;
84 // True if this connection was NPN negotiated.
85 virtual bool was_npn_negotiated() const = 0;
87 // Protocol negotiated with the server.
88 virtual NextProto
protocol_negotiated() const = 0;
93 #endif // NET_HTTP_HTTP_PIPELINED_CONNECTION_H_