diff options
author | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-04-10 22:02:23 -0500 |
---|---|---|
committer | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-04-10 22:02:23 -0500 |
commit | f6135204f3339393732444bf92cfdfc9cd932124 (patch) | |
tree | 8caee23508d484c457516e788920acfc274ea4fd /internal/exec/tsch/module.go | |
parent | 1d82f299b433a17849b576b6e715a93240b29fd8 (diff) | |
download | goexec-f6135204f3339393732444bf92cfdfc9cd932124.tar.gz goexec-f6135204f3339393732444bf92cfdfc9cd932124.zip |
Add session hijack feature to TSCH module
Diffstat (limited to 'internal/exec/tsch/module.go')
-rw-r--r-- | internal/exec/tsch/module.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/exec/tsch/module.go b/internal/exec/tsch/module.go index 6e379a7..33c0723 100644 --- a/internal/exec/tsch/module.go +++ b/internal/exec/tsch/module.go @@ -14,9 +14,8 @@ type Module struct { } type MethodRegisterConfig struct { - NoDelete bool - CallDelete bool - //TaskName string + NoDelete bool + CallDelete bool TaskPath string StartDelay time.Duration StopDelay time.Duration @@ -26,6 +25,7 @@ type MethodRegisterConfig struct { type MethodDemandConfig struct { NoDelete bool CallDelete bool + SessionId uint32 TaskName string TaskPath string StopDelay time.Duration |