File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
18
18
- Added ` LocalPeerPid ` to ` nix::sys::socket::sockopt ` for macOS. ([ #1967 ] ( https://github.com/nix-rust/nix/pull/1967 ) )
19
19
- Added ` TFD_TIMER_CANCEL_ON_SET ` to ` ::nix::sys::time::TimerSetTimeFlags ` on Linux and Android.
20
20
([ #2040 ] ( https://github.com/nix-rust/nix/pull/2040 ) )
21
+ - Added ` SOF_TIMESTAMPING_OPT_ID ` and ` SOF_TIMESTAMPING_OPT_TSONLY ` to ` nix::sys::socket::TimestampingFlag ` .
22
+ ([ #2048 ] ( https://github.com/nix-rust/nix/pull/2048 ) )
21
23
22
24
### Changed
23
25
Original file line number Diff line number Diff line change @@ -255,6 +255,10 @@ libc_bitflags! {
255
255
SOF_TIMESTAMPING_RX_HARDWARE ;
256
256
/// Collect receiving timestamps as reported by software
257
257
SOF_TIMESTAMPING_RX_SOFTWARE ;
258
+ /// Generate a unique identifier along with each transmitted packet
259
+ SOF_TIMESTAMPING_OPT_ID ;
260
+ /// Return transmit timestamps alongside an empty packet instead of the original packet
261
+ SOF_TIMESTAMPING_OPT_TSONLY ;
258
262
}
259
263
}
260
264
You can’t perform that action at this time.
0 commit comments