-rw-r--r-- | libopie2/opienet/onetwork.cpp | 12 | ||||
-rw-r--r-- | libopie2/opienet/opcap.cpp | 27 | ||||
-rw-r--r-- | libopie2/opienet/opcap.h | 5 |
3 files changed, 38 insertions, 6 deletions
diff --git a/libopie2/opienet/onetwork.cpp b/libopie2/opienet/onetwork.cpp index 1f529d2..45ee4c0 100644 --- a/libopie2/opienet/onetwork.cpp +++ b/libopie2/opienet/onetwork.cpp | |||
@@ -931,10 +931,16 @@ QString OWlanNGMonitoringInterface::name() const | |||
931 | } | 931 | } |
932 | 932 | ||
933 | 933 | ||
934 | void OWlanNGMonitoringInterface::setChannel( int ) | 934 | void OWlanNGMonitoringInterface::setChannel( int c ) |
935 | { | 935 | { |
936 | // wlan-ng devices automatically switch channels when in monitor mode | 936 | //NOTE: Older wlan-ng drivers automatically hopped channels while lnxreq_wlansniff=true. Newer ones don't. |
937 | // NOTE: The above note no longer seems to be true for recent driver versions! | 937 | |
938 | QString enable = "true"; //_if->monitorMode() ? "true" : "false"; | ||
939 | QString prism = _prismHeader ? "true" : "false"; | ||
940 | QString cmd; | ||
941 | cmd.sprintf( "$(which wlanctl-ng) %s lnxreq_wlansniff channel=%d enable=%s prismheader=%s", | ||
942 | (const char*) _if->name(), c+1, (const char*) enable, (const char*) prism ); | ||
943 | system( cmd ); | ||
938 | } | 944 | } |
939 | 945 | ||
940 | 946 | ||
diff --git a/libopie2/opienet/opcap.cpp b/libopie2/opienet/opcap.cpp index 9ed2b83..38ca1a1 100644 --- a/libopie2/opienet/opcap.cpp +++ b/libopie2/opienet/opcap.cpp | |||
@@ -32,15 +32,19 @@ | |||
32 | */ | 32 | */ |
33 | 33 | ||
34 | /* OPIE */ | 34 | /* OPIE */ |
35 | |||
36 | #include <opie2/opcap.h> | 35 | #include <opie2/opcap.h> |
37 | 36 | ||
38 | /* QT */ | 37 | /* QT */ |
39 | |||
40 | #include <qapplication.h> // don't use oapplication here (will decrease reusability in other projects) | 38 | #include <qapplication.h> // don't use oapplication here (will decrease reusability in other projects) |
41 | #include <qsocketnotifier.h> | 39 | #include <qsocketnotifier.h> |
42 | #include <qobjectlist.h> | 40 | #include <qobjectlist.h> |
43 | 41 | ||
42 | /* SYSTEM */ | ||
43 | #include <sys/time.h> | ||
44 | #include <sys/types.h> | ||
45 | #include <unistd.h> | ||
46 | |||
47 | /* LOCAL */ | ||
44 | #include "udp_ports.h" | 48 | #include "udp_ports.h" |
45 | 49 | ||
46 | /*====================================================================================== | 50 | /*====================================================================================== |
@@ -196,7 +200,7 @@ OEthernetPacket::OEthernetPacket( const unsigned char* end, const struct ether_h | |||
196 | switch ( type() ) | 200 | switch ( type() ) |
197 | { | 201 | { |
198 | case ETHERTYPE_IP: new OIPPacket( end, (const struct iphdr*) (data+1), this ); break; | 202 | case ETHERTYPE_IP: new OIPPacket( end, (const struct iphdr*) (data+1), this ); break; |
199 | case ETHERTYPE_ARP: { qDebug( "OPacket::OPacket(): Received Ethernet Packet : Type = ARP" ); break; } | 203 | case ETHERTYPE_ARP: new OARPPacket( end, (const struct myarphdr*) (data+1), this ); break; |
200 | case ETHERTYPE_REVARP: { qDebug( "OPacket::OPacket(): Received Ethernet Packet : Type = RARP" ); break; } | 204 | case ETHERTYPE_REVARP: { qDebug( "OPacket::OPacket(): Received Ethernet Packet : Type = RARP" ); break; } |
201 | default: qDebug( "OPacket::OPacket(): Received Ethernet Packet : Type = UNKNOWN" ); | 205 | default: qDebug( "OPacket::OPacket(): Received Ethernet Packet : Type = UNKNOWN" ); |
202 | } | 206 | } |
@@ -1130,6 +1134,23 @@ int OPacketCapturer::fileno() const | |||
1130 | } | 1134 | } |
1131 | } | 1135 | } |
1132 | 1136 | ||
1137 | |||
1138 | OPacket* OPacketCapturer::next( int time ) | ||
1139 | { | ||
1140 | fd_set fds; | ||
1141 | struct timeval tv; | ||
1142 | FD_ZERO( &fds ); | ||
1143 | FD_SET( pcap_fileno( _pch ), &fds ); | ||
1144 | tv.tv_sec = time / 1000; | ||
1145 | tv.tv_usec = time % 1000; | ||
1146 | int retval = select( 1, &fds, NULL, NULL, &tv); | ||
1147 | if ( retval > 0 ) // clear to read! | ||
1148 | return next(); | ||
1149 | else | ||
1150 | return 0; | ||
1151 | } | ||
1152 | |||
1153 | |||
1133 | OPacket* OPacketCapturer::next() | 1154 | OPacket* OPacketCapturer::next() |
1134 | { | 1155 | { |
1135 | packetheaderstruct header; | 1156 | packetheaderstruct header; |
diff --git a/libopie2/opienet/opcap.h b/libopie2/opienet/opcap.h index 51f067a..54b256b 100644 --- a/libopie2/opienet/opcap.h +++ b/libopie2/opienet/opcap.h | |||
@@ -605,6 +605,11 @@ class OPacketCapturer : public QObject | |||
605 | */ | 605 | */ |
606 | OPacket* next(); | 606 | OPacket* next(); |
607 | /** | 607 | /** |
608 | * @returns the next @ref OPacket from the packet capturer, if | ||
609 | * one arrives within @a time milliseconds. | ||
610 | */ | ||
611 | OPacket* next( int time ); | ||
612 | /** | ||
608 | * Open the packet capturer to capture packets in live-mode from @a interface. | 613 | * Open the packet capturer to capture packets in live-mode from @a interface. |
609 | */ | 614 | */ |
610 | bool open( const QString& interface ); | 615 | bool open( const QString& interface ); |