mirror of
https://github.com/samba-team/samba.git
synced 2025-03-10 12:58:35 +03:00
s3:libsmb/smb_seal: move smb_set_enclen() to smb_seal.c and make it static there
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Wed Oct 19 19:06:35 CEST 2011 on sn-devel-104
This commit is contained in:
parent
0e0e44a626
commit
d825a2add6
@ -489,7 +489,6 @@ bool socket_exist(const char *fname);
|
||||
uint64_t get_file_size_stat(const SMB_STRUCT_STAT *sbuf);
|
||||
SMB_OFF_T get_file_size(char *file_name);
|
||||
void show_msg(const char *buf);
|
||||
void smb_set_enclen(char *buf,int len,uint16 enc_ctx_num);
|
||||
void smb_setlen(char *buf,int len);
|
||||
int set_message_bcc(char *buf,int num_bytes);
|
||||
ssize_t message_push_blob(uint8 **outbuf, DATA_BLOB blob);
|
||||
|
@ -183,19 +183,6 @@ void show_msg(const char *buf)
|
||||
dump_data(10, (const uint8 *)smb_buf_const(buf), bcc);
|
||||
}
|
||||
|
||||
/*******************************************************************
|
||||
Set the length and marker of an encrypted smb packet.
|
||||
********************************************************************/
|
||||
|
||||
void smb_set_enclen(char *buf,int len,uint16 enc_ctx_num)
|
||||
{
|
||||
_smb_setlen(buf,len);
|
||||
|
||||
SCVAL(buf,4,0xFF);
|
||||
SCVAL(buf,5,'E');
|
||||
SSVAL(buf,6,enc_ctx_num);
|
||||
}
|
||||
|
||||
/*******************************************************************
|
||||
Set the length and marker of an smb packet.
|
||||
********************************************************************/
|
||||
|
@ -47,6 +47,19 @@ NTSTATUS get_enc_ctx_num(const uint8_t *buf, uint16_t *p_enc_ctx_num)
|
||||
return NT_STATUS_INVALID_NETWORK_RESPONSE;
|
||||
}
|
||||
|
||||
/*******************************************************************
|
||||
Set the length and marker of an encrypted smb packet.
|
||||
********************************************************************/
|
||||
|
||||
static void smb_set_enclen(char *buf,int len,uint16_t enc_ctx_num)
|
||||
{
|
||||
_smb_setlen(buf,len);
|
||||
|
||||
SCVAL(buf,4,0xFF);
|
||||
SCVAL(buf,5,'E');
|
||||
SSVAL(buf,6,enc_ctx_num);
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
Generic code for client and server.
|
||||
Is encryption turned on ?
|
||||
|
Loading…
x
Reference in New Issue
Block a user