mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-04-09 16:24:02 +00:00
Add G2 port caching
This commit is contained in:
parent
21b1b967be
commit
bf4738c8a2
4 changed files with 48 additions and 13 deletions
|
|
@ -146,9 +146,14 @@ public:
|
|||
|
||||
void updateUser(const wxString& user, const wxString& repeater, const wxString& gateway, const wxString& address, const wxString& timeStamp, DSTAR_PROTOCOL protocol, bool addrLock, bool protoLock);
|
||||
void updateRepeater(const wxString& repeater, const wxString& gateway, const wxString& address, DSTAR_PROTOCOL protocol, bool addrLock, bool protoLock);
|
||||
void updateGateway(const wxString& gateway, const wxString& address, DSTAR_PROTOCOL protocol, bool addrLock, bool protoLock);
|
||||
void updateGateway(const wxString& gateway, const wxString& address, DSTAR_PROTOCOL protocol,bool addrLock, bool protoLock);
|
||||
void updateGatewayG2(const wxString& gateway, const wxString& address, unsigned int g2Port);
|
||||
|
||||
private:
|
||||
void updateUser(const wxString& user, const wxString& repeater, const wxString& gateway, const wxString& address, unsigned int g2Port, bool ignoreG2Port, const wxString& timeStamp, DSTAR_PROTOCOL protocol, bool addrLock, bool protoLock);
|
||||
void updateRepeater(const wxString& repeater, const wxString& gateway, const wxString& address, unsigned int g2Port, bool ignoreG2Port, DSTAR_PROTOCOL protocol, bool addrLock, bool protoLock);
|
||||
void updateGateway(const wxString& gateway, const wxString& address, unsigned int g2Port, bool ignoreG2Port, DSTAR_PROTOCOL protocol,bool addrLock, bool protoLock);
|
||||
|
||||
wxMutex m_mutex;
|
||||
CUserCache m_userCache;
|
||||
CGatewayCache m_gatewayCache;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue