- {{ data.repr }}
+ {{ data.representation }}
✔️ Chksum: {{ data.chksum_status["chksum"] }}
@@ -119,7 +119,7 @@
Scapy code representation:
-
-
{{ data.repr }}
+ {{ data.representation }}
@@ -128,7 +128,7 @@
Position in the hexdump
diff --git a/src/interfaces/packet.ts b/src/interfaces/packet.ts
index 2ecf2d8..619f50e 100644
--- a/src/interfaces/packet.ts
+++ b/src/interfaces/packet.ts
@@ -11,12 +11,13 @@ export interface StructureChksumStatus {
export interface Structure {
name: string;
- bytes: string;
- hex: string;
- hex_one: string;
+ bytes_record: string;
+ hex_record: string;
+ hex_record_full: string;
length: number;
- repr: string;
- repr_full: string;
+ length_unit: string;
+ representation: string;
+ representation_full: string;
tshark_name: string;
tshark_raw_summary: string[];
chksum_status: StructureChksumStatus;
diff --git a/src/views/pages/SimpleDiffPage.vue b/src/views/pages/SimpleDiffPage.vue
index 6d43c04..83e1a54 100644
--- a/src/views/pages/SimpleDiffPage.vue
+++ b/src/views/pages/SimpleDiffPage.vue
@@ -140,8 +140,8 @@