-rw-r--r-- | libopie2/opienet/opcap.cpp | 40 | ||||
-rw-r--r-- | libopie2/opienet/opcap.h | 2 |
2 files changed, 34 insertions, 8 deletions
diff --git a/libopie2/opienet/opcap.cpp b/libopie2/opienet/opcap.cpp index 913d42e..6ddd457 100644 --- a/libopie2/opienet/opcap.cpp +++ b/libopie2/opienet/opcap.cpp | |||
@@ -88,17 +88,43 @@ int OPacket::caplen() const | |||
88 | } | 88 | } |
89 | 89 | ||
90 | 90 | ||
91 | void OPacket::dump() const | 91 | QString OPacket::dump( int bpl ) const |
92 | { | 92 | { |
93 | printf( "OPacket::dump()\n" ); | 93 | static int index = 0; |
94 | printf( "----------------\n" ); | 94 | index++; |
95 | int len = _hdr.caplen; | ||
96 | QString str; | ||
97 | str.sprintf( "\n<----- Packet #%04d Len = 0x%X (%d) ----->\n\n", index, len, len ); | ||
98 | str.append( "0000: " ); | ||
99 | QString tmp; | ||
100 | QString bytes; | ||
101 | QString chars; | ||
95 | 102 | ||
96 | for ( int i = 0; i < _hdr.caplen; ++i ) | 103 | for ( int i = 0; i < len; ++i ) |
97 | { | 104 | { |
98 | printf( "%02x ", _data[i] ); | 105 | tmp.sprintf( "%02X ", _data[i] ); bytes.append( tmp ); |
99 | if ( !((i+1) % 32) ) printf( "\n" ); | 106 | if ( (_data[i] > 31) && (_data[i]<128) ) chars.append( _data[i] ); |
107 | else chars.append( '.' ); | ||
108 | |||
109 | if ( !((i+1) % bpl) ) | ||
110 | { | ||
111 | str.append( bytes ); | ||
112 | str.append( ' ' ); | ||
113 | str.append( chars ); | ||
114 | str.append( '\n' ); | ||
115 | tmp.sprintf( "%04X: ", i+1 ); str.append( tmp ); | ||
116 | bytes = ""; | ||
117 | chars = ""; | ||
118 | } | ||
119 | |||
120 | } | ||
121 | if ( (len % bpl) ) | ||
122 | { | ||
123 | str.append( bytes.leftJustify( 1 + 3*bpl ) ); | ||
124 | str.append( chars ); | ||
100 | } | 125 | } |
101 | printf( "\n\n" ); | 126 | str.append( '\n' ); |
127 | return str; | ||
102 | } | 128 | } |
103 | 129 | ||
104 | 130 | ||
diff --git a/libopie2/opienet/opcap.h b/libopie2/opienet/opcap.h index 0b06572..04d22ff 100644 --- a/libopie2/opienet/opcap.h +++ b/libopie2/opienet/opcap.h | |||
@@ -80,7 +80,7 @@ class OPacket : public QObject | |||
80 | 80 | ||
81 | int caplen() const; | 81 | int caplen() const; |
82 | int len() const; | 82 | int len() const; |
83 | void dump() const; | 83 | QString dump( int = 32 ) const; |
84 | 84 | ||
85 | private: | 85 | private: |
86 | const packetheaderstruct _hdr; // pcap packet header | 86 | const packetheaderstruct _hdr; // pcap packet header |