Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

sni-reader

tellnes53MIT0.1.1

Extracts the Server Name Indication from a raw TLS Stream

sni, tls, servername, server, name, indication, stream

readme

sni-reader

Version npmnpm DownloadsBuild StatusCoverage StatusDependenciesTips

sni-reader extracts the Server Name Indication from a raw TLS stream. It reads the ClientHello message and extracts the value of the SNI extension if the extension is present.

Usage

var net = require('net')
var sni = require('sni-reader')

const serverNameMap =
  { 'example.com': 8001
  , 'example.net': 8002
  }

net.createServer(function(socket) {
  sni(socket, function(err, serverName) {
    const port = serverNameMap[serverName]
    socket.pipe(net.connect(port)).pipe(socket)
  })
}).listen(80)

Install

npm install -S sni-reader

License

MIT