mirror of
https://github.com/bitinflow/localtunnel.git
synced 2026-03-15 22:45:54 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
afbdc3697e | ||
|
|
0049f21b55 | ||
|
|
509841104b | ||
|
|
92caf2f204 |
@@ -27,14 +27,13 @@ var opt = {
|
|||||||
|
|
||||||
lt_client(opt.port, opt, function(err, tunnel) {
|
lt_client(opt.port, opt, function(err, tunnel) {
|
||||||
if (err) {
|
if (err) {
|
||||||
console.error(err);
|
throw err;
|
||||||
return process.exit(1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log('your url is: %s', tunnel.url);
|
console.log('your url is: %s', tunnel.url);
|
||||||
|
|
||||||
tunnel.on('error', function(err) {
|
tunnel.on('error', function(err) {
|
||||||
console.error(err);
|
throw err;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
15
client.js
15
client.js
@@ -87,13 +87,13 @@ TunnelCluster.prototype.open = function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
function conn_local() {
|
function conn_local() {
|
||||||
debug('connecting locally to %s:%d', local_host, local_port);
|
|
||||||
|
|
||||||
if (remote.destroyed) {
|
if (remote.destroyed) {
|
||||||
|
debug('remote destroyed');
|
||||||
self.emit('dead');
|
self.emit('dead');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
debug('connecting locally to %s:%d', local_host, local_port);
|
||||||
remote.pause();
|
remote.pause();
|
||||||
|
|
||||||
// connection to local http server
|
// connection to local http server
|
||||||
@@ -103,19 +103,24 @@ TunnelCluster.prototype.open = function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
function remote_close() {
|
function remote_close() {
|
||||||
|
debug('remote close');
|
||||||
self.emit('dead');
|
self.emit('dead');
|
||||||
local.end();
|
local.end();
|
||||||
};
|
};
|
||||||
|
|
||||||
remote.once('close', remote_close);
|
remote.once('close', remote_close);
|
||||||
|
|
||||||
local.on('error', function(err) {
|
// TODO some languages have single threaded servers which makes opening up
|
||||||
|
// multiple local connections impossible. We need a smarter way to scale
|
||||||
|
// and adjust for such instances to avoid beating on the door of the server
|
||||||
|
local.once('error', function(err) {
|
||||||
|
debug('local error %s', err.message);
|
||||||
local.end();
|
local.end();
|
||||||
|
|
||||||
remote.removeListener('close', remote_close);
|
remote.removeListener('close', remote_close);
|
||||||
|
|
||||||
if (err.code !== 'ECONNREFUSED') {
|
if (err.code !== 'ECONNREFUSED') {
|
||||||
return local.emit('error', err);
|
return remove.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
// retrying connection to local server
|
// retrying connection to local server
|
||||||
@@ -146,8 +151,8 @@ TunnelCluster.prototype.open = function() {
|
|||||||
// tunnel is considered open when remote connects
|
// tunnel is considered open when remote connects
|
||||||
remote.once('connect', function() {
|
remote.once('connect', function() {
|
||||||
self.emit('open', remote);
|
self.emit('open', remote);
|
||||||
|
conn_local();
|
||||||
});
|
});
|
||||||
remote.once('connect', conn_local);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
var Tunnel = function(opt) {
|
var Tunnel = function(opt) {
|
||||||
|
|||||||
@@ -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.1.0",
|
"version": "1.1.1",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/shtylman/localtunnel.git"
|
"url": "git://github.com/shtylman/localtunnel.git"
|
||||||
|
|||||||
Reference in New Issue
Block a user