mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
CSocketCreator: add getter for authorized sockets
Add method for obtaining the amount of authorized sockets.
This commit is contained in:
parent
8399881079
commit
c58d8f646a
@ -315,6 +315,25 @@ bool CSocketCreator::IsSocketBlocking(void) const
|
||||
return (WSAGetLastError() == WSAEWOULDBLOCK);
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: returns authorized socket count
|
||||
// Output : int
|
||||
//-----------------------------------------------------------------------------
|
||||
int CSocketCreator::GetAuthorizedSocketCount(void) const
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
for (size_t i = 0; i < m_hAcceptedSockets.size(); ++i)
|
||||
{
|
||||
if (m_hAcceptedSockets[i].m_pData->m_bAuthorized)
|
||||
{
|
||||
ret++;
|
||||
}
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose: returns accepted socket count
|
||||
// Output : int
|
||||
|
@ -31,7 +31,9 @@ public:
|
||||
bool IsListening(void) const;
|
||||
bool IsSocketBlocking(void) const;
|
||||
|
||||
int GetAuthorizedSocketCount(void) const;
|
||||
int GetAcceptedSocketCount(void) const;
|
||||
|
||||
SocketHandle_t GetAcceptedSocketHandle(int nIndex) const;
|
||||
const netadr_t& GetAcceptedSocketAddress(int nIndex) const;
|
||||
CConnectedNetConsoleData* GetAcceptedSocketData(int nIndex) const;
|
||||
@ -39,9 +41,15 @@ public:
|
||||
public:
|
||||
struct AcceptedSocket_t
|
||||
{
|
||||
SocketHandle_t m_hSocket{};
|
||||
netadr_t m_Address{};
|
||||
CConnectedNetConsoleData* m_pData = nullptr;
|
||||
AcceptedSocket_t(void)
|
||||
{
|
||||
m_hSocket = NULL;
|
||||
m_pData = nullptr;
|
||||
}
|
||||
|
||||
SocketHandle_t m_hSocket;
|
||||
netadr_t m_Address;
|
||||
CConnectedNetConsoleData* m_pData;
|
||||
};
|
||||
|
||||
std::vector<AcceptedSocket_t> m_hAcceptedSockets;
|
||||
|
Loading…
x
Reference in New Issue
Block a user