12 | | - If {{{verify_peer}}} is set, SSL socket will stop the SSL session whenever there is any error occurred in the verification. |
13 | | - If {{{verify_peer}}} is not set, SSL socket will ignore any error in verification and continue establishing SSL handshake. Application may do the verification in on_connect_complete() callback by inspecting SSL socket info. |
| 12 | - If {{{verify_peer}}} is set, SSL socket will disconnect the connection whenever there is any error occurred in the verification. |
| 13 | - If {{{verify_peer}}} is not set, SSL socket will ignore any error in verification and continue establishing SSL handshake. Application may inspect the verification result in the SSL socket info or do further verification (e.g: domain name verification) in on_connect_complete() callback and decide whether SSL connection will be closed. |