1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

No memmove: done, rm temporary things

This commit is contained in:
Manuel Pégourié-Gonnard
2014-09-10 21:56:38 +02:00
committed by Paul Bakker
parent 000d5aec13
commit 624bcb5260
2 changed files with 1 additions and 19 deletions

View File

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