diff options
author | Clément Bénier <clement.benier@iot.bzh> | 2018-08-17 14:44:20 +0200 |
---|---|---|
committer | Clément Bénier <clement.benier@iot.bzh> | 2018-08-21 16:26:12 +0200 |
commit | 635a25c98bb606d987fcd55cf697ea9f4a0b38b2 (patch) | |
tree | 95d94ca601ec8c684b985d93f5f68721f8c5a25a /lib | |
parent | 543c13fa1988565877b483ee001b4ff1c3e12a22 (diff) |
terminal status: add terminal status 'Closing'guppy_6.90.0guppy/6.90.0flounder_5.99.6flounder_5.99.5flounder/5.99.6flounder/5.99.56.90.05.99.65.99.5
add terminal status 'Closing' to match with xds-server
Change-Id: I34f29cd64c66d41b340d85f31d9935814acc8749
Signed-off-by: Clément Bénier <clement.benier@iot.bzh>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/xaapiv1/targets.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/xaapiv1/targets.go b/lib/xaapiv1/targets.go index 1410fe6..744c38a 100644 --- a/lib/xaapiv1/targets.go +++ b/lib/xaapiv1/targets.go @@ -65,6 +65,8 @@ const ( StatusTermOpen = "Open" // StatusTermClose Close state StatusTermClose = "Close" + // StatusTermClosing Closing state + StatusTermClosing = "Closing" // TerminalInEvent Event send in WS when characters are sent (stdin) TerminalInEvent = "term:input" |