Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: zhboner/realm

v2.9.2-2

05 Sep 18:49
a37a3ee

Choose a tag to compare

What's Changed

  • fix: bump version to 2.9.2 in Cargo.toml by @zywe03 in #158

New Contributors

Full Changelog: v2.9.2...v2.9.2-2

v2.9.2

18 Aug 14:34
3730140

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.9.1...v2.9.2

v2.9.1

10 Aug 13:10

Choose a tag to compare

Full Changelog: v2.9.0...v2.9.1

v2.9.0

09 Aug 09:53
9e4dd5d

Choose a tag to compare

Upgrade rustls version from v0.22 to v0.23, which uses aws-lc instead of ring as default TLS backend.

A new feature flag transport-tls-ring is added to still build the binary with ring.

v2.8.0

02 Aug 21:17
6ee4bc8

Choose a tag to compare

MPTCP Support

Requires a higher kernel version(>5.6) with net.mptcp.enabled=1.

Command line

This enables MPTCP for both inbound and outbound TCP connections.

realm -m ...

Configuration

See send_mptcp and accept_mptcp:

[network]
send_mptcp = true
accept_mptcp = false

[[endpoint]]
network = { send_mptcp = false }

See also Path Manager guidelines to configure MPTCP itself.

v2.7.1

02 Aug 17:55
b043f5f

Choose a tag to compare

v2.7.1

v2.7.0

22 Nov 17:21
1aeda0b

Choose a tag to compare

bump fern to v0.7

v2.6.3

16 Oct 11:58
620c30b

Choose a tag to compare

v2.6.3

v2.6.2

22 Sep 09:13
a1af137

Choose a tag to compare

What's Changed

  • feat: advanced mapping with support for splitting configurations into multiple files. by @Zerorigin in #141

Full Changelog: v2.6.1...v2.6.2

# use configs in folder (since v2.6.2)
# all toml and json files are recursively included (e.g.: config/log.toml, config/node/n1.toml)
# hidden ones are recursively excluded (e.g.: config/.hidden_file, config/.hidden_dir/)
realm -c config/

v2.6.1

16 Sep 16:56
6bdbe0a

Choose a tag to compare

Fix missing fields when generating json or toml config by @Zerorigin.