diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-12-22 18:50:55 +1100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-12-22 21:07:52 +0100 |
commit | dee35f793c8f1372b4197f798997dfb1c76a93de (patch) | |
tree | 7eb61d9539131ecd721cbb6d93160340b29a2f46 /source3/include/ntlmssp.h | |
parent | 9b36fa0441d55aa754262e7db31983276d0ff19f (diff) | |
download | samba-dee35f793c8f1372b4197f798997dfb1c76a93de.tar.gz samba-dee35f793c8f1372b4197f798997dfb1c76a93de.tar.bz2 samba-dee35f793c8f1372b4197f798997dfb1c76a93de.zip |
s3:ntlmssp: move to C99 integer types in ntlmssp.h
Andrew Bartlett
Diffstat (limited to 'source3/include/ntlmssp.h')
-rw-r--r-- | source3/include/ntlmssp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/include/ntlmssp.h b/source3/include/ntlmssp.h index d4eec08b39..60e604aa31 100644 --- a/source3/include/ntlmssp.h +++ b/source3/include/ntlmssp.h @@ -46,7 +46,7 @@ typedef struct ntlmssp_state unsigned int ref_count; enum ntlmssp_role role; enum server_types server_role; - uint32 expected_state; + uint32_t expected_state; bool unicode; bool use_ntlmv2; @@ -64,7 +64,7 @@ typedef struct ntlmssp_state DATA_BLOB nt_resp; DATA_BLOB session_key; - uint32 neg_flags; /* the current state of negotiation with the NTLMSSP partner */ + uint32_t neg_flags; /* the current state of negotiation with the NTLMSSP partner */ void *auth_context; @@ -126,12 +126,12 @@ typedef struct ntlmssp_state struct arcfour_state send_seal_arc4_state; struct arcfour_state recv_seal_arc4_state; - uint32 ntlm2_send_seq_num; - uint32 ntlm2_recv_seq_num; + uint32_t ntlm2_send_seq_num; + uint32_t ntlm2_recv_seq_num; /* ntlmv1 */ struct arcfour_state ntlmv1_arc4_state; - uint32 ntlmv1_seq_num; + uint32_t ntlmv1_seq_num; /* it turns out that we don't always get the response in at the time we want to process it. |