-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
Description
The m_beaconHandlers
map can grow without bound as new PVA servers come online.
pvAccessCPP/src/remoteClient/clientContextImpl.cpp
Lines 4525 to 4530 in b2f0aec
/** | |
* Beacon handler map. | |
*/ | |
// TODO consider std::unordered_map | |
typedef std::map<osiSockAddr, BeaconHandler::shared_pointer, comp_osiSock_lt> AddressBeaconHandlerMap; | |
AddressBeaconHandlerMap m_beaconHandlers; |
This map needs to be bounded in size and/or time. (like PVXS does...)