mirror of
https://github.com/wangyu-/UDPspeeder.git
synced 2025-01-19 06:19:34 +08:00
Update README.md
This commit is contained in:
parent
8e7a8aed92
commit
7bb66e9ce7
19
README.md
19
README.md
@ -80,7 +80,7 @@ To run stably,pay attention to MTU.
|
|||||||
### Full Options
|
### Full Options
|
||||||
```
|
```
|
||||||
UDPspeeder V2
|
UDPspeeder V2
|
||||||
git version:f479ca2779 build date:Oct 19 2017 01:37:08
|
git version:8e7a8aed92 build date:Oct 25 2017 02:00:54
|
||||||
repository: https://github.com/wangyu-/UDPspeeder
|
repository: https://github.com/wangyu-/UDPspeeder
|
||||||
|
|
||||||
usage:
|
usage:
|
||||||
@ -91,8 +91,8 @@ common option,must be same on both sides:
|
|||||||
-k,--key <string> key for simple xor encryption. if not set,xor is disabled
|
-k,--key <string> key for simple xor encryption. if not set,xor is disabled
|
||||||
main options:
|
main options:
|
||||||
-f,--fec x:y forward error correction,send y redundant packets for every x packets
|
-f,--fec x:y forward error correction,send y redundant packets for every x packets
|
||||||
--timeout <number> how long could a packet be held in queue before doing fec,unit: ms
|
--timeout <number> how long could a packet be held in queue before doing fec,unit: ms,default :8ms
|
||||||
--mode <number> fec-mode,available values: 0,1 ; 0 cost less bandwidth,1 cost less latency
|
--mode <number> fec-mode,available values: 0,1 ; 0 cost less bandwidth,1 cost less latency(default)
|
||||||
--report <number> turn on send/recv report,and set a period for reporting,unit:s
|
--report <number> turn on send/recv report,and set a period for reporting,unit:s
|
||||||
advanced options:
|
advanced options:
|
||||||
--mtu <number> mtu. for mode 0,the program will split packet to segment smaller than mtu_value.
|
--mtu <number> mtu. for mode 0,the program will split packet to segment smaller than mtu_value.
|
||||||
@ -105,6 +105,9 @@ advanced options:
|
|||||||
--random-drop <number> simulate packet loss ,unit:0.01%. default value: 0
|
--random-drop <number> simulate packet loss ,unit:0.01%. default value: 0
|
||||||
--disable-obscure <number> disable obscure,to save a bit bandwidth and cpu
|
--disable-obscure <number> disable obscure,to save a bit bandwidth and cpu
|
||||||
developer options:
|
developer options:
|
||||||
|
--fifo <string> use a fifo(named pipe) for sending commands to the running program,so that you
|
||||||
|
can change fec encode parameters dynamically,check readme.md in repository for
|
||||||
|
supported commands.
|
||||||
-j ,--jitter jmin:jmax similiar to -j above,but create jitter randomly between jmin and jmax
|
-j ,--jitter jmin:jmax similiar to -j above,but create jitter randomly between jmin and jmax
|
||||||
-i,--interval imin:imax similiar to -i above,but scatter randomly between imin and imax
|
-i,--interval imin:imax similiar to -i above,but scatter randomly between imin and imax
|
||||||
-q,--queue-len <number> max fec queue len,only for mode 0
|
-q,--queue-len <number> max fec queue len,only for mode 0
|
||||||
@ -119,6 +122,16 @@ log and help options:
|
|||||||
--log-position enable file name,function name,line number in log
|
--log-position enable file name,function name,line number in log
|
||||||
--disable-color disable log color
|
--disable-color disable log color
|
||||||
-h,--help print this help message
|
-h,--help print this help message
|
||||||
|
|
||||||
|
```
|
||||||
|
#### `--fifo` option
|
||||||
|
Use a fifo(named pipe) for sending commands to the running program. For example `--fifo fifo.file`,you can use following commands to change parameters dynamically:
|
||||||
|
```
|
||||||
|
echo fec 19:9 >fifo.file
|
||||||
|
echo mtu 1100 >fifo.file
|
||||||
|
echo timeout 5 >fifo.file
|
||||||
|
echo queue-len 100 >fifo.file
|
||||||
|
echo mode 0 >fifo.file
|
||||||
```
|
```
|
||||||
### Speed-Up any traffic with OpenVPN+UDPspeeder
|
### Speed-Up any traffic with OpenVPN+UDPspeeder
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user