| Index: runtime/bin/io_natives.cc
|
| diff --git a/runtime/bin/io_natives.cc b/runtime/bin/io_natives.cc
|
| index 2be3f3408f12830a52daae03f1b4bee4e324a4a2..9c28ac1b26ed589032ee887fc68fa23366419027 100644
|
| --- a/runtime/bin/io_natives.cc
|
| +++ b/runtime/bin/io_natives.cc
|
| @@ -96,17 +96,23 @@ namespace bin {
|
| V(Process_Pid, 1) \
|
| V(Process_SetSignalHandler, 1) \
|
| V(Process_ClearSignalHandler, 1) \
|
| - V(SecureSocket_Connect, 10) \
|
| + V(SecureSocket_Connect, 8) \
|
| V(SecureSocket_Destroy, 1) \
|
| V(SecureSocket_FilterPointer, 1) \
|
| V(SecureSocket_GetSelectedProtocol, 1) \
|
| V(SecureSocket_Handshake, 1) \
|
| V(SecureSocket_Init, 1) \
|
| - V(SecureSocket_InitializeLibrary, 3) \
|
| V(SecureSocket_PeerCertificate, 1) \
|
| V(SecureSocket_RegisterBadCertificateCallback, 2) \
|
| V(SecureSocket_RegisterHandshakeCompleteCallback, 2) \
|
| V(SecureSocket_Renegotiate, 4) \
|
| + V(SecurityContext_Allocate, 1) \
|
| + V(SecurityContext_UsePrivateKey, 3) \
|
| + V(SecurityContext_SetAlpnProtocols, 3) \
|
| + V(SecurityContext_SetClientAuthorities, 2) \
|
| + V(SecurityContext_SetTrustedCertificates, 3) \
|
| + V(SecurityContext_TrustBuiltinRoots, 1) \
|
| + V(SecurityContext_UseCertificateChain, 2) \
|
| V(ServerSocket_Accept, 2) \
|
| V(ServerSocket_CreateBindListen, 6) \
|
| V(Socket_CreateConnect, 3) \
|
| @@ -136,8 +142,11 @@ namespace bin {
|
| V(Stdin_SetLineMode, 1) \
|
| V(Stdout_GetTerminalSize, 1) \
|
| V(StringToSystemEncoding, 1) \
|
| - V(SystemEncodingToString, 1)
|
| -
|
| + V(SystemEncodingToString, 1) \
|
| + V(X509_Subject, 1) \
|
| + V(X509_Issuer, 1) \
|
| + V(X509_StartValidity, 1) \
|
| + V(X509_EndValidity, 1)
|
|
|
| IO_NATIVE_LIST(DECLARE_FUNCTION);
|
|
|
|
|