summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-07-17 00:13:42 +0000
committerGitHub <noreply@github.com>2021-07-17 00:13:42 +0000
commit7033d470d000a35236f157258c13dd50bc64725a (patch)
tree123ae6f15ab5945bd73500707c285337244fcf91 /CHANGELOG.md
parent7e9c0edcda9d353e71fc604daaee7cbd7d333f87 (diff)
parent5d4f3c26925ba06932a40c843b09bf93745fd7b4 (diff)
downloadnix-7033d470d000a35236f157258c13dd50bc64725a.zip
Merge #1470
1470: Add the IPV6_V6ONLY sockopt r=asomers a=danieldulaney `IPV6_V6ONLY` allows the user to select between dual-stack and IPv6-only sockets. Platform support seems to be good; all platforms with IPv6 support seem to have this sockopt. Co-authored-by: Daniel Dulaney <dulaney.daniel@gmail.com>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8f3c9a2a..6c4bcaf2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](https://semver.org/).
## [Unreleased] - ReleaseDate
### Added
+
+- Added `IPV6_V6ONLY` sockopt.
+ (#[1470](https://github.com/nix-rust/nix/pull/1470))
+
### Changed
- `FdSet::{contains, highest, fds}` no longer require a mutable reference.