diff options
| author | Will Dillon <william@housedillon.com> | 2025-11-08 13:28:46 +0000 |
|---|---|---|
| committer | Will Dillon <william@housedillon.com> | 2025-11-08 13:28:46 +0000 |
| commit | f2f4e449b6e5ec3d239d0a26082db0506fdd2683 (patch) | |
| tree | 0615037a614f6163dfa1781b32753b03e2c3b1dc /src | |
| parent | Made it work in MeshTNC and did some more descriptions (diff) | |
| download | meshcore-rs-f2f4e449b6e5ec3d239d0a26082db0506fdd2683.tar.gz meshcore-rs-f2f4e449b6e5ec3d239d0a26082db0506fdd2683.zip | |
Don't print the keystore
Diffstat (limited to 'src')
| -rw-r--r-- | src/bin/packet_analyzer.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/bin/packet_analyzer.rs b/src/bin/packet_analyzer.rs index 9348a08..96fcfd2 100644 --- a/src/bin/packet_analyzer.rs +++ b/src/bin/packet_analyzer.rs @@ -39,11 +39,8 @@ async fn main() -> Result<()> { // Attempt to load the identities file from disk and load all the identities let identity_string = std::fs::read_to_string(args.identities_file)?; let keystore_in: KeystoreInput = toml::from_str(&identity_string)?; - let keystore = keystore_in.compile(); - // println!("Keystore: \n{:#?}", keystore); - // Pcapng file for loading packets let pcap_file = File::open(args.pcap_file).await?; let mut pcap_reader = PcapNgReader::new(pcap_file).await?; |
