blinksocks/docs/examples/multiplexing
2018-06-15 14:38:46 +08:00
..
blinksocks.client.json docs: add examples 2018-06-15 14:38:46 +08:00
blinksocks.server.json docs: add examples 2018-06-15 14:38:46 +08:00
README.md docs: add examples 2018-06-15 14:38:46 +08:00

Multiplexing

Minimal Version Required: v2.9.x

blinksocks supports TCP/TLS/WS multiplexing.

You can enable this feature easily by setting "mux": true on both client and server, and set "mux_concurrency": <number> on client.

  1. Client config
{
  ...
  "server": {
    ...
    "mux": true,
    "mux_concurrency": 10
   ...
  },
  ...
}
  1. Server config
{
  "mux": true,
  ...
}