| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2012 The WebRTC Project Authors. All rights reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include "webrtc/examples/peerconnection/client/peer_connection_client.h" | 11 #include "webrtc/examples/peerconnection/client/peer_connection_client.h" |
| 12 | 12 |
| 13 #include "webrtc/examples/peerconnection/client/defaults.h" | 13 #include "webrtc/examples/peerconnection/client/defaults.h" |
| 14 #include "webrtc/rtc_base/checks.h" | 14 #include "webrtc/rtc_base/checks.h" |
| 15 #include "webrtc/rtc_base/logging.h" | 15 #include "webrtc/rtc_base/logging.h" |
| 16 #include "webrtc/rtc_base/nethelpers.h" | 16 #include "webrtc/rtc_base/nethelpers.h" |
| 17 #include "webrtc/rtc_base/stringutils.h" | 17 #include "webrtc/rtc_base/stringutils.h" |
| 18 #include "webrtc/rtc_base/thread.h" | |
| 19 | 18 |
| 20 #ifdef WIN32 | 19 #ifdef WIN32 |
| 21 #include "webrtc/rtc_base/win32socketserver.h" | 20 #include "webrtc/rtc_base/win32socketserver.h" |
| 22 #endif | 21 #endif |
| 23 | 22 |
| 24 using rtc::sprintfn; | 23 using rtc::sprintfn; |
| 25 | 24 |
| 26 namespace { | 25 namespace { |
| 27 | 26 |
| 28 // This is our magical hangup signal. | 27 // This is our magical hangup signal. |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 Close(); | 504 Close(); |
| 506 callback_->OnDisconnected(); | 505 callback_->OnDisconnected(); |
| 507 } | 506 } |
| 508 } | 507 } |
| 509 } | 508 } |
| 510 | 509 |
| 511 void PeerConnectionClient::OnMessage(rtc::Message* msg) { | 510 void PeerConnectionClient::OnMessage(rtc::Message* msg) { |
| 512 // ignore msg; there is currently only one supported message ("retry") | 511 // ignore msg; there is currently only one supported message ("retry") |
| 513 DoConnect(); | 512 DoConnect(); |
| 514 } | 513 } |
| OLD | NEW |