Jason Normandin wrote:
> Hello
Hello,
> I have a situation where I build an anonymous array of hashes for some
> requests and responses found in a file (there can be multiple requests and
> responses). It works very nicely and tracks all of the responses and
> requests from an ip to another IP ad
On Friday 05 August 2005 01:37, Jason Normandin wrote:
[..]
>
> if ($protocol =~ /PING REQUEST/) {
> push @{$pingRequests{$destination}}, {
> time => $time,
> sequenceNumber=>$sequenceNumber
> };
> }
> elsif ($protocol =~ /PING RESPONSE/) {
> push @{$pi
Hello
I have a situation where I build an anonymous array of hashes for some
requests and responses found in a file (there can be multiple requests and
responses). It works very nicely and tracks all of the responses and
requests from an ip to another IP address.
Here is my code:
my $time=$1 if