Comparing version 1.0.15 to 1.0.16
@@ -58,4 +58,4 @@ /* | ||
if (config.host) options.host = config.host; | ||
if(config.port === 'amqp') options.port = 5762; | ||
else if(config.port === 'amqps') options.port = 5761; | ||
if(config.port === 'amqp') options.port = 5672; | ||
else if(config.port === 'amqps') options.port = 5671; | ||
else options.port = config.port; | ||
@@ -62,0 +62,0 @@ if (!(config.sasl && config.sasl.enabled === false)) { |
{ | ||
"name": "rhea", | ||
"version": "1.0.15", | ||
"version": "1.0.16", | ||
"description": "reactive AMQP 1.0 library", | ||
@@ -5,0 +5,0 @@ "homepage": "http://github.com/amqp/rhea", |
@@ -192,2 +192,24 @@ /// <reference types="node" /> | ||
non_fatal_errors?: string[]; | ||
/** | ||
* @property {string} [key] The private key of the certificate to be used with tls connection option | ||
*/ | ||
key?: string, | ||
/** | ||
* @property {string} [cert] The certificate to be used with tls connection option | ||
*/ | ||
cert?: string, | ||
/** | ||
* @property {string} [ca] The CA certificate used for signing certificate to be used with tls connection option | ||
*/ | ||
ca?: string, | ||
/** | ||
* @property {boolean} [requestCert] Flag to indicate client authentication to be used with tls connection option | ||
* This is used in opening socket by nodejs | ||
*/ | ||
requestCert?: boolean, | ||
/** | ||
* @property {boolean} [rejectUnauthorized] Flag to indicate if certificate is self signed to be used with tls connection option | ||
* This is used in opening socket by nodejs | ||
*/ | ||
rejectUnauthorized?: boolean | ||
} | ||
@@ -194,0 +216,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
890743
14120