File tree 2 files changed +8
-2
lines changed 2 files changed +8
-2
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 @@ -247,14 +247,18 @@ libc_bitflags! {
247
247
SOF_TIMESTAMPING_SOFTWARE ;
248
248
/// Report hardware timestamps as generated by SOF_TIMESTAMPING_TX_HARDWARE when available.
249
249
SOF_TIMESTAMPING_RAW_HARDWARE ;
250
- /// Collect transmiting timestamps as reported by hardware
250
+ /// Collect transmitting timestamps as reported by hardware
251
251
SOF_TIMESTAMPING_TX_HARDWARE ;
252
- /// Collect transmiting timestamps as reported by software
252
+ /// Collect transmitting timestamps as reported by software
253
253
SOF_TIMESTAMPING_TX_SOFTWARE ;
254
254
/// Collect receiving timestamps as reported by hardware
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