[PR #734] [MERGED] use yamux instead of smux #4245

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

📋 Pull Request Information

Original PR: https://github.com/fatedier/frp/pull/734
Author: @fatedier
Created: 5/2/2018
Status: Merged
Merged: 5/2/2018
Merged by: @fatedier

Base: devHead: mux


📝 Commits (1)

  • 976cf3e use yamux instead of smux

📊 Changes

33 files changed (+3567 additions, -1755 deletions)

View changed files

📝 client/control.go (+4 -4)
📝 glide.lock (+5 -5)
📝 glide.yaml (+3 -2)
📝 server/service.go (+2 -2)
📝 vendor/github.com/hashicorp/yamux/.gitignore (+0 -1)
vendor/github.com/hashicorp/yamux/LICENSE (+362 -0)
vendor/github.com/hashicorp/yamux/README.md (+86 -0)
vendor/github.com/hashicorp/yamux/addr.go (+60 -0)
vendor/github.com/hashicorp/yamux/bench_test.go (+123 -0)
vendor/github.com/hashicorp/yamux/const.go (+157 -0)
vendor/github.com/hashicorp/yamux/const_test.go (+72 -0)
vendor/github.com/hashicorp/yamux/mux.go (+87 -0)
vendor/github.com/hashicorp/yamux/session.go (+646 -0)
vendor/github.com/hashicorp/yamux/session_test.go (+1256 -0)
vendor/github.com/hashicorp/yamux/spec.md (+140 -0)
vendor/github.com/hashicorp/yamux/stream.go (+470 -0)
vendor/github.com/hashicorp/yamux/util.go (+43 -0)
vendor/github.com/hashicorp/yamux/util_test.go (+50 -0)
📝 vendor/github.com/spf13/cobra/cobra/cmd/init.go (+1 -1)
📝 vendor/github.com/spf13/cobra/command.go (+0 -10)

...and 13 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/734 **Author:** [@fatedier](https://github.com/fatedier) **Created:** 5/2/2018 **Status:** ✅ Merged **Merged:** 5/2/2018 **Merged by:** [@fatedier](https://github.com/fatedier) **Base:** `dev` ← **Head:** `mux` --- ### 📝 Commits (1) - [`976cf3e`](https://github.com/fatedier/frp/commit/976cf3e9f8c9fde505dba38cf07f6f56263d1ef5) use yamux instead of smux ### 📊 Changes **33 files changed** (+3567 additions, -1755 deletions) <details> <summary>View changed files</summary> 📝 `client/control.go` (+4 -4) 📝 `glide.lock` (+5 -5) 📝 `glide.yaml` (+3 -2) 📝 `server/service.go` (+2 -2) 📝 `vendor/github.com/hashicorp/yamux/.gitignore` (+0 -1) ➕ `vendor/github.com/hashicorp/yamux/LICENSE` (+362 -0) ➕ `vendor/github.com/hashicorp/yamux/README.md` (+86 -0) ➕ `vendor/github.com/hashicorp/yamux/addr.go` (+60 -0) ➕ `vendor/github.com/hashicorp/yamux/bench_test.go` (+123 -0) ➕ `vendor/github.com/hashicorp/yamux/const.go` (+157 -0) ➕ `vendor/github.com/hashicorp/yamux/const_test.go` (+72 -0) ➕ `vendor/github.com/hashicorp/yamux/mux.go` (+87 -0) ➕ `vendor/github.com/hashicorp/yamux/session.go` (+646 -0) ➕ `vendor/github.com/hashicorp/yamux/session_test.go` (+1256 -0) ➕ `vendor/github.com/hashicorp/yamux/spec.md` (+140 -0) ➕ `vendor/github.com/hashicorp/yamux/stream.go` (+470 -0) ➕ `vendor/github.com/hashicorp/yamux/util.go` (+43 -0) ➕ `vendor/github.com/hashicorp/yamux/util_test.go` (+50 -0) 📝 `vendor/github.com/spf13/cobra/cobra/cmd/init.go` (+1 -1) 📝 `vendor/github.com/spf13/cobra/command.go` (+0 -10) _...and 13 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:38:25 -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#4245
No description provided.