Changes between Version 3 and Version 4 of Ticket #1032


Ignore:
Timestamp:
Feb 11, 2010 4:55:23 PM (14 years ago)
Author:
nanang
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1032 – Description

    v3 v4  
    1010   
    1111 - Verification in SSL socket: 
    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. 
    1414   - On both cases, the application may inspect the verification result in the SSL socket info. 
    1515   - The verification result in SSL socket info should show all verification errors, for example when remote certificate is expired and untrusted, the verification result should show both errors.