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 #ifndef WEBRTC_BASE_NULLSOCKETSERVER_H_ | 11 #ifndef WEBRTC_BASE_NULLSOCKETSERVER_H_ |
12 #define WEBRTC_BASE_NULLSOCKETSERVER_H_ | 12 #define WEBRTC_BASE_NULLSOCKETSERVER_H_ |
13 | 13 |
14 #include "webrtc/base/event.h" | 14 #include "webrtc/base/event.h" |
15 #include "webrtc/base/physicalsocketserver.h" | 15 #include "webrtc/base/socketserver.h" |
16 | 16 |
17 namespace rtc { | 17 namespace rtc { |
18 | 18 |
19 // NullSocketServer | 19 class NullSocketServer : public SocketServer { |
| 20 public: |
| 21 NullSocketServer(); |
| 22 ~NullSocketServer() override; |
20 | 23 |
21 class NullSocketServer : public rtc::SocketServer { | 24 bool Wait(int cms, bool process_io) override; |
22 public: | 25 void WakeUp() override; |
23 NullSocketServer() : event_(false, false) {} | |
24 | 26 |
25 virtual bool Wait(int cms, bool process_io) { | 27 Socket* CreateSocket(int type) override; |
26 event_.Wait(cms); | 28 Socket* CreateSocket(int family, int type) override; |
27 return true; | 29 AsyncSocket* CreateAsyncSocket(int type) override; |
28 } | 30 AsyncSocket* CreateAsyncSocket(int family, int type) override; |
29 | |
30 virtual void WakeUp() { | |
31 event_.Set(); | |
32 } | |
33 | |
34 virtual rtc::Socket* CreateSocket(int type) { | |
35 ASSERT(false); | |
36 return NULL; | |
37 } | |
38 | |
39 virtual rtc::Socket* CreateSocket(int family, int type) { | |
40 ASSERT(false); | |
41 return NULL; | |
42 } | |
43 | |
44 virtual rtc::AsyncSocket* CreateAsyncSocket(int type) { | |
45 ASSERT(false); | |
46 return NULL; | |
47 } | |
48 | |
49 virtual rtc::AsyncSocket* CreateAsyncSocket(int family, int type) { | |
50 ASSERT(false); | |
51 return NULL; | |
52 } | |
53 | |
54 | 31 |
55 private: | 32 private: |
56 rtc::Event event_; | 33 Event event_; |
57 }; | 34 }; |
58 | 35 |
59 } // namespace rtc | 36 } // namespace rtc |
60 | 37 |
61 #endif // WEBRTC_BASE_NULLSOCKETSERVER_H_ | 38 #endif // WEBRTC_BASE_NULLSOCKETSERVER_H_ |
OLD | NEW |