summaryrefslogtreecommitdiff
path: root/src/node_crypto_clienthello.h
Commit message (Collapse)AuthorAgeFilesLines
* src: mark empty destructors as defaultBen Noordhuis2014-10-231-3/+0
| | | | | Mark empty destructors as having a default no-op implementation. Remove a few unused constructors and destructors while we are here.
* src: replace NULL with nullptrBen Noordhuis2014-10-231-7/+7
| | | | | | | | | | Now that we are building with C++11 features enabled, replace use of NULL with nullptr. The benefit of using nullptr is that it can never be confused for an integral type because it does not support implicit conversions to integral types except boolean - unlike NULL, which is defined as a literal `0`.
* tls: support OCSP on client and serverFedor Indutny2014-04-181-1/+14
|
* tls: asynchronous SNICallbackFedor Indutny2013-08-061-0/+8
| | | | | | | Make ClientHelloParser handle SNI extension, and extend `_tls_wrap.js` to support loading SNI Context from both hello, and resumed session. fix #5967
* tls_wrap: DRY ClientHelloParserFedor Indutny2013-08-061-0/+124
Share ClientHelloParser code between `tls_wrap.cc` and `node_crypto.cc`. fix #5959