Remove the SSL state variable

The SSL structure contained a "state" variable that kept track of the state
machine in the old code. The new state machine does not use this so it can
be removed.

Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Matt Caswell 2015-09-10 09:23:34 +01:00
parent 23a635c0ec
commit 0131df49ee

View File

@ -1093,7 +1093,6 @@ struct ssl_st {
/* we have shut things down, 0x01 sent, 0x02 for received */
int shutdown;
/* where we are */
int state;
STATEM statem;
BUF_MEM *init_buf; /* buffer used during init */