Skip to content

Commit a2383ea

Browse files
committed
update pipeline with ub 18
1 parent 6a102ba commit a2383ea

File tree

16 files changed

+2007
-257
lines changed

16 files changed

+2007
-257
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
include:
1616
- platform: "macos-latest"
1717
args: "--target x86_64-apple-darwin"
18-
- platform: "ubuntu-22.04"
18+
- platform: "ubuntu-18.04"
1919
args: ""
2020
- platform: "windows-latest"
2121
args: ""
@@ -35,7 +35,7 @@ jobs:
3535
targets: ${{ matrix.platform == 'macos-latest' && 'x86_64-apple-darwin' || '' }}
3636

3737
- name: install dependencies (ubuntu only)
38-
if: matrix.platform == 'ubuntu-22.04'
38+
if: matrix.platform == 'ubuntu-18.04'
3939
run: |
4040
sudo apt-get update
4141
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libpcap-dev

src-tauri/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ tauri-plugin-log = "2.7.1"
3030
tauri-plugin-process = "2.3.1"
3131

3232
pcap = "2.4.0"
33-
packet_parser = "0.12.0"
33+
packet_parser = "0.12.1"
3434

3535
thiserror = "2.0.17"
3636
crossbeam = "0.8.4"

src-tauri/src/state/flow_matrix/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ impl FlowMatrix {
171171
application_protocol: flow
172172
.application
173173
.as_ref()
174-
.map(|a| a.application_protocol.clone()),
174+
.map(|a| a.protocol.clone()),
175175
count: stats.count,
176176
total_bytes: stats.total_bytes,
177177
last_seen,

src-tauri/src/state/graph.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ fn is_unknown(s: &str) -> bool {
277277
fn best_protocol_label(flow: &PacketFlowOwned) -> String {
278278
// L7 d'abord (uniquement si réellement détecté)
279279
if let Some(app) = &flow.application {
280-
let p = app.application_protocol.as_str();
280+
let p = app.protocol.as_str();
281281
if !is_unknown(p) {
282282
return p.to_string();
283283
}

src-tauri/vendor/packet_parser/.cargo-checksum.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"git": {
3-
"sha1": "29e28eda2945cbd086ac0544319bffbd8dfa47b1"
3+
"sha1": "f25b61becff9c1e24dba28143fe31f71d08b7b08"
44
},
55
"path_in_vcs": ""
66
}

src-tauri/vendor/packet_parser/Cargo.lock

Lines changed: 41 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/vendor/packet_parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[package]
1313
edition = "2024"
1414
name = "packet_parser"
15-
version = "0.12.0"
15+
version = "0.12.1"
1616
authors = ["Cyprien Avico avicocyprien@yahoo.com"]
1717
build = false
1818
exclude = [

src-tauri/vendor/packet_parser/Cargo.toml.orig

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)