Project

General

Profile

Actions

On SOCKREAD » History » Revision 1

Revision 1/4 | Next »
Per Amundsen, 11/19/2015 10:54 AM


Added in 1.9.0

on <level>:SOCKREAD:name:<commands>

Triggers when there is info waiting to be read on the specified connection.
You can read this info using the /sockread command.

See also on SOCKOPEN, on SOCKCLOSE, on SOCKLISTEN, on SOCKWRITE, /socklisten, /sockopen, /sockaccept, $sock, $sockbr, $sockerr, $sockname.

Parameters

<level> - The level for the event to trigger.
<name> - The $sockname to listen to.
<commands> - The commands to be performed when the event listener's criteria is met.

Example

; Open a connection to AdiIRC.com, port 80.
/sockopen adiirc adiirc.com 80

; Make a request for the index page.
on *:SOCKOPEN:adiirc:{
  sockwrite -n example1 GET / HTTP/1.0
  sockwrite -n example1 Host: www.adiirc.com
  sockwrite -n example1
}

on *:SOCKREAD:adiirc:{
  var %s
  sockread %s
  echo -ag Read line %s
}

Updated by Per Amundsen over 8 years ago · 1 revisions

Also available in: PDF HTML TXT