OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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/server/http_connection.h" | 5 #include "net/server/http_connection.h" |
6 | 6 |
7 #include "net/server/http_server.h" | 7 #include "net/server/http_server.h" |
8 #include "net/server/http_server_response_info.h" | 8 #include "net/server/http_server_response_info.h" |
9 #include "net/server/web_socket.h" | 9 #include "net/server/web_socket.h" |
10 #include "net/socket/stream_listen_socket.h" | 10 #include "net/socket/stream_listen_socket.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 return; | 24 return; |
25 socket_->Send(bytes, len); | 25 socket_->Send(bytes, len); |
26 } | 26 } |
27 | 27 |
28 void HttpConnection::Send(const HttpServerResponseInfo& response) { | 28 void HttpConnection::Send(const HttpServerResponseInfo& response) { |
29 Send(response.Serialize()); | 29 Send(response.Serialize()); |
30 } | 30 } |
31 | 31 |
32 HttpConnection::HttpConnection(HttpServer* server, | 32 HttpConnection::HttpConnection(HttpServer* server, |
33 scoped_ptr<StreamListenSocket> sock) | 33 scoped_ptr<StreamListenSocket> sock) |
34 : server_(server), | 34 : server_(server), socket_(sock.Pass()) { |
35 socket_(sock.Pass()) { | |
36 id_ = last_id_++; | 35 id_ = last_id_++; |
37 } | 36 } |
38 | 37 |
39 HttpConnection::~HttpConnection() { | 38 HttpConnection::~HttpConnection() { |
40 server_->delegate_->OnClose(id_); | 39 server_->delegate_->OnClose(id_); |
41 } | 40 } |
42 | 41 |
43 void HttpConnection::Shift(int num_bytes) { | 42 void HttpConnection::Shift(int num_bytes) { |
44 recv_data_ = recv_data_.substr(num_bytes); | 43 recv_data_ = recv_data_.substr(num_bytes); |
45 } | 44 } |
46 | 45 |
47 } // namespace net | 46 } // namespace net |
OLD | NEW |