summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2017-08-01 17:39:35 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2017-08-01 17:39:35 +0000
commitb39d909c87fce201df0ad796d8a92df8d63b6291 (patch)
treeb52e205678a4b72f3ba04675238b857761927ccb /CHANGELOG.md
parentf8768e93d8a8961b700b375d47fa3fe1ff2a346a (diff)
parentc0c8e5ee24d359e19e5a60b4299aaf707f8087a0 (diff)
downloadnix-b39d909c87fce201df0ad796d8a92df8d63b6291.zip
Merge #647
647: merge socket constants r=Susurrus > Refactor the constant declarations such that all constants are only declared once with a #[cfg] that only enables the constant on the correct platforms. Closes #637 (same PR as #646 but from another branch, to see if buildbot has a problem with PR made from master branch)
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 688b0dcc..d631d462 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,8 +5,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+### Added
+- Added protocol families in `AddressFamily` enum.
+ ([#647](https://github.com/nix-rust/nix/pull/647))
+
### Changed
- Renamed existing `ptrace` wrappers to encourage namespacing ([#692](https://github.com/nix-rust/nix/pull/692))
+- Changed function signature of `socket()` and `socketpair()`. The `protocol` argument
+ has changed type from `c_int` to `SockProtocol`.
+ It accepts a `None` value for default protocol that was specified with zero using `c_int`.
+ ([#647](https://github.com/nix-rust/nix/pull/647))
## [0.9.0] 2017-07-23