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/base/checks.h" | |
14 #include "webrtc/base/logging.h" | |
15 #include "webrtc/base/nethelpers.h" | |
16 #include "webrtc/base/stringutils.h" | |
17 #include "webrtc/base/thread.h" | |
18 #include "webrtc/examples/peerconnection/client/defaults.h" | 13 #include "webrtc/examples/peerconnection/client/defaults.h" |
| 14 #include "webrtc/rtc_base/checks.h" |
| 15 #include "webrtc/rtc_base/logging.h" |
| 16 #include "webrtc/rtc_base/nethelpers.h" |
| 17 #include "webrtc/rtc_base/stringutils.h" |
| 18 #include "webrtc/rtc_base/thread.h" |
19 | 19 |
20 #ifdef WIN32 | 20 #ifdef WIN32 |
21 #include "webrtc/base/win32socketserver.h" | 21 #include "webrtc/rtc_base/win32socketserver.h" |
22 #endif | 22 #endif |
23 | 23 |
24 using rtc::sprintfn; | 24 using rtc::sprintfn; |
25 | 25 |
26 namespace { | 26 namespace { |
27 | 27 |
28 // This is our magical hangup signal. | 28 // This is our magical hangup signal. |
29 const char kByeMessage[] = "BYE"; | 29 const char kByeMessage[] = "BYE"; |
30 // Delay between server connection retries, in milliseconds | 30 // Delay between server connection retries, in milliseconds |
31 const int kReconnectDelay = 2000; | 31 const int kReconnectDelay = 2000; |
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 Close(); | 505 Close(); |
506 callback_->OnDisconnected(); | 506 callback_->OnDisconnected(); |
507 } | 507 } |
508 } | 508 } |
509 } | 509 } |
510 | 510 |
511 void PeerConnectionClient::OnMessage(rtc::Message* msg) { | 511 void PeerConnectionClient::OnMessage(rtc::Message* msg) { |
512 // ignore msg; there is currently only one supported message ("retry") | 512 // ignore msg; there is currently only one supported message ("retry") |
513 DoConnect(); | 513 DoConnect(); |
514 } | 514 } |
OLD | NEW |