On May 30, 3:49 pm, mscdex <[email protected]> wrote: > On May 30, 1:47 pm, dhruvbird <[email protected]> wrote: > > > So, if the socket is passed, then is TLS negotiation is initiated on the > > existing socket? > > Yes, it is negotiated on the socket you pass in and the callback is > executed once the negotiation is successful.
Also remember that you should not write to the socket object once you pass to tls.connect(). Once the callback is executed, you should instead continue any/all writing to the object returned by tls.connect(). -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
