summaryrefslogtreecommitdiff
path: root/librpc/idl/server_id.idl
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-05-02 10:55:20 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-06-09 12:40:08 +0200
commitd057116cc2e454ba097d0dcb22e16108a05a4a1b (patch)
treeaee1503507f6a5d54b92284a57f758b80fa70820 /librpc/idl/server_id.idl
parent174893c312f700105f8cda069cdb3b51a5aa602c (diff)
downloadsamba-d057116cc2e454ba097d0dcb22e16108a05a4a1b.tar.gz
samba-d057116cc2e454ba097d0dcb22e16108a05a4a1b.tar.bz2
samba-d057116cc2e454ba097d0dcb22e16108a05a4a1b.zip
server_id.idl: Bring server_id.idl in common
Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'librpc/idl/server_id.idl')
-rw-r--r--librpc/idl/server_id.idl26
1 files changed, 26 insertions, 0 deletions
diff --git a/librpc/idl/server_id.idl b/librpc/idl/server_id.idl
new file mode 100644
index 0000000000..51900000ed
--- /dev/null
+++ b/librpc/idl/server_id.idl
@@ -0,0 +1,26 @@
+[
+ pointer_default(unique)
+]
+interface server_id
+{
+
+ /* used to look like the following, note that unique_id was not
+ * marshalled at all...
+
+ struct server_id {
+ pid_t pid;
+ #ifdef CLUSTER_SUPPORT
+ uint32 vnn;
+ #endif
+ uint64_t unique_id;
+ };
+
+ */
+
+ typedef [public] struct {
+ hyper pid;
+ uint32 task_id;
+ uint32 vnn;
+ udlong unique_id;
+ } server_id;
+}