Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #47

Merged
merged 1 commit into from
Jun 29, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![GRC](https://goreportcard.com/badge/github.com/johnsonjh/gfcptun)](https://goreportcard.com/badge/github.com/johnsonjh/gfcptun)
[![Maintainability](https://api.codeclimate.com/v1/badges/3d0e75c080ab05a06a87/maintainability)](https://codeclimate.com/github/johnsonjh/gfcptun/maintainability)

gfcptun: An fast and low-latency connection tunnel using GFCP over UDP.
gfcptun: A fast and low-latency connection tunnel using GFCP over UDP.

---

Expand Down Expand Up @@ -42,7 +42,7 @@ client -r "IN:4321" -l ":8765" -mode fast3 -nocomp -autoexpire 900 -sockbuf 3355
server -t "OUT:8765" -l ":4321" -mode fast3 -nocomp -sockbuf 33554434 -dscp 46
```

- Application 🠚 Out (8765/TCP) 🠚 Internet 🠚 In (4321/UDP) 🠚 Server (8765/TCP)
- Application Out (8765/TCP) Internet In (4321/UDP) Server (8765/TCP)

- Other useful parameters: `-mode fast3 -ds 10 -ps 3`, etc.

Expand All @@ -65,11 +65,11 @@ server -t "OUT:8765" -l ":4321" -mode fast3 -nocomp -sockbuf 33554434 -dscp 46

- Adjust the retransmission algorithm aggressiveness:

- _`fast3` *🠚* `fast2` *🠚* `fast` *🠚* `normal` *🠚* `default`_
- _`fast3` ** `fast2` ** `fast` ** `normal` ** `default`_

---

## Avoiding **N** _🠚_ **1** multiplexing [head-of-line blocking](https://www.sciencedirect.com/topics/computer-science/head-of-line-blocking) behavior
## Avoiding **N** __ **1** multiplexing [head-of-line blocking](https://www.sciencedirect.com/topics/computer-science/head-of-line-blocking) behavior

- Raise `-smuxbuf` to 16MiB (or more), however, the actual value to use depends
on link congestion as well as available contiguous system memory.
Expand Down