Lines Matching refs:state
5 state machine code to aid future maintenance.
7 The state machine code replaces an older state machine present in OpenSSL
8 versions 1.0.2 and below. The new state machine has the following objectives:
10 - Remove duplication of state code between client and server
11 - Remove duplication of state code between TLS and DTLS
19 - Separate message flow state from handshake state (in order to better
21 * message flow state = when to flush buffers; handling restarts in the
24 * handshake state = what handshake message are we working on now
25 - Control complexity: only the state machine can change state: keep all
26 the state changes local to the state machine component
28 The message flow state machine is divided into a reading sub-state machine and a
29 writing sub-state machine. See the source comments in statem.c for a more
32 Conceptually the state machine component is designed as follows:
42 | Core state machine code |
52 | state machine code | | state machine code |