DataIn Event
Fired when new ICMP messages come in.
Object Oriented Interface
public function fireDataIn($param);
Procedural Interface
ipworks_icmpport_register_callback($res, 1, array($this, 'fireDataIn'));
Parameter List
'messagetype'
'messagesubtype'
'messagedata'
'checksum'
'sourceaddress'
Remarks
The MessageType parameter shows the type of the ICMP messages and MessageSubType its subtype.
The MessageData parameter contains the message data.
The Checksum parameter is True or False depending on the ICMP checksum check on the message.
Note that events are not re-entrant. Performing time consuming operations within this event will prevent it from firing again in a timely manner and may impact overall performance.