CSocketCreator: add getter for authorized sockets

Add method for obtaining the amount of authorized sockets.
This commit is contained in:
Kawe Mazidjatari 2023-03-13 20:39:49 +01:00
parent 8399881079
commit c58d8f646a
2 changed files with 30 additions and 3 deletions

View File

@ -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

View File

@ -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;