network-diagnostics
Advanced tools
Comparing version
{ | ||
"name": "network-diagnostics", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "Performs diagnostics on the network to determine network problems.", | ||
@@ -5,0 +5,0 @@ "main": "diagnostics.js", |
@@ -173,2 +173,19 @@ #network-diagnostics | ||
### diagnostics.haveInsecurePop and diagnostics.haveSecurePop | ||
These functions check if Pop3 is usable, with and without security. Callback based. Note: These functions are not in the standard test procedure, because of design consistency. | ||
``` | ||
var dealWithResult = function(result) { | ||
if (result == true) { | ||
console.log("This configuration is usable!"); | ||
} else { | ||
console.log("This configuration is not usable! I'm going to blame comcast, even if that doesn't make sense!"); | ||
} | ||
}; | ||
var host = "pop.yahoo.com"; /*I just came up with this, I don't think it's real, don't use it.*/ | ||
diagnostics.haveSecurePop(dealWithResult, host); | ||
diagnostics.haveInsecurePop(dealWithResult, host); | ||
``` | ||
Note: if host is not defined, "pop.google.com" will be used. | ||
##Standardized Test | ||
@@ -204,5 +221,7 @@ This function performs every network test in the script that does not require any complex input from the user. Tests that require complex input must be run explicitly. It then returns the results as a number array in a callback function. | ||
| 80 | "NoHTTPconnection" | | ||
| 110 | "NoInsecurePOP3" | | ||
| 143 | "NoInsecureIMAP" | | ||
| 443 | "NoHTTPSconnection" | | ||
| 993 | "NoSecureIMAP" | | ||
| 995 | "NoSecurePOP3" | | ||
@@ -221,5 +240,4 @@ These error codes are going to be used in the future when tests are written for them. Until that point, they are not directly usable. | ||
| 88 | "NoKerberos" | | ||
| 110 | "NoInsecurePOP3" | | ||
| 161 | "NoSNMP" | | ||
| 194 | "NoIRC" | | ||
| 995 | "NoSecurePOP3" | | ||
| 5222| "NoXMPP" | |
19085
4.43%241
8.07%