TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Chisel – A fast TCP tunnel over HTTP

101 点作者 aus_超过 8 年前

8 条评论

Matthias247超过 8 年前
Why TCP over websockets? You can just use the HTTP bodies as a stream in both direction. Which means the proxy just has to strip or add HTTP headers before forwarding. The overhead afterwards is 0 -> you just write to the socket.
评论 #13354819 未加载
评论 #13363064 未加载
wheaties超过 8 年前
Hold on, hold on, hold on. Let me get this straight: you took an application layer protocol (HTTP) that runs on top of TCP and ...reimplemented TCP over it!?<p>(see: <a href="https:&#x2F;&#x2F;www.quora.com&#x2F;What-is-the-difference-between-HTTP-protocol-and-TCP-protocol" rel="nofollow">https:&#x2F;&#x2F;www.quora.com&#x2F;What-is-the-difference-between-HTTP-pr...</a>)
评论 #13357235 未加载
评论 #13362242 未加载
daurnimator超过 8 年前
Looks to be TCP over websockets; which isn&#x27;t really that interesting IMO.
评论 #13354772 未加载
ryao超过 8 年前
How does this deal with double congestion control?
评论 #13354551 未加载
评论 #13362231 未加载
microcolonel超过 8 年前
Annoying that this has the same name as <a href="https:&#x2F;&#x2F;github.com&#x2F;ucb-bar&#x2F;chisel3" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;ucb-bar&#x2F;chisel3</a>
评论 #13362222 未加载
评论 #13355195 未加载
paulddraper超过 8 年前
And no reference to the <i>standard</i> mechanism for HTTP tunnels, which has only existed for 18 years.<p><a href="https:&#x2F;&#x2F;tools.ietf.org&#x2F;html&#x2F;rfc2616#section-9.9" rel="nofollow">https:&#x2F;&#x2F;tools.ietf.org&#x2F;html&#x2F;rfc2616#section-9.9</a>
partycoder超过 8 年前
Many superlatives, which immediately raise suspicions.<p>If you are trying to solve the problem of NAT traversal and such, I suggest you rather attempt to do this:<p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;TCP_hole_punching" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;TCP_hole_punching</a>
评论 #13354839 未加载
评论 #13362215 未加载
noway421超过 8 年前
Is there any difference with corkscrew? Either way, really keen to test the perfomance of it for getting out of restricted proxies where corkscrew saves me life.