The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / src / node_crypto_clienthello.cc @ 6f92da2d

History | View | Annotate | Download (7.09 KB)

# Date Author Comment
57649663 08/06/2013 09:39 AM Ben Noordhuis

crypto: fix signed/unsigned comparison warning

The type of the expression `(uint16_t) server_names_len + 2` gets
implicitly widened to int. Change the type of server_names_len to
uint32_t to avoid the following warnings:

../../src/node_crypto_clienthello.cc:144: warning: comparison...
048e0e77 08/06/2013 08:13 AM Fedor Indutny

tls: asynchronous SNICallback

Make ClientHelloParser handle SNI extension, and extend `_tls_wrap.js`
to support loading SNI Context from both hello, and resumed session.

fix #5967

8e28193c 08/06/2013 08:13 AM Fedor Indutny

tls_wrap: DRY ClientHelloParser

Share ClientHelloParser code between `tls_wrap.cc` and `node_crypto.cc`.

fix #5959