* Constructor for class * * \details Handles bgp Extended Communities * * \param [in] logPtr Pointer to existing Logger for app logging * \param [in] pperAddr Printed form of peer address used for logging * \param [in] enable_debug Debug true to enable, false to disable */
| 27 | * \param [in] enable_debug Debug true to enable, false to disable |
| 28 | */ |
| 29 | ExtCommunity::ExtCommunity(Logger *logPtr, std::string peerAddr, bool enable_debug) { |
| 30 | logger = logPtr; |
| 31 | debug = enable_debug; |
| 32 | peer_addr = peerAddr; |
| 33 | } |
| 34 | |
| 35 | ExtCommunity::~ExtCommunity() { |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected