1 ///
2 module drmi.core.types;
3 
4 public import drmi.sbin;
5 
6 ///
7 struct RMICall
8 {
9     ///
10     string caller;
11     ///
12     string func;
13     ///
14     long ts;
15     ///
16     ubyte[] data;
17 }
18 
19 ///
20 struct RMIResponse
21 {
22     ///
23     uint status;
24     ///
25     RMICall call;
26     ///
27     ubyte[] data;
28 }