Extract protobuf database into a new 'leveldb_proto' component
[chromium-blink-merge.git] / net / server / http_connection.h
blob17faa46eb6b77304085635364f4a73b65c3c7821
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_SERVER_HTTP_CONNECTION_H_
6 #define NET_SERVER_HTTP_CONNECTION_H_
8 #include <string>
10 #include "base/basictypes.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "net/http/http_status_code.h"
14 namespace net {
16 class HttpServer;
17 class HttpServerResponseInfo;
18 class StreamListenSocket;
19 class WebSocket;
21 class HttpConnection {
22 public:
23 ~HttpConnection();
25 void Send(const std::string& data);
26 void Send(const char* bytes, int len);
27 void Send(const HttpServerResponseInfo& response);
29 void Shift(int num_bytes);
31 const std::string& recv_data() const { return recv_data_; }
32 int id() const { return id_; }
34 private:
35 friend class HttpServer;
36 static int last_id_;
38 HttpConnection(HttpServer* server, scoped_ptr<StreamListenSocket> sock);
40 HttpServer* server_;
41 scoped_ptr<StreamListenSocket> socket_;
42 scoped_ptr<WebSocket> web_socket_;
43 std::string recv_data_;
44 int id_;
45 DISALLOW_COPY_AND_ASSIGN(HttpConnection);
48 } // namespace net
50 #endif // NET_SERVER_HTTP_CONNECTION_H_