-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Pix
committed
Jul 5, 2023
1 parent
39c591c
commit 2b8eaca
Showing
1 changed file
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,35 @@ | ||
# Odin Libpcap! | ||
---- | ||
|
||
Contains the majority of the fields in pcap.h | ||
General bindings for using the libpcap library on Linux, Mac and theoretically NPcap on Windows (untested) | ||
|
||
Some from bpf, and the rest to be added as I chip away at it | ||
**TL;DR** | ||
Most of the basic functionality of the pcap.odin file has been tested, it can open, read, and process pcap files / streams from interfaces. | ||
As you get into more specific filtering or niche macro checks, I've not quite converted everything across, open to help! <3 | ||
|
||
## Converted Files: | ||
----- | ||
- [x] bluetooth.odin | ||
- [ ] fully tested | ||
- [x] bpf.odin | ||
- [ ] fully tested | ||
- [x] can_socketcan.odin | ||
- [ ] fully tested | ||
- [x] dlt.odin | ||
- [ ] fully tested | ||
- [x] ipnet.odin | ||
- [ ] fully tested | ||
- [ ] namedb.odin | ||
- [ ] fully tested | ||
- [x] nflog.odin | ||
- [ ] fully tested | ||
- [x] pcap.odin | ||
- [ ] fully tested | ||
- [x] sll.odin | ||
- [ ] fully tested | ||
- [x] usb.odin | ||
- [ ] fully tested | ||
- [x] vlan.odin | ||
- [ ] fully tested | ||
|
||
Tests inside tests/... will be expanded upon to clear everything as I get time.. |