diff options
-rwxr-xr-x | scripts/automation/trex_control_plane/stf/trex_stf_lib/trex_client.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/automation/trex_control_plane/stf/trex_stf_lib/trex_client.py b/scripts/automation/trex_control_plane/stf/trex_stf_lib/trex_client.py index 2735f006..09ee52ef 100755 --- a/scripts/automation/trex_control_plane/stf/trex_stf_lib/trex_client.py +++ b/scripts/automation/trex_control_plane/stf/trex_stf_lib/trex_client.py @@ -1032,6 +1032,7 @@ class CTRexClient(object): def start_trex_daemon(self): ''' Start TRex server daemon. + :return: + **True** if success. + **False** if TRex server daemon already running. @@ -1046,6 +1047,7 @@ class CTRexClient(object): def stop_trex_daemon(self): ''' Stop TRex server daemon. + :return: + **True** if success. + **False** if TRex server daemon already running. |