MC-Basic:CONNECT

From SoftMC-Wiki
Revision as of 10:35, 18 July 2019 by Rasty (talk | contribs) (fixed example)
Jump to: navigation, search
Language: English  • 中文(简体)‎

Requests a TCP connection from the remote host.

Syntax

Connect(#<device number>, <ip address>,<port number>)

Type

<device number>: Long
<port number>: Long
<ip address>: string

Range

<device number>: 1 to 255

<ip address>: IP address

<port number>: TCP port

Scope

Task

Limitations

  • Task only
  • Errors: Cannot connect

Examples

OpenSocket Options=1 as #200 Connect(#200,"127.0.0.1",6002) print Input$(LOC(200), #200) close #200

See Also