SERVERSSL_CLIENTHELLO_SEND

Description

Triggered when the system is about to send its SSL ClientHello message on the serverside connection. Zero or more SSL extensions may be sent to the peer at this stage in the SSL handshake.

Examples

when SERVERSSL_CLIENTHELLO_SEND {
    set my_ext "Hello world!"
    set my_ext_type 62965
    SSL::extensions insert [binary format S1S1a* $my_ext_type [string length $my_ext] $my_ext]
}