| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Mark empty destructors as having a default no-op implementation.
Remove a few unused constructors and destructors while we are here.
|
|
|
|
|
|
|
|
|
|
| |
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`.
|
| |
|
|
|
|
|
|
|
| |
Make ClientHelloParser handle SNI extension, and extend `_tls_wrap.js`
to support loading SNI Context from both hello, and resumed session.
fix #5967
|
|
Share ClientHelloParser code between `tls_wrap.cc` and `node_crypto.cc`.
fix #5959
|