diff options
author | Rafal Szczesniak <mimir@samba.org> | 2005-06-07 23:24:57 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:48 -0500 |
commit | 4ce638313aa79117a97ff402b14a94c3d75cccd1 (patch) | |
tree | 8c0d3ed8abe70221f1ae610f2367c50957046ea7 | |
parent | 7b47fad5d61a63f46314e29e797709eb0c860e9b (diff) | |
download | samba-4ce638313aa79117a97ff402b14a94c3d75cccd1.tar.gz samba-4ce638313aa79117a97ff402b14a94c3d75cccd1.tar.bz2 samba-4ce638313aa79117a97ff402b14a94c3d75cccd1.zip |
r7381: Put more rpc specifics in libnet context.
rafal
(This used to be commit 53ad20d46ba0db6a0a5dad78f996db8c0385d4f2)
-rw-r--r-- | source4/libnet/libnet.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source4/libnet/libnet.h b/source4/libnet/libnet.h index 24b0ab06a1..b26ce72ba6 100644 --- a/source4/libnet/libnet.h +++ b/source4/libnet/libnet.h @@ -26,6 +26,13 @@ struct libnet_context { * a user env context */ struct cli_credentials *cred; + + /* dcerpc pipes */ + struct dcerpc_pipe *samr; + + /* opened handles */ + struct policy_handle domain_handle; + struct policy_handle user_handle; }; |