You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
Hello everyone,
today I'm happy to try to deploy some of my company's apps with node 0.12
I just upgraded from node v0.10.33 to v0.12.0 and noticed this issue with both:
net.createServer(function (socket) { ... });
tls.createServer(function (socket) { ... });
In node 0.10:
console.log(socket.localAddress); // "10.11.1.19"
In node 0.12
console.log(socket.localAddress); // "::ffff:10.11.1.19"
Any idea about what is this "::ffff:" ?
The text was updated successfully, but these errors were encountered: