diff options
author | Matthew Ingwersen <matttpt@gmail.com> | 2022-07-31 22:24:22 +0000 |
---|---|---|
committer | Matthew Ingwersen <matttpt@gmail.com> | 2022-08-05 12:35:57 -0400 |
commit | 6bf07fdbb9e77984bd1c4f080d41a85ff821a2cb (patch) | |
tree | 06317d2f3c058fb301549a6e6c0a6fe400ee1917 /CHANGELOG.md | |
parent | 67329c593f2482f5278b76fb436c7db79c921521 (diff) | |
download | nix-6bf07fdbb9e77984bd1c4f080d41a85ff821a2cb.zip |
Add support for the IP_SENDSRCADDR control message
This control message (actually just an alias for IP_RECVDSTADDR) sets
the IPv4 source address when used with sendmsg. It is available on
FreeBSD, NetBSD, OpenBSD, and DragonFlyBSD.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index bfe81197..96de857e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,8 @@ This project adheres to [Semantic Versioning](https://semver.org/). (#[1772](https://github.com/nix-rust/nix/pull/1772)) - Added IPV6_ORIGDSTADDR using Ipv6OrigDstAddr in setsockopt and recvmsg. (#[1772](https://github.com/nix-rust/nix/pull/1772)) +- Added `IP_SENDSRCADDR` using `Ipv4SendSrcAddr` in `sendmsg`. + (#[1776](https://github.com/nix-rust/nix/pull/1776)) ### Changed |