Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Pcap reader to v0.0.2 #221

Merged
merged 5 commits into from
Dec 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions extensions/pcap_reader/description.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extension:
name: pcap_reader
description: Read PCAP files from DuckDB
version: 0.0.1
version: 0.0.2
language: Rust
build: cmake
license: MIT
Expand All @@ -13,11 +13,11 @@ extension:

repo:
github: quackscience/duckdb-extension-pcap
ref: 658db756b32a434a144ef3521872bc5727a5f996
ref: 254f94f7cf1e3ca512f751abbabb4c3e3ce02161

docs:
hello_world: |
-- Basic PCAP reader
-- Basic PCAP reader for local or remote files
D SELECT * FROM pcap_reader('test.pcap') LIMIT 3;
┌────────────┬────────────────┬────────────────┬──────────┬──────────┬──────────┬─────────┬───────────────────────────────────────────┐
│ timestamp │ src_ip │ dst_ip │ src_port │ dst_port │ protocol │ length │ payload │
Expand Down
Loading