From WikiChip
Difference between revisions of "mirc/on events/on dns"
< mirc‎ | on events

(Created On dns event - mIRC)
 
(See Also)
Line 27: Line 27:
  
 
== See Also ==
 
== See Also ==
 +
* [[$dns identifier - mIRC|$dns]]
 
* [[List of on events - mIRC|ON Events]]
 
* [[List of on events - mIRC|ON Events]]
  
 
[[Category:mIRC on events]]
 
[[Category:mIRC on events]]

Revision as of 14:42, 1 July 2014

The ON DNS event triggers when a DNS query either succeeds or fails, including when a user does not exist on the IRC server.

This event fills the $dns identifier with the address found for a user, as well as any addresses associated if DNS was performed on a host mask.

This event also fills the $iaddress, $naddress and $raddress identifiers. These resolve to IP Address, Host address, and resolved address, respectively. Although these identifiers work now, it is strongly advised that migration to using the $dns identifier is made.

The $nick identifier is filled as well. If /dns was performed on a nickname rather than an address, then $nick is filled with that nickname. Otherwise, $nick is filled with your own name.

Synopsis

ON <level>:DNS:<commands>

Parameters

<level>The level for the event to trigger.

<commands>The commands to be performed when the event listener's criteria is met.

Examples

Echo to the active window the results of the DNS:

ON *:DNS:echo -a $iif($1,$iif($dns(1).nick,$v1 has been resolved to) Hostmask: $dns(1).addr IP: $dns(1).ip,Could not resolve DNS query.)

The above example makes use of multiple $iif identifiers to ensure that we get proper results, without unforeseen issues. The first surrounding $iif identifier checks to make sure any data has been returned. If no data is returned, then the DNS obviously failed; therefore, we have it return a statement which says that a resolution could not be made. If data has been returned, the second $iif identifier checks to see if a .nick value can be extracted from the $dns identifier. This is filled if a nickname was the target of the DNS request. If the nickname is filled, return the portion containing the nickname. If, however, the nickname is not present, present only the hostmask and IP address.

Compatibility

Added: mIRC v4.7

Added On: 09/12/96

See Also