/* Set of examples about using strings. run: anettest -d eth0 -f this_file.fws */ INCLUDE tcp // symbol \ before a new line causes that the new line will be ignored // otherwise LF symbol will be inserted td = "\ first line second line " send // CRLF symbol may be implemented by adding \r sequence td = "\ first line\r second line" send NEWLINEIS "\r\n" // indicates to replace a new line by the specified sequence td = "first line second line " send