Releases: zhboner/realm
Releases · zhboner/realm
v2.9.2-2
v2.9.2
What's Changed
- realm-io: fix bidi_zero_copy by @liusen373 in #157
New Contributors
- @liusen373 made their first contribution in #157
Full Changelog: v2.9.1...v2.9.2
v2.9.1
Full Changelog: v2.9.0...v2.9.1
v2.9.0
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
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
v2.7.1
v2.7.0
bump fern to v0.7
v2.6.3
v2.6.3
v2.6.2
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
Fix missing fields when generating json or toml config by @Zerorigin.