diff options
-rw-r--r-- | ppapi/c/private/ppb_flash_tcp_socket.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ppapi/c/private/ppb_flash_tcp_socket.h b/ppapi/c/private/ppb_flash_tcp_socket.h index c761300..05eb3a0 100644 --- a/ppapi/c/private/ppb_flash_tcp_socket.h +++ b/ppapi/c/private/ppb_flash_tcp_socket.h @@ -55,6 +55,10 @@ struct PPB_Flash_TCPSocket { // session cache. // When a proxy server is used, |server_name| and |server_port| refer to the // destination server. + // If the socket is not connected, or there are pending read/write requests, + // SSLHandshake() will fail without starting a handshake. Otherwise, any + // failure during the handshake process will cause the socket to be + // disconnected. int32_t (*SSLHandshake)(PP_Resource tcp_socket, const char* server_name, uint16_t server_port, |