This commit is contained in:
biosvos
2026-08-07 17:38:18 +09:00
commit 873193a243
9613 changed files with 2755992 additions and 0 deletions
@@ -0,0 +1,19 @@
#pragma once
class CSocketUtil
{
public:
CSocketUtil(void);
~CSocketUtil(void);
public:
static int _sh_send(SOCKET s, char *buf, int len);
static int _sh_recv(SOCKET s, char *buf, int len);
int _rtxTimer(int sec , SOCKET descriptor);
CString get_first_rcts(const char *name);
unsigned long conv_addr(const char *name);
BOOL MessagePump(int nSleepDuration);
};