summaryrefslogtreecommitdiffhomepage
path: root/src/pkt.rs
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright notices to notice email instead of github linkdilluti0n2025-09-051-1/+1
|
* Add license document and copyright notice headersdilluti0n2025-09-051-0/+17
|
* Remove unused field PktView.rawdilluti0n2025-08-211-2/+1
|
* Introduce PktView to remove duplicate packet parsinghskim2025-08-201-0/+18
- Added new `pkt.rs` with `PktView` struct wrapping `IpSlice` and `TcpSlice` - Updated `split_packet` and `handle_packet` to use `PktView` - Removed repeated calls to `IpSlice::from_slice` / `TcpSlice::from_slice` - Simplifies code and ensures parsing happens only once per packet