io.sockets.secure: add SNI support for Windows

M: secure ((client)) is identical between Unix and Windows, so this probably
could be moved out of the platform-specific vocab, but doing it sanely would
require a refactor I'm not excited about, so punting on that for now.

Fixes #1551
db4
Benjamin Pollack 2016-03-12 09:27:31 -05:00
parent 8ce3ff3fab
commit b0d62bcdc3
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ M: openssl ssl-certificate-verification-supported? f ;
M: windows socket-handle handle>> alien-address ;
M: secure ((client)) ( addrspec -- handle )
addrspec>> ((client)) f <ssl-socket> ;
[ addrspec>> ((client)) ] [ hostname>> ] bi <ssl-socket> ;
M: secure (get-local-address) ( handle remote -- sockaddr )
[ file>> ] [ addrspec>> ] bi* (get-local-address) ;