Changeset 165 for branches/samba-3.0/source/include/rpc_netlogon.h
- Timestamp:
- Mar 11, 2009, 9:14:55 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/include/rpc_netlogon.h
r44 r165 43 43 #define NET_DSR_GETDCNAMEEX 0x1b 44 44 #define NET_DSR_GETSITENAME 0x1c 45 #define NET_SRVPWSET2 0x1e 45 46 #define NET_DSR_GETDCNAMEEX2 0x22 46 47 #define NET_SAMLOGON_EX 0x27 … … 530 531 NTSTATUS status; /* return code */ 531 532 } NET_R_SRV_PWSET; 533 534 typedef struct net_crypt_password { 535 uint8_t data[512]; 536 uint32_t length; 537 } NET_CRYPT_PWD; 538 539 /* NET_Q_SRV_PWSET2 */ 540 typedef 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 */ 546 typedef struct net_r_srv_pwset2_info { 547 DOM_CRED srv_cred; /* server-calculated credentials */ 548 NTSTATUS status; /* return code */ 549 } NET_R_SRV_PWSET2; 532 550 533 551 /* NET_ID_INFO_2 */
Note:
See TracChangeset
for help on using the changeset viewer.