X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=ssl%2Fdtls1.h;h=448c254be3a23beb4000fbe095467fc2a00daca0;hp=a3d8da90165a2e9e0ab719acf4533ab988584ec4;hb=934e22e81455e1e6229cbafb525a36cb6c50dbe9;hpb=cc9001cb3f6e13ba544daf55604a6426f05d5b43 diff --git a/ssl/dtls1.h b/ssl/dtls1.h index a3d8da9016..448c254be3 100644 --- a/ssl/dtls1.h +++ b/ssl/dtls1.h @@ -57,14 +57,24 @@ * */ -#ifndef HEADER_DTLS1_H -#define HEADER_DTLS1_H +#ifndef HEADER_DTLS1_H +#define HEADER_DTLS1_H + +/* Unless _XOPEN_SOURCE_EXTENDED is defined, struct timeval will not be + properly defined with DEC C, at least on VMS */ +#if defined(__DECC) || defined(__DECCXX) +#define _XOPEN_SOURCE_EXTENDED +#endif #include #include #ifdef OPENSSL_SYS_WIN32 /* Needed for struct timeval */ #include +#elif defined(OPENSSL_SYS_NETWARE) && !defined(_WINSOCK2API_) +#include +#else +#include #endif #ifdef __cplusplus @@ -80,7 +90,7 @@ extern "C" { #endif /* lengths of messages */ -#define DTLS1_COOKIE_LENGTH 32 +#define DTLS1_COOKIE_LENGTH 256 #define DTLS1_RT_HEADER_LENGTH 13 @@ -159,6 +169,7 @@ typedef struct hm_fragment_st { struct hm_header_st msg_header; unsigned char *fragment; + unsigned char *reassembly; } hm_fragment; typedef struct dtls1_state_st @@ -208,6 +219,9 @@ typedef struct dtls1_state_st */ record_pqueue buffered_app_data; + /* Is set when listening for new connections with dtls1_listen() */ + unsigned int listen; + unsigned int mtu; /* max DTLS packet size */ struct hm_header_st w_msg_hdr; @@ -229,6 +243,7 @@ typedef struct dtls1_state_st unsigned int handshake_fragment_len; unsigned int retransmitting; + unsigned int change_cipher_spec_ok; } DTLS1_STATE;