mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-04 04:32:24 -05:00 
			
		
		
		
	Expand documentation of internal mbedtls_record structure
This commit is contained in:
		
							parent
							
								
									37cfe73c92
								
							
						
					
					
						commit
						d840cea4a1
					
				@ -672,9 +672,20 @@ struct mbedtls_ssl_transform
 | 
			
		||||
 | 
			
		||||
typedef struct
 | 
			
		||||
{
 | 
			
		||||
    uint8_t ctr[8];         /* Record sequence number        */
 | 
			
		||||
    uint8_t type;           /* Record type                   */
 | 
			
		||||
    uint8_t ver[2];         /* SSL/TLS version               */
 | 
			
		||||
    uint8_t ctr[8];         /* In TLS:  The implicit record sequence number.
 | 
			
		||||
                             * In DTLS: The 2-byte epoch followed by
 | 
			
		||||
                             *          the 6-byte sequence number.
 | 
			
		||||
                             * This is stored as a raw big endian byte array
 | 
			
		||||
                             * as opposed to a uint64_t because we rarely
 | 
			
		||||
                             * need to perform arithmetic on this, but do
 | 
			
		||||
                             * need it as a Byte array for the purpose of
 | 
			
		||||
                             * MAC computations.                             */
 | 
			
		||||
    uint8_t type;           /* The record content type.                      */
 | 
			
		||||
    uint8_t ver[2];         /* SSL/TLS version as present on the wire.
 | 
			
		||||
                             * Convert to internal presentation of versions
 | 
			
		||||
                             * using mbedtls_ssl_read_version() and
 | 
			
		||||
                             * mbedtls_ssl_write_version().
 | 
			
		||||
                             * Keep wire-format for MAC computations.        */
 | 
			
		||||
 | 
			
		||||
    unsigned char *buf;     /* Memory buffer enclosing the record content    */
 | 
			
		||||
    size_t buf_len;         /* Buffer length                                 */
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user