Error message:
Undefined subroutine &Network::PacketParser::dumpData called at src/Network/PacketParser.pm line 456.
i reverted back to svn default and the error was there
my solution was this:
Code: Select all
Index: src/Network/PacketParser.pm
===================================================================
--- src/Network/PacketParser.pm (revision 7993)
+++ src/Network/PacketParser.pm (working copy)
@@ -453,7 +453,7 @@
} elsif ($config{debugPacket_include_dumpMethod} == 2) {
visualDump($msg, sprintf('%-24s %-4s%s', $title, $switch, $label));
} elsif ($config{debugPacket_include_dumpMethod} == 3) {
- dumpData($msg, 1);
+ Misc::dumpData($msg, 1);
} elsif ($config{debugPacket_include_dumpMethod} == 4) {
open my $dump, '>>', 'DUMP_lines.txt';
print $dump unpack('H*', $msg) . "\n";