Skip to content

Commit

Permalink
Use 24-bit rather than 16-bit increments for timestamps.
Browse files Browse the repository at this point in the history
  • Loading branch information
martinling committed Aug 15, 2024
1 parent 71827e2 commit 50228cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/capture.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub struct CaptureWriter {
pub shared: Arc<CaptureShared>,
pub packet_data: DataWriter<u8, PACKET_DATA_BLOCK_SIZE>,
pub packet_index: CompactWriter<PacketId, PacketByteId, 2>,
pub packet_times: CompactWriter<PacketId, Timestamp, 2>,
pub packet_times: CompactWriter<PacketId, Timestamp, 3>,
pub transaction_index: CompactWriter<TransactionId, PacketId>,
pub transfer_index: DataWriter<TransferIndexEntry>,
pub item_index: CompactWriter<TrafficItemId, TransferId>,
Expand Down

0 comments on commit 50228cc

Please sign in to comment.