diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-05-02 10:27:36 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-06-09 12:40:08 +0200 |
commit | cc3b75b807c6dd63b6dde3b449054f6640826f7c (patch) | |
tree | d3886063e2bea4ddc8c9e112468316f078c30310 /source3/librpc | |
parent | 8d803d5a0a9a7815c4e6fcbd9b7c652fb85e94dd (diff) | |
download | samba-cc3b75b807c6dd63b6dde3b449054f6640826f7c.tar.gz samba-cc3b75b807c6dd63b6dde3b449054f6640826f7c.tar.bz2 samba-cc3b75b807c6dd63b6dde3b449054f6640826f7c.zip |
s3-server_id Add task_id to server_id to match Samba4
This will allow this structure to be shared, and allow us to create a
common messaging system between all Samba processes. Samba4 uses the
task_id to indicate the different tasks within a single unix process.
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/idl/server_id.idl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/librpc/idl/server_id.idl b/source3/librpc/idl/server_id.idl index ed727881c7..095405af56 100644 --- a/source3/librpc/idl/server_id.idl +++ b/source3/librpc/idl/server_id.idl @@ -19,6 +19,7 @@ interface server_id typedef [public] struct { uint32 pid; + uint32 task_id; uint32 vnn; udlong unique_id; } server_id; |