Measured data extracted from Telnet data, ver.2.12.449

This commit is contained in:
Milan Hanajik
2017-01-27 12:47:32 +01:00
parent 20b3840445
commit 3b13756db9
5 changed files with 99 additions and 53 deletions
@@ -12,8 +12,9 @@ namespace TBF.BenchControl.Network.Telnet
CONNECT, /// Connect (=open a TCP socket and log in). 'str'=hostname. Notify by 'Connected' event.
SET_PROMPT, /// Set a prompt string used in comparisons when executing ..._WAIT4PROMPT. 'str'=prompt.
CLEAR_RESPONSE, /// Clear received response buffer. 'str' is not used. Note: Response buffer is cleared also after a detected prompt.
SEND_STRING, /// Send string and do nothing else. 'str'=string to be sent.
SEND_COMMAND, /// Send string and WAIT for a PROMPT. 'str'=string to be sent. Notify by 'PromptReceived' event.
SEND_STRING, /// Send a string and do nothing else. 'str'=string to be sent.
SEND_MSRMNT_CMD, /// Send a string and extract measurements from received data (filter received data)
SEND_COMMAND, /// Send a string and WAIT for a PROMPT. 'str'=string to be sent. Notify by 'PromptReceived' event.
REBOOT_RECONNECT, /// Send 'reboot' command (if connected), wait a while and reconect. 'str' is not used. Notify by 'Connected' event.
EXIT_RECONNECT, /// Send 'exit' (terminate telnet session) and reconect. 'str' is not used. Notify using 'Connected' event.
DISCONNECT, /// Send 'exit' to disconnect, do not reconnect. 'str' is not used.