From WikiChip
Difference between revisions of "mirc/commands/sockmark"
m (Bot: Fixing links) |
m (Bot: Fixing links) |
||
Line 1: | Line 1: | ||
− | The '''/sockmark command''' assigns temporary data to a socket to be referenced later using | + | The '''/sockmark command''' assigns temporary data to a socket to be referenced later using {{mIRC|$sock}}(<name>).mark. Leaving the [temp data] parameter {{mIRC|$null}} will clear the socket mark. The sockmark command can be used to assign the same data to multiple sockets using a <wild_name> wildcard pattern. |
== Limitations == | == Limitations == | ||
Line 45: | Line 45: | ||
* [[List of commands - mIRC|List of commands]] | * [[List of commands - mIRC|List of commands]] | ||
* [[List of identifiers - mIRC|List of identifiers]] | * [[List of identifiers - mIRC|List of identifiers]] | ||
− | * | + | * {{mIRC|$sock}} |
− | * | + | * {{mIRC|$sockname}} |
− | * | + | * {{mIRC|$sockerr}} |
− | * | + | * {{mIRC|$sockbr}} |
* {{mIRC|/sockaccept}} | * {{mIRC|/sockaccept}} | ||
* {{mIRC|/sockclose}} | * {{mIRC|/sockclose}} |
Revision as of 19:40, 5 July 2014
The /sockmark command assigns temporary data to a socket to be referenced later using $sock(<name>).mark. Leaving the [temp data] parameter $null will clear the socket mark. The sockmark command can be used to assign the same data to multiple sockets using a <wild_name> wildcard pattern.
Limitations
The [temp data] is limited to (4,141 - [length of <sock_name>]) characters. I.e. with a socket named "x", you can store up to 4140 characters.
Synopsis
/sockmark <name> [temp data] /sockmark <wild_name> [temp data]
Switches
None
Parameters
- <name> - The handle name of the socket
- <wild_name> - A wildcard pattern to match
- [temp data] - The temporary socket's data
Example
The example below is a demonstration of how you would use it. It does not actually function.
; Non-functioning example, shows practical usage only on $*:text:/^!foo (\S+)$/Si:#:{ ; if ( .. validate input .. ) { sockopen sock1 www.example.com 80 sockmark sock1 $regml(1) } on *:sockopen:sock1:{ ; submit the information we got from the user sockwrite -nt $sockname GET /foobar.php?q= $+ sock($sockname).mark HTTP/1.0 sockwrite -nt $sockname Host: www.example.com sockwrite -nt $sockname $crlf } ; on *:sockread:sock1: { ; .... ; }
Compatibility
Added: mIRC v5.3
Added On: 13/12/97
Note: Individual switches were not taken into consideration.
See also
- List of commands
- List of identifiers
- $sock
- $sockname
- $sockerr
- $sockbr
- /sockaccept
- /sockclose
- /socklist
- /socklisten
- /sockopen
- /sockpause
- /sockread
- /sockrename
- /sockudp
- /sockwrite
mIRC commands list