Add win socket client and server.
This commit is contained in:
parent
426ea55b3b
commit
4d2464c1f5
45 changed files with 1167 additions and 246 deletions
13
src/base/network/sockets/WinsockInterface.h
Normal file
13
src/base/network/sockets/WinsockInterface.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
#pragma once
|
||||
|
||||
#include "SocketInterface.h"
|
||||
|
||||
class WinsockInterface : public ISocketInterface
|
||||
{
|
||||
public:
|
||||
~WinsockInterface();
|
||||
|
||||
bool initializeWinsock();
|
||||
|
||||
void closeWinsock();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue