1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-20 22:50:26 +03:00

s3:ntlmssp: move to C99 integer types in ntlmssp.h

Andrew Bartlett
This commit is contained in:
Andrew Bartlett 2009-12-22 18:50:55 +11:00 committed by Stefan Metzmacher
parent 9b36fa0441
commit dee35f793c

View File

@ -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.