Changes between Initial Version and Version 1 of Ticket #2669


Ignore:
Timestamp:
03/10/14 06:47:31 (11 years ago)
Author:
FireFox
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2669

    • Property Owner set to FireFox
    • Property Status changed from new to assigned
  • Ticket #2669 – Description

    initial v1  
    55
    66TCP Send:
    7 
     7{{{
    88; I am the client, start me after the server! (First start example 2 of the TCPRecv function).
    99
     
    100100        TCPShutdown() ; Close the TCP service.
    101101EndFunc   ;==>OnAutoItExit
    102 
     102}}}
    103103------------------------------------------------------------------
    104104
    105105TCP Receive:
    106 
     106{{{
    107107; I am the server, start me first! (The start example 2 of the TCPSend function).
    108108
     
    216216        TCPShutdown() ; Close the TCP service.
    217217EndFunc   ;==>OnAutoItExit
    218 
    219 
     218}}}