| 2881 | } |
| 2882 | |
| 2883 | size_t SSU2Session::CreateRouterInfoBlock (uint8_t * buf, size_t len, std::shared_ptr<const i2p::data::RouterInfo> r) |
| 2884 | { |
| 2885 | if (!r || len < 5) return 0; |
| 2886 | return CreateRouterInfoBlock (buf, len, r->GetSharedBuffer ()); |
| 2887 | } |
| 2888 | |
| 2889 | size_t SSU2Session::CreateRouterInfoBlock (uint8_t * buf, size_t len, std::shared_ptr<const i2p::data::RouterInfo::Buffer> riBuffer) |
| 2890 | { |
no test coverage detected