mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
852 B
24 lines
852 B
var TLS_STATUS_CODES = {
|
|
1 : 'JS_GNUTLS_CERT_VALIDATED',
|
|
0 : 'JS_GNUTLS_CERT_UNDEFINED',
|
|
}
|
|
TLS_STATUS_CODES[-100] = 'JS_GNUTLS_CERT_SIGNER_NOT_FOUND';
|
|
TLS_STATUS_CODES[-101] = 'JS_GNUTLS_CERT_SIGNER_NOT_CA';
|
|
TLS_STATUS_CODES[-102] = 'JS_GNUTLS_CERT_INVALID';
|
|
TLS_STATUS_CODES[-103] = 'JS_GNUTLS_CERT_NOT_ACTIVATED';
|
|
TLS_STATUS_CODES[-104] = 'JS_GNUTLS_CERT_EXPIRED';
|
|
TLS_STATUS_CODES[-105] = 'JS_GNUTLS_CERT_REVOKED';
|
|
TLS_STATUS_CODES[-106] = 'JS_GNUTLS_CERT_DOES_NOT_MATCH_HOSTNAME';
|
|
|
|
exports.createServer = function (on_connection, options) {
|
|
var server = new process.tcp.Server();
|
|
server.addListener("connection", on_connection);
|
|
//server.setOptions(options);
|
|
return server;
|
|
};
|
|
|
|
exports.createConnection = function (port, host) {
|
|
var connection = new process.tcp.Connection();
|
|
connection.connect(port, host);
|
|
return connection;
|
|
};
|
|
|