* from 'version' and above;
*/
gnutls_protocol_t max_version; /* this cipher suite is not supported after that */
- int dtls:1; /* whether this ciphersuite is valid in DTLS */
+ unsigned int dtls:1; /* whether this ciphersuite is valid in DTLS */
gnutls_mac_algorithm_t prf;
} gnutls_cipher_suite_entry;
uint8_t ri_extension_data[MAX_VERIFY_DATA_SIZE * 2]; /* max signal is 72 bytes in s->c sslv3 */
size_t ri_extension_data_len;
- int safe_renegotiation_received:1;
- int initial_negotiation_completed:1;
- int connection_using_safe_renegotiation:1;
+ unsigned int safe_renegotiation_received:1;
+ unsigned int initial_negotiation_completed:1;
+ unsigned int connection_using_safe_renegotiation:1;
} sr_ext_st;
extern extension_entry_st ext_mod_sr;