diff options
author | Andreas Schneider <asn@samba.org> | 2011-03-03 14:20:26 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-03-08 11:41:30 +0100 |
commit | cc5b88545de27ae37a8e8876490d0207c80fae6f (patch) | |
tree | 4a10dbf8cd7bddadeb7df6b51d4c9e9211de111c /source3/include | |
parent | bd66fc81b648eaa966522f78c03f5844d9019c44 (diff) | |
download | samba-cc5b88545de27ae37a8e8876490d0207c80fae6f.tar.gz samba-cc5b88545de27ae37a8e8876490d0207c80fae6f.tar.bz2 samba-cc5b88545de27ae37a8e8876490d0207c80fae6f.zip |
s3-rpc_server: Introduce transport in pipe_struct.
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/includes.h | 2 | ||||
-rw-r--r-- | source3/include/ntdomain.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index d715db6354..c79c96260a 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -612,8 +612,8 @@ extern void *cmdline_lp_ctx; #include "msdfs.h" #include "auth.h" -#include "ntdomain.h" #include "librpc/rpc/dcerpc.h" +#include "ntdomain.h" #include "client.h" #include "module.h" diff --git a/source3/include/ntdomain.h b/source3/include/ntdomain.h index e1be93c4ba..5819c9aa65 100644 --- a/source3/include/ntdomain.h +++ b/source3/include/ntdomain.h @@ -120,6 +120,8 @@ struct pipes_struct { struct client_address *client_id; struct client_address *server_id; + enum dcerpc_transport_t transport; + struct auth_serversupplied_info *session_info; struct messaging_context *msg_ctx; |