pull request #4478 review fixes

This commit is contained in:
Добрый Ээх 2016-10-12 13:03:05 +03:00
parent 8c48a61a96
commit 8eb7cf10b5
2 changed files with 20 additions and 11 deletions

View file

@ -2,6 +2,7 @@
#include "std/string.hpp"
#include "std/target_os.hpp"
#include "std/unique_ptr.hpp"
namespace platform
{
@ -25,15 +26,5 @@ public:
virtual void SetTimeout(uint32_t milliseconds) = 0;
};
class PlatformSocket final : public Socket
{
PlatformSocket();
// Socket overrides
~PlatformSocket();
bool Open(string const & host, uint16_t port) override;
void Close() override;
bool Read(uint8_t * data, uint32_t count) override;
bool Write(uint8_t const * data, uint32_t count) override;
void SetTimeout(uint32_t milliseconds) override;
};
unique_ptr<Socket> createSocket();
} // namespace platform

View file

@ -22,6 +22,24 @@
namespace platform
{
class PlatformSocket final : public Socket
{
public:
PlatformSocket();
// Socket overrides
~PlatformSocket();
bool Open(string const & host, uint16_t port) override;
void Close() override;
bool Read(uint8_t * data, uint32_t count) override;
bool Write(uint8_t const * data, uint32_t count) override;
void SetTimeout(uint32_t milliseconds) override;
};
unique_ptr<Socket> createSocket()
{
return make_unique<PlatformSocket>();
}
PlatformSocket::PlatformSocket() {}
PlatformSocket::~PlatformSocket() { Close(); }