diff --git a/src/components/Display.vue b/src/components/Display.vue index 65807d0..4a05588 100644 --- a/src/components/Display.vue +++ b/src/components/Display.vue @@ -10,7 +10,7 @@ ({{ data.tshark_name }}) - {{ data.repr }} + {{ data.representation }}
✔️ Chksum: {{ data.chksum_status["chksum"] }}
@@ -119,7 +119,7 @@ Scapy code 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 @@