GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
SSL_GET_STATE(3) FreeBSD Library Functions Manual SSL_GET_STATE(3)

SSL_get_state, SSL_state, SSL_in_accept_init, SSL_in_before, SSL_in_connect_init, SSL_in_init, SSL_is_init_finishedinspect the state of the SSL state machine

#include <openssl/ssl.h>

int
SSL_get_state(const SSL *ssl);

int
SSL_state(const SSL *ssl);

int
SSL_in_accept_init(const SSL *ssl);

int
SSL_in_before(const SSL *ssl);

int
SSL_in_connect_init(const SSL *ssl);

int
SSL_in_init(const SSL *ssl);

int
SSL_is_init_finished(const SSL *ssl);

() returns an encoded representation of the current state of the SSL state machine. () is a deprecated alias for SSL_get_state().

The following bits may be set:

This bit is set by SSL_accept(3) and by SSL_set_accept_state(3). It indicates that ssl is set up for server mode and no client initiated the TLS handshake yet. The function () returns non-zero if this bit is set or 0 otherwise.
This bit is set by the SSL_accept(3), SSL_connect(3), SSL_set_accept_state(3), and SSL_set_connect_state(3) functions. It indicates that the TLS handshake was not initiated yet. The function () returns non-zero if this bit is set or 0 otherwise.
This bit is set by SSL_connect(3) and by SSL_set_connect_state(3). It indicates that ssl is set up for client mode and no TLS handshake was initiated yet. The function () returns non-zero if this bit is set or 0 otherwise.

The following masks can be used:

Set if SSL_ST_ACCEPT or SSL_ST_CONNECT is set. The function () returns a non-zero value if one of these is set or 0 otherwise.
This mask includes all bits except SSL_ST_ACCEPT, SSL_ST_BEFORE, and SSL_ST_CONNECT.
The state is set to this value when a connection is established. The function () returns a non-zero value if the state equals this constant, or 0 otherwise.
The program is about to renegotiate, for example when entering SSL_read(3) or SSL_write(3) right after SSL_renegotiate(3) was called.

The meaning of other bits is protocol-dependent. Application programs usually do not need to inspect any of those other bits.

All these functions may be implemented as macros.

ssl(3), SSL_renegotiate(3), SSL_set_connect_state(3)

SSL_is_init_finished() first appeared in SSLeay 0.4.5b. SSL_state() first appeared in SSLeay 0.5.2. SSL_in_accept_init(), SSL_in_connect_init(), and SSL_in_init() first appeared in SSLeay 0.6.0. SSL_in_before() first appeared in SSLeay 0.8.0. SSL_get_state() first appeared in SSLeay 0.9.0. All these functions have been available since OpenBSD 2.4.

June 12, 2019 FreeBSD 14.3-RELEASE

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.