mirror of
https://github.com/bitinflow/localtunnel.git
synced 2026-03-15 06:25:55 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
006ce7733b | ||
|
|
624d279c26 | ||
|
|
c2b8f2b7ab | ||
|
|
4d9dcc1711 |
@@ -1,3 +1,7 @@
|
|||||||
|
# 1.4.0 (2014-08-31)
|
||||||
|
|
||||||
|
* don't emit errors for ETIMEDOUT
|
||||||
|
|
||||||
# 1.2.0 / 2014-04-28
|
# 1.2.0 / 2014-04-28
|
||||||
|
|
||||||
* return `client` from `localtunnel` API instantiation
|
* return `client` from `localtunnel` API instantiation
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ TunnelCluster.prototype.open = function() {
|
|||||||
if (err.code === 'ECONNREFUSED') {
|
if (err.code === 'ECONNREFUSED') {
|
||||||
self.emit('error', new Error('connection refused: ' + remote_host + ':' + remote_port + ' (check your firewall settings)'));
|
self.emit('error', new Error('connection refused: ' + remote_host + ':' + remote_port + ' (check your firewall settings)'));
|
||||||
}
|
}
|
||||||
else {
|
else if (err.code !== 'ETIMEDOUT') {
|
||||||
self.emit('error', err);
|
self.emit('error', err);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"author": "Roman Shtylman <shtylman@gmail.com>",
|
"author": "Roman Shtylman <shtylman@gmail.com>",
|
||||||
"name": "localtunnel",
|
"name": "localtunnel",
|
||||||
"description": "expose localhost to the world",
|
"description": "expose localhost to the world",
|
||||||
"version": "1.3.0",
|
"version": "1.4.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/shtylman/localtunnel.git"
|
"url": "git://github.com/shtylman/localtunnel.git"
|
||||||
@@ -22,4 +22,4 @@
|
|||||||
"lt": "./bin/client"
|
"lt": "./bin/client"
|
||||||
},
|
},
|
||||||
"main": "./client.js"
|
"main": "./client.js"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user