diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-01-27 06:16:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:15 -0500 |
commit | 3dd17f128831e09c230a8d56e34495d3b31dbacb (patch) | |
tree | 962c0357cf7e14bf2c7950461185d0a9d35b1c96 /source4/librpc/idl/netlogon.idl | |
parent | 00169404eddd859262ef6f0684143efbedcd7bf7 (diff) | |
download | samba-3dd17f128831e09c230a8d56e34495d3b31dbacb.tar.gz samba-3dd17f128831e09c230a8d56e34495d3b31dbacb.tar.bz2 samba-3dd17f128831e09c230a8d56e34495d3b31dbacb.zip |
r5034: - added a type mapping function in pidl, so the type names in our IDL
files don't need to match the type names in the generated headers
- with this type mapping we no longer need definitions for the
deprecated "int32", "uint8" etc form of types. We can now force
everyone to use the standard types int32_t, uint8_t etc.
- fixed all the code that used the deprecated types
- converted the IDL types "int64" and "uint64" to "dlong" and
"udlong". These are the 4 byte aligned 64 bit integers that
Microsoft internally define as two 32 bit integers in a
structure. After discussions with Ronnie Sahlberg we decided that
calling these "int64" was confusing, as it implied a true 8 byte
aligned type
- fixed all the cases where we incorrectly used things like
"NTTIME_hyper" in our C code. The generated API now uses a NTTIME for
those. The fact that it is hyper-aligned on the wire is not relevant
to the API, and should remain just a IDL property
(This used to be commit f86521677d7ff16bdc4815f9524e5286026f10f3)
Diffstat (limited to 'source4/librpc/idl/netlogon.idl')
-rw-r--r-- | source4/librpc/idl/netlogon.idl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/source4/librpc/idl/netlogon.idl b/source4/librpc/idl/netlogon.idl index 3d3005685b..cb537d75a3 100644 --- a/source4/librpc/idl/netlogon.idl +++ b/source4/librpc/idl/netlogon.idl @@ -76,8 +76,8 @@ interface netlogon /* in netr_AcctLockStr size seems to be be 24, and rrenard thinks that the structure of the bindata looks like this: - uint64 lockout_duration; - uint64 reset_count; + dlong lockout_duration; + udlong reset_count; uint32 bad_attempt_lockout; uint32 dummy; @@ -407,9 +407,9 @@ interface netlogon uint16 min_password_length; uint16 password_history_length; /* yes, these are signed. They are in negative 100ns */ - int64 max_password_age; - int64 min_password_age; - uint64 sequence_num; + dlong max_password_age; + dlong min_password_age; + udlong sequence_num; NTTIME domain_create_time; uint32 SecurityInformation; sec_desc_buf sdbuf; @@ -504,7 +504,7 @@ interface netlogon netr_String primary_domain_name; dom_sid2 *sid; netr_QUOTA_LIMITS quota_limits; - uint64 sequence_num; + udlong sequence_num; NTTIME db_create_time; uint32 SecurityInformation; sec_desc_buf sdbuf; @@ -635,7 +635,7 @@ interface netlogon [case(NETR_DELTA_DELETE_SECRET)] netr_DELTA_DELETE_SECRET delete_secret; [case(NETR_DELTA_DELETE_GROUP2)] netr_DELTA_DELETE_USER *delete_group; [case(NETR_DELTA_DELETE_USER2)] netr_DELTA_DELETE_USER *delete_user; - [case(NETR_DELTA_MODIFY_COUNT)] uint64 *modified_count; + [case(NETR_DELTA_MODIFY_COUNT)] udlong *modified_count; } netr_DELTA_UNION; typedef union { @@ -681,7 +681,7 @@ interface netlogon [in] netr_Authenticator credential, [in,out] netr_Authenticator return_authenticator, [in] netr_SamDatabaseID database_id, - [in,out] uint64 sequence_num, + [in,out] udlong sequence_num, [in] uint32 preferredmaximumlength, [out] netr_DELTA_ENUM_ARRAY *delta_enum_array ); |