 |
Index for Section 3 |
|
 |
Alphabetical listing for S |
|
 |
Bottom of page |
|
SSL_get_peer_finished(3)
NAME
SSL_get_peer_finished - Gets the latest "Finished" message received and
return the length of the message.
SYNOPSIS
#include <openssl/ssl.h>
size_t SSL_get_peer_finished(
SSL *s,
void *buf,
size_t count );
DESCRIPTION
The SSL_get_finished() function copies the latest "Finished" message
(received on this side) to buf and returns the length of the "Finished"
message of the SSL handshake.
RETURN VALUES
This function returns the length of the "Finished" message received on this
side (client or server) during the SSL handshake.
SEE ALSO
Functions: SSL_get_finished(3)
 |
Index for Section 3 |
|
 |
Alphabetical listing for S |
|
 |
Top of page |
|