summaryrefslogtreecommitdiff
path: root/source4/librpc/idl
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-12-02 00:31:54 +0000
committerAndrew Tridgell <tridge@samba.org>2003-12-02 00:31:54 +0000
commit06ae42483582ee76c3f6848697cf61cc142dd86a (patch)
tree959408cf7ba1e90e05a4e30278e71445ebc5cf32 /source4/librpc/idl
parent8b30b0071cb7668f49b2ea5951d1180bf90371e3 (diff)
downloadsamba-06ae42483582ee76c3f6848697cf61cc142dd86a.tar.gz
samba-06ae42483582ee76c3f6848697cf61cc142dd86a.tar.bz2
samba-06ae42483582ee76c3f6848697cf61cc142dd86a.zip
* netr_ServerPasswordSet() now works - the test suite changes the
machine account password. * neater handling on value() options in IDL. The auto-print code will now display the right value so you don't need to initialise it in your C code (This used to be commit 3dd978b12bb5571fba4e1839c0f7ee60cf729aa2)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r--source4/librpc/idl/netlogon.idl25
1 files changed, 12 insertions, 13 deletions
diff --git a/source4/librpc/idl/netlogon.idl b/source4/librpc/idl/netlogon.idl
index efdbed34be..6dd7ae3fe5 100644
--- a/source4/librpc/idl/netlogon.idl
+++ b/source4/librpc/idl/netlogon.idl
@@ -91,7 +91,7 @@ interface netlogon
} netr_IdentityInfo;
typedef [flag(NDR_PAHEX)] struct {
- uint8 password[16];
+ uint8 data[16];
} netr_Password;
typedef struct {
@@ -252,19 +252,18 @@ interface netlogon
[in,out] netr_Credential credentials
);
-#if 0
- typedef struct {
- uint8 encrypted_password[16];
- } ENCRYPTED_LM_OWF_PASSWORD;
- WERROR netr_ServerPasswordSet(
- [in] unistr *server_name,
- [in] unistr username,
- [in] uint16 secure_challenge_type,
- [in] unistr ComputerName,
- [in][ref] AUTHENTICATOR credential,
- [in][ref] LM_OWF_PASSWORD UasNewPassword,
- [out][ref] AUTHENTICATOR return_authenticator
+
+ NTSTATUS netr_ServerPasswordSet(
+ [in] unistr *server_name,
+ [in] unistr username,
+ [in] uint16 secure_challenge_type,
+ [in] unistr computer_name,
+ [in] netr_Authenticator credential,
+ [in] netr_Password new_password,
+ [out] netr_Authenticator return_authenticator
);
+
+#if 0
typedef struct {
unistr *username;
netr_String dummy1;