diff options
author | Günther Deschner <gd@samba.org> | 2008-05-23 23:56:21 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-05-23 23:56:21 +0200 |
commit | 6b3bcb3724eed0ddff26dd7af638b606502081ad (patch) | |
tree | e1d17d81dd949bf01b5949709ff849c851752568 /source3/include | |
parent | 4d2f71e53f5a6cdc5b84a0eeab5822a7f8ca48b9 (diff) | |
download | samba-6b3bcb3724eed0ddff26dd7af638b606502081ad.tar.gz samba-6b3bcb3724eed0ddff26dd7af638b606502081ad.tar.bz2 samba-6b3bcb3724eed0ddff26dd7af638b606502081ad.zip |
drsuapi: add all code required for our drsuapi rpc client.
Guenther
(This used to be commit 7c93190843e77764be4d0f6d4f0b93061c192c98)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/rpc_client.h | 1 | ||||
-rw-r--r-- | source3/include/smb.h | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/source3/include/rpc_client.h b/source3/include/rpc_client.h index 4d1b1a77d1..466370ef7a 100644 --- a/source3/include/rpc_client.h +++ b/source3/include/rpc_client.h @@ -36,6 +36,7 @@ #include "librpc/gen_ndr/cli_dssetup.h" #include "librpc/gen_ndr/cli_ntsvcs.h" #include "librpc/gen_ndr/cli_epmapper.h" +#include "librpc/gen_ndr/cli_drsuapi.h" #define prs_init_empty( _ps_, _ctx_, _io_ ) (void) prs_init((_ps_), 0, (_ctx_), (_io_)) diff --git a/source3/include/smb.h b/source3/include/smb.h index 02151043a6..e7860b7903 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -190,6 +190,7 @@ typedef uint32 codepoint_t; #define PIPE_SVCCTL "\\PIPE\\svcctl" #define PIPE_EVENTLOG "\\PIPE\\eventlog" #define PIPE_EPMAPPER "\\PIPE\\epmapper" +#define PIPE_DRSUAPI "\\PIPE\\drsuapi" #define PIPE_NETLOGON_PLAIN "\\NETLOGON" @@ -208,7 +209,8 @@ typedef uint32 codepoint_t; #define PI_EVENTLOG 12 #define PI_NTSVCS 13 #define PI_EPMAPPER 14 -#define PI_MAX_PIPES 15 +#define PI_DRSUAPI 15 +#define PI_MAX_PIPES 16 /* 64 bit time (100usec) since ????? - cifs6.txt, section 3.5, page 30 */ typedef uint64_t NTTIME; @@ -314,6 +316,7 @@ extern const DATA_BLOB data_blob_null; #include "librpc/gen_ndr/krb5pac.h" #include "librpc/gen_ndr/ntsvcs.h" #include "librpc/gen_ndr/nbt.h" +#include "librpc/gen_ndr/drsuapi.h" struct lsa_dom_info { bool valid; |