Home
last modified time | relevance | path

Searched refs:sent (Results 1 – 3 of 3) sorted by relevance

/smoltcp-0.9.1/
DREADME.md34 * ARP requests are sent at a rate not exceeding one per second.
70 * Membership reports are sent in response to membership queries at
119 * Keep-alive packets may be sent at a configurable interval.
441 the ECHO\_REQUEST packet is dropped and an ARP request is sent instead.
DCHANGELOG.md93 …- Fix delayed ack causing ack not to be sent after 3 packets. ([#530](https://github.com/smoltcp-r…
/smoltcp-0.9.1/src/socket/
Dtcp.rs2451 let mut sent = 0; in recv() localVariable
2461 sent += 1; in recv()
2465 Ok(()) => assert_eq!(sent, 1, "Exactly one packet should be sent"), in recv()