mirror of
https://github.com/Ylianst/MeshCommander
synced 2025-12-06 06:03:20 +00:00
145 lines
3.4 KiB
JavaScript
145 lines
3.4 KiB
JavaScript
/*
|
|
* Copyright 2012 The Closure Compiler Authors.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Definitions for node's tls module. Depends on the stream module.
|
|
* @see http://nodejs.org/api/tls.html
|
|
* @see https://github.com/joyent/node/blob/master/lib/tls.js
|
|
* @externs
|
|
* @author Daniel Wirtz <dcode@dcode.io>
|
|
*/
|
|
|
|
/**
|
|
BEGIN_NODE_INCLUDE
|
|
var tls = require('tls');
|
|
END_NODE_INCLUDE
|
|
*/
|
|
|
|
/**
|
|
* @type {Object.<string,*>}
|
|
*/
|
|
var tls = {};
|
|
|
|
/**
|
|
* @typedef {{pfx: (string|buffer.Buffer), key: (string|buffer.Buffer), passphrase: string, cert: (string|buffer.Buffer), ca: Array.<string|buffer.Buffer>, crl: (string|Array.<string>), ciphers: string, honorCipherOrder: boolean, requestCert: boolean, rejectUnauthorized: boolean, NPNProtocols: (Array|buffer.Buffer), SNICallback:
|
|
function(string), sessionIdContext: string}}
|
|
*/
|
|
tls.CreateOptions;
|
|
|
|
/**
|
|
*
|
|
* @param {tls.CreateOptions} options
|
|
* @param {
|
|
function(...)=} secureConnectionListener
|
|
* @return {tls.Server}
|
|
*/
|
|
tls.createServer =
|
|
function(options, secureConnectionListener) {};
|
|
|
|
/**
|
|
* @typedef {{host: string, port: number, socket: *, pfx: (string|buffer.Buffer), key: (string|buffer.Buffer), passphrase: string, cert: (string|buffer.Buffer), ca: Array.<string>, rejectUnauthorized: boolean, NPNProtocols: Array.<string|buffer.Buffer>, servername: string}}
|
|
*/
|
|
tls.ConnectOptions;
|
|
|
|
/**
|
|
*
|
|
* @param {number|tls.ConnectOptions} port
|
|
* @param {(string|tls.ConnectOptions|
|
|
function(...))=} host
|
|
* @param {(tls.ConnectOptions|
|
|
function(...))=} options
|
|
* @param {
|
|
function(...)=} callback
|
|
*/
|
|
tls.connect =
|
|
function(port, host, options, callback) {};
|
|
|
|
/**
|
|
* @param {crypto.Credentials=} credentials
|
|
* @param {boolean=} isServer
|
|
* @param {boolean=} requestCert
|
|
* @param {boolean=} rejectUnauthorized
|
|
* @return {tls.SecurePair}
|
|
*/
|
|
tls.createSecurePair =
|
|
function(credentials, isServer, requestCert, rejectUnauthorized) {};
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends events.EventEmitter
|
|
*/
|
|
tls.SecurePair =
|
|
function() {};
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends net.Server
|
|
*/
|
|
tls.Server =
|
|
function() {};
|
|
|
|
/**
|
|
* @param {string} hostname
|
|
* @param {string|buffer.Buffer} credentials
|
|
*/
|
|
tls.Server.prototype.addContext =
|
|
function(hostname, credentials) {};
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends stream.Duplex
|
|
*/
|
|
tls.CleartextStream =
|
|
function() {};
|
|
|
|
/**
|
|
* @type {boolean}
|
|
*/
|
|
tls.CleartextStream.prototype.authorized;
|
|
|
|
/**
|
|
* @type {?string}
|
|
*/
|
|
tls.CleartextStream.prototype.authorizationError;
|
|
|
|
/**
|
|
* @return {Object.<string,(string|Object.<string,string>)>}
|
|
*/
|
|
tls.CleartextStream.prototype.getPeerCertificate =
|
|
function() {};
|
|
|
|
/**
|
|
* @return {{name: string, version: string}}
|
|
*/
|
|
tls.CleartextStream.prototype.getCipher =
|
|
function() {};
|
|
|
|
/**
|
|
* @return {{port: number, family: string, address: string}}
|
|
*/
|
|
tls.CleartextStream.prototype.address =
|
|
function() {};
|
|
|
|
/**
|
|
* @type {string}
|
|
*/
|
|
tls.CleartextStream.prototype.remoteAddress;
|
|
|
|
/**
|
|
* @type {number}
|
|
*/
|
|
tls.CleartextStream.prototype.remotePort;
|