Handshake
parent: tbd commit: e3e5bf5
1 | use Version; |
2 | use ; |
3 | |
4 | use crate Instance; |
5 | |
6 | /// Sent by the initiator of a new inter-daemon connection. |
7 | |
8 | |
9 | pub identity: Instance, |
10 | pub version: Version, |
11 | |
12 | |
13 | /// Sent in response to [`InitiateHandshake`] |
14 | |
15 | |
16 | pub identity: Instance, |
17 | pub version: Version, |
18 | |
19 | |
20 | |
21 | |
22 | pub success: bool, |
23 | |
24 | |
25 | |
26 | |
27 | Initiate, |
28 | Response, |
29 | Finalize, |
30 | |
31 |