Ignore:
Timestamp:
Mar 11, 2009, 9:14:55 AM (16 years ago)
Author:
Paul Smedley
Message:

Add 'missing' 3.0.34 diffs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/include/rpc_netlogon.h

    r44 r165  
    4343#define NET_DSR_GETDCNAMEEX     0x1b
    4444#define NET_DSR_GETSITENAME     0x1c
     45#define NET_SRVPWSET2           0x1e
    4546#define NET_DSR_GETDCNAMEEX2    0x22
    4647#define NET_SAMLOGON_EX         0x27
     
    530531        NTSTATUS status; /* return code */
    531532} NET_R_SRV_PWSET;
     533
     534typedef struct net_crypt_password {
     535        uint8_t data[512];
     536        uint32_t length;
     537} NET_CRYPT_PWD;
     538
     539/* NET_Q_SRV_PWSET2 */
     540typedef struct net_q_srv_pwset2_info {
     541        DOM_CLNT_INFO clnt_id; /* client identification/authentication info */
     542        NET_CRYPT_PWD pwd; /* new password */
     543} NET_Q_SRV_PWSET2;
     544
     545/* NET_R_SRV_PWSET2 */
     546typedef struct net_r_srv_pwset2_info {
     547        DOM_CRED srv_cred;     /* server-calculated credentials */
     548        NTSTATUS status; /* return code */
     549} NET_R_SRV_PWSET2;
    532550
    533551/* NET_ID_INFO_2 */
Note: See TracChangeset for help on using the changeset viewer.