mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-23 15:55:10 +01:00
No memmove: done, rm temporary things
This commit is contained in:
parent
000d5aec13
commit
624bcb5260
2 changed files with 1 additions and 19 deletions
|
|
@ -1974,23 +1974,6 @@ static inline int safer_memcmp( const void *a, const void *b, size_t n )
|
|||
return( diff );
|
||||
}
|
||||
|
||||
/*
|
||||
* Temporary function while transitionning away from memmove()
|
||||
* on received DTLS handshake messages
|
||||
*/
|
||||
static inline void ssl_hs_rm_dtls_hdr( ssl_context *ssl )
|
||||
{
|
||||
#if defined(POLARSSL_SSL_PROTO_DTLS)
|
||||
if( ssl->transport == SSL_TRANSPORT_DATAGRAM )
|
||||
{
|
||||
memmove( ssl->in_msg + 4, ssl->in_msg + 12, ssl->in_hslen - 12 );
|
||||
ssl->in_hslen -= 8;
|
||||
}
|
||||
#else
|
||||
(void) ssl;
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue