2014-05-13 18:00:26 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright 2012 The WebRTC Project Authors. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef WEBRTC_BASE_NULLSOCKETSERVER_H_
|
|
|
|
|
#define WEBRTC_BASE_NULLSOCKETSERVER_H_
|
|
|
|
|
|
|
|
|
|
#include "webrtc/base/event.h"
|
2016-04-28 01:32:48 -07:00
|
|
|
#include "webrtc/base/socketserver.h"
|
2014-05-13 18:00:26 +00:00
|
|
|
|
|
|
|
|
namespace rtc {
|
|
|
|
|
|
2016-04-28 01:32:48 -07:00
|
|
|
class NullSocketServer : public SocketServer {
|
2014-05-13 18:00:26 +00:00
|
|
|
public:
|
2016-04-28 01:32:48 -07:00
|
|
|
NullSocketServer();
|
|
|
|
|
~NullSocketServer() override;
|
2014-05-13 18:00:26 +00:00
|
|
|
|
2016-04-28 01:32:48 -07:00
|
|
|
bool Wait(int cms, bool process_io) override;
|
|
|
|
|
void WakeUp() override;
|
2014-05-13 18:00:26 +00:00
|
|
|
|
2016-04-28 01:32:48 -07:00
|
|
|
Socket* CreateSocket(int type) override;
|
|
|
|
|
Socket* CreateSocket(int family, int type) override;
|
|
|
|
|
AsyncSocket* CreateAsyncSocket(int type) override;
|
|
|
|
|
AsyncSocket* CreateAsyncSocket(int family, int type) override;
|
2014-05-13 18:00:26 +00:00
|
|
|
|
|
|
|
|
private:
|
2016-04-28 01:32:48 -07:00
|
|
|
Event event_;
|
2014-05-13 18:00:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace rtc
|
|
|
|
|
|
|
|
|
|
#endif // WEBRTC_BASE_NULLSOCKETSERVER_H_
|