OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/tools/flip_server/streamer_interface.h" | 5 #include "net/tools/flip_server/streamer_interface.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "net/tools/flip_server/balsa_frame.h" | 9 #include "net/tools/balsa/balsa_frame.h" |
10 #include "net/tools/flip_server/constants.h" | 10 #include "net/tools/flip_server/constants.h" |
11 #include "net/tools/flip_server/flip_config.h" | 11 #include "net/tools/flip_server/flip_config.h" |
12 #include "net/tools/flip_server/sm_connection.h" | 12 #include "net/tools/flip_server/sm_connection.h" |
13 | 13 |
14 namespace net { | 14 namespace net { |
15 | 15 |
16 std::string StreamerSM::forward_ip_header_; | 16 std::string StreamerSM::forward_ip_header_; |
17 | 17 |
18 StreamerSM::StreamerSM(SMConnection* connection, | 18 StreamerSM::StreamerSM(SMConnection* connection, |
19 SMInterface* sm_other_interface, | 19 SMInterface* sm_other_interface, |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 void StreamerSM::HandleBodyError(BalsaFrame* framer) { | 198 void StreamerSM::HandleBodyError(BalsaFrame* framer) { |
199 HandleError(); | 199 HandleError(); |
200 } | 200 } |
201 | 201 |
202 void StreamerSM::HandleError() { | 202 void StreamerSM::HandleError() { |
203 VLOG(1) << ACCEPTOR_CLIENT_IDENT << "Error detected"; | 203 VLOG(1) << ACCEPTOR_CLIENT_IDENT << "Error detected"; |
204 } | 204 } |
205 | 205 |
206 } // namespace net | 206 } // namespace net |
207 | 207 |
OLD | NEW |