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