Lines Matching refs:will
20 a currently open session is considered closed and good and will be kept in the
35 This should only be done when it is known that the other side will not send more
54 If the underlying BIO is B<blocking>, SSL_shutdown() will only return once the
57 If the underlying BIO is B<nonblocking>, SSL_shutdown() will also return
60 return value of SSL_shutdown() will yield B<SSL_ERROR_WANT_READ> or
70 SSL_shutdown() will return 1 in that case.
76 When "quiet shutdown" is enabled, SSL_shutdown() will always succeed
81 message, otherwise an unexpected EOF will be reported.
87 will result in an error being generated.
94 alert, SSL_shutdown() will only send the alert and then set the
95 SSL_SENT_SHUTDOWN flag (so that the session is considered good and will
97 If successful, SSL_shutdown() will return 0.
104 The SSL_RECEIVED_SHUTDOWN flag will be set after receiving and processing
109 When it is done sending data, it will send the close_notify alert.
111 SSL_read() will indicate the end of the peer data by returning <= 0
119 SSL_read() will return <= 0 in that case, and SSL_get_error() will return
121 SSL_shutdown() will send the close_notify alert, set the SSL_SENT_SHUTDOWN
123 If successful, SSL_shutdown() will return 1.