mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-04-26 21:35:09 -06:00
16 lines
355 B
C++
16 lines
355 B
C++
#include <winsock.h>
|
|
#include "..\SocTransport.h"
|
|
|
|
class WsTransport : public SocTransport // tra
|
|
{
|
|
public:
|
|
static int GetTransportDescriptions(TransportDescription *atrad, int ctradMax);
|
|
static Transport *Open(TransportDescription *ptrad);
|
|
WsTransport(dword dwIpAddress);
|
|
|
|
// Transport implementation
|
|
|
|
virtual bool Open();
|
|
virtual void Close();
|
|
};
|