1
0
Fork 0

remove api bloat

This commit is contained in:
Kevin Matz 2021-08-15 12:10:18 -04:00
parent e6507c738d
commit 95853bd25b
2 changed files with 0 additions and 25 deletions

View File

@ -109,29 +109,6 @@ void Appliance::RlpRegisterVector(uint32_t vect, PDU::Handler<RLP::Pdu> handle)
}
/**
* @brief Appliance::RlpDerigsterVector
* @param vect
*
* Deregister RLP protocol handlers for the given vector.
*/
void Appliance::RlpDerigsterVector(uint32_t vect)
{
rlp_vectors_.erase(vect);
}
/**
* @brief Appliance::RlpDerigsterVector
*
* Deregister _ALL_ RLP protocol handlers.
*/
void Appliance::RlpDerigsterVector()
{
rlp_vectors_.clear();
}
/**
* @brief Appliance::SdtReceiver
* @param rlp

View File

@ -63,8 +63,6 @@ protected:
// RLP
void RlpReceiver(std::shared_ptr<RLP::Pdu>);
void RlpRegisterVector(uint32_t, PDU::Handler<RLP::Pdu>);
void RlpDerigsterVector(uint32_t);
void RlpDerigsterVector();
// RLP->SDT frames
virtual void SdtReceiver(std::shared_ptr<RLP::Pdu>);