[PR #615] [MERGED] fix websocket and plugin http_proxy #4223

Closed
opened 2026-05-05 14:37:57 -06:00 by gitea-mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fatedier/frp/pull/615
Author: @fatedier
Created: 1/23/2018
Status: Merged
Merged: 1/23/2018
Merged by: @fatedier

Base: devHead: ws


📝 Commits (4)

  • cf9193a newhttp: support websocket
  • 902f6f8 ci: add test for websocket
  • a6f2736 fix plugin http_proxy error
  • ff28668 ci: add plugin http_proxy test case

📊 Changes

58 files changed (+6845 additions, -19 deletions)

View changed files

📝 Makefile (+3 -0)
📝 client/proxy.go (+3 -1)
📝 glide.lock (+4 -2)
📝 glide.yaml (+1 -0)
📝 tests/conf/auto_test_frpc.ini (+6 -1)
📝 tests/func_test.go (+56 -10)
📝 tests/http_server.go (+28 -2)
📝 tests/util.go (+29 -3)
📝 utils/vhost/newhttp.go (+5 -0)
📝 utils/vhost/reverseproxy.go (+59 -0)
vendor/github.com/gorilla/websocket/.gitignore (+25 -0)
vendor/github.com/gorilla/websocket/.travis.yml (+20 -0)
vendor/github.com/gorilla/websocket/AUTHORS (+8 -0)
vendor/github.com/gorilla/websocket/LICENSE (+22 -0)
vendor/github.com/gorilla/websocket/README.md (+64 -0)
vendor/github.com/gorilla/websocket/client.go (+326 -0)
vendor/github.com/gorilla/websocket/client_clone.go (+16 -0)
vendor/github.com/gorilla/websocket/client_clone_legacy.go (+38 -0)
vendor/github.com/gorilla/websocket/client_server_test.go (+602 -0)
vendor/github.com/gorilla/websocket/client_test.go (+32 -0)

...and 38 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/fatedier/frp/pull/615 **Author:** [@fatedier](https://github.com/fatedier) **Created:** 1/23/2018 **Status:** ✅ Merged **Merged:** 1/23/2018 **Merged by:** [@fatedier](https://github.com/fatedier) **Base:** `dev` ← **Head:** `ws` --- ### 📝 Commits (4) - [`cf9193a`](https://github.com/fatedier/frp/commit/cf9193a42988356168f4dd66bbff7939e5fe5699) newhttp: support websocket - [`902f6f8`](https://github.com/fatedier/frp/commit/902f6f84a53422e38d2c23fe3d688562253b9a89) ci: add test for websocket - [`a6f2736`](https://github.com/fatedier/frp/commit/a6f2736b80fc9b3d7c2d5875f99164cd5bc4bcac) fix plugin http_proxy error - [`ff28668`](https://github.com/fatedier/frp/commit/ff28668cf2661048d41fc9cbfbd1a8cafbc83bf7) ci: add plugin http_proxy test case ### 📊 Changes **58 files changed** (+6845 additions, -19 deletions) <details> <summary>View changed files</summary> 📝 `Makefile` (+3 -0) 📝 `client/proxy.go` (+3 -1) 📝 `glide.lock` (+4 -2) 📝 `glide.yaml` (+1 -0) 📝 `tests/conf/auto_test_frpc.ini` (+6 -1) 📝 `tests/func_test.go` (+56 -10) 📝 `tests/http_server.go` (+28 -2) 📝 `tests/util.go` (+29 -3) 📝 `utils/vhost/newhttp.go` (+5 -0) 📝 `utils/vhost/reverseproxy.go` (+59 -0) ➕ `vendor/github.com/gorilla/websocket/.gitignore` (+25 -0) ➕ `vendor/github.com/gorilla/websocket/.travis.yml` (+20 -0) ➕ `vendor/github.com/gorilla/websocket/AUTHORS` (+8 -0) ➕ `vendor/github.com/gorilla/websocket/LICENSE` (+22 -0) ➕ `vendor/github.com/gorilla/websocket/README.md` (+64 -0) ➕ `vendor/github.com/gorilla/websocket/client.go` (+326 -0) ➕ `vendor/github.com/gorilla/websocket/client_clone.go` (+16 -0) ➕ `vendor/github.com/gorilla/websocket/client_clone_legacy.go` (+38 -0) ➕ `vendor/github.com/gorilla/websocket/client_server_test.go` (+602 -0) ➕ `vendor/github.com/gorilla/websocket/client_test.go` (+32 -0) _...and 38 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
gitea-mirror 2026-05-05 14:37:57 -06:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/frp#4223
No description provided.