diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/ipxe/tls.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/ipxe/tls.h b/src/include/ipxe/tls.h index 2aa2b06da..49401e6bf 100644 --- a/src/include/ipxe/tls.h +++ b/src/include/ipxe/tls.h @@ -87,9 +87,10 @@ enum tls_rx_state { /** TLS TX pending flags */ enum tls_tx_pending { TLS_TX_CLIENT_HELLO = 0x0001, - TLS_TX_CLIENT_KEY_EXCHANGE = 0x0002, - TLS_TX_CHANGE_CIPHER = 0x0004, - TLS_TX_FINISHED = 0x0008, + TLS_TX_CERTIFICATE = 0x0002, + TLS_TX_CLIENT_KEY_EXCHANGE = 0x0004, + TLS_TX_CHANGE_CIPHER = 0x0008, + TLS_TX_FINISHED = 0x0010, }; /** A TLS cipher specification */ |
