doip_rw 0.1.0

Diagnostic over IP encoder and decoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::LogicalAddress;

#[derive(Debug, Clone, PartialEq)]
/// Alive check request message
///
/// The alive check request is a message sent by the DoIp entity tested to the
/// external tester to verify the tester is still plugged in.
pub struct AliveCheckRequest {}

#[derive(Debug, Clone, PartialEq)]
/// Alive check response message
///
/// The alive check response is a message sent by the DoIp external tester to the
/// DoIp entity to notify it is still plugged in.
pub struct AliveCheckResponse {
    /// Logical address of the tester
    pub source_address: LogicalAddress,
}