Compare commits

..

No commits in common. "4a1f0201009215594f9426fc2b6bb98103db7077" and "3c068debc008167f1ea6584fb7f229311f94b8f4" have entirely different histories.

3 changed files with 2 additions and 4 deletions

View File

@ -5,7 +5,6 @@ Because friends don't let friends localhost™
| Sponsored by [ppl](https://ppl.family) | Sponsored by [ppl](https://ppl.family)
| **Telebit Remote** | **Telebit Remote**
| [Telebit Relay](https://git.coolaj86.com/coolaj86/telebit-relay.js) | [Telebit Relay](https://git.coolaj86.com/coolaj86/telebit-relay.js)
| [sclient](https://telebit.cloud/sclient)
| |
<img align="center" src="https://git.coolaj86.com/coolaj86/telebit.js/raw/branch/master/usr/share/docs/terminal-example-1.png"> <img align="center" src="https://git.coolaj86.com/coolaj86/telebit.js/raw/branch/master/usr/share/docs/terminal-example-1.png">

View File

@ -166,7 +166,7 @@ function askForConfig(state, mainCb) {
}); });
} }
if (state.config.relay) { checkRelay(state.config.relay); return; } if (state.config.relay) { checkRelay(); return; }
console.info(""); console.info("");
console.info(""); console.info("");
console.info("What relay will you be using? (press enter for default)"); console.info("What relay will you be using? (press enter for default)");

View File

@ -323,7 +323,6 @@ function _connect(state) {
} }
, onconnection: function (tun) { , onconnection: function (tun) {
console.log("[debug] got connection event");
var cid = tun._id = Packer.addrToId(tun); var cid = tun._id = Packer.addrToId(tun);
// this data should have been gathered already as part of the proxy protocol // this data should have been gathered already as part of the proxy protocol
@ -353,7 +352,7 @@ function _connect(state) {
handled = clientHandlers.write(cid, tun); handled = clientHandlers.write(cid, tun);
// quasi backwards compat // quasi backwards compat
if (!handled) { console.log("[debug] did not get connection event"); packerHandlers.onconnection(tun); } if (!handled) { clientHandlers.onconnection(tun); }
} }
, onpause: function (opts) { , onpause: function (opts) {