Changes between Initial Version and Version 1 of Ticket #2669
- Timestamp:
- 03/10/14 06:47:31 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2669
- Property Owner set to FireFox
- Property Status changed from new to assigned
-
Ticket #2669 – Description
initial v1 5 5 6 6 TCP Send: 7 7 {{{ 8 8 ; I am the client, start me after the server! (First start example 2 of the TCPRecv function). 9 9 … … 100 100 TCPShutdown() ; Close the TCP service. 101 101 EndFunc ;==>OnAutoItExit 102 102 }}} 103 103 ------------------------------------------------------------------ 104 104 105 105 TCP Receive: 106 106 {{{ 107 107 ; I am the server, start me first! (The start example 2 of the TCPSend function). 108 108 … … 216 216 TCPShutdown() ; Close the TCP service. 217 217 EndFunc ;==>OnAutoItExit 218 219 218 }}}