1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-04 01:23:50 +03:00

- Add protected getters for _forwardingBacklog and _macIgnoreList in FloodingMesh.

This commit is contained in:
Anders
2020-06-06 14:16:02 +02:00
parent 1d2b6b5c52
commit 66138a67cc
2 changed files with 15 additions and 7 deletions

View File

@ -308,6 +308,10 @@ protected:
* @param macArray An uint8_t array which contains the MAC address to store. The method will store the first 6 bytes of the array.
*/
void setOriginMac(const uint8_t *macArray);
std::list<std::pair<String, bool>> & getForwardingBacklog();
String & getMacIgnoreList(); // Experimental, may break in the future.
private: