Skip to content

Commit 5a084eb

Browse files
Merge pull request #12 from nyu-mlab/new-data
Adding new variables needed for IoT Inspector to label packets
2 parents 65d8c8b + 2e39eae commit 5a084eb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/libinspector/global_state.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,18 @@
8888
# The MAC address of the device currently undergoing a labeling session.
8989
labeling_target_mac: str | None = None
9090

91+
# The IP address of the device currently undergoing a labeling session.
92+
labeling_target_ip: str | None = None
93+
9194
# The user-selected activity label for the current session.
9295
labeling_activity_name: str | None = None
9396

9497
# The epoch timestamp when the labeling packet collection officially began.
9598
labeling_session_start_ts: int | None = None
9699

100+
# The epoch timestamp when the labeling packet collection officially ended.
101+
labeling_session_end_ts: int | None = None
102+
97103
# =========================================================================
98104
# NEW: Application Status and Monitoring Variables
99105
# =========================================================================

0 commit comments

Comments
 (0)