| 38 | } |
| 39 | |
| 40 | void DatagramDestination::SendDatagramTo(const uint8_t * payload, size_t len, const i2p::data::IdentHash & identity, uint16_t fromPort, uint16_t toPort) |
| 41 | { |
| 42 | auto session = ObtainSession(identity); |
| 43 | SendDatagram (session, payload, len, fromPort, toPort); |
| 44 | FlushSendQueue (session); |
| 45 | } |
| 46 | |
| 47 | void DatagramDestination::SendRawDatagramTo(const uint8_t * payload, size_t len, const i2p::data::IdentHash & identity, uint16_t fromPort, uint16_t toPort) |
| 48 | { |
no outgoing calls
no test coverage detected