callback functions that take network specific arguments and cast them away
| 47 | |
| 48 | // callback functions that take network specific arguments and cast them away |
| 49 | void passAdvertisement(const PEERID& host, Util::MemoryFrame ad) |
| 50 | { |
| 51 | SNP::passAdvertisement(makeBin(host), ad); |
| 52 | } |
| 53 | void removeAdvertisement(const PEERID& host) |
| 54 | { |
| 55 | SNP::removeAdvertisement(makeBin(host)); |
nothing calls this directly
no test coverage detected