summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opienet/opcap.cpp4
-rw-r--r--libopie2/opienet/opcap.h4
2 files changed, 3 insertions, 5 deletions
diff --git a/libopie2/opienet/opcap.cpp b/libopie2/opienet/opcap.cpp
index 067d6b7..f8ebe6b 100644
--- a/libopie2/opienet/opcap.cpp
+++ b/libopie2/opienet/opcap.cpp
@@ -518,854 +518,852 @@ QHostAddress ODHCPPacket::clientAddress() const
518{ 518{
519 return EXTRACT_32BITS( &_dhcphdr->ciaddr ); 519 return EXTRACT_32BITS( &_dhcphdr->ciaddr );
520} 520}
521 521
522 522
523QHostAddress ODHCPPacket::yourAddress() const 523QHostAddress ODHCPPacket::yourAddress() const
524{ 524{
525 return EXTRACT_32BITS( &_dhcphdr->yiaddr ); 525 return EXTRACT_32BITS( &_dhcphdr->yiaddr );
526} 526}
527 527
528 528
529QHostAddress ODHCPPacket::serverAddress() const 529QHostAddress ODHCPPacket::serverAddress() const
530{ 530{
531 return EXTRACT_32BITS( &_dhcphdr->siaddr ); 531 return EXTRACT_32BITS( &_dhcphdr->siaddr );
532} 532}
533 533
534 534
535QHostAddress ODHCPPacket::relayAddress() const 535QHostAddress ODHCPPacket::relayAddress() const
536{ 536{
537 return EXTRACT_32BITS( &_dhcphdr->giaddr ); 537 return EXTRACT_32BITS( &_dhcphdr->giaddr );
538} 538}
539 539
540 540
541OMacAddress ODHCPPacket::clientMacAddress() const 541OMacAddress ODHCPPacket::clientMacAddress() const
542{ 542{
543 return OMacAddress( _dhcphdr->chaddr ); 543 return OMacAddress( _dhcphdr->chaddr );
544} 544}
545 545
546 546
547/*====================================================================================== 547/*======================================================================================
548 * OTCPPacket 548 * OTCPPacket
549 *======================================================================================*/ 549 *======================================================================================*/
550 550
551 551
552OTCPPacket::OTCPPacket( const unsigned char* end, const struct tcphdr* data, QObject* parent ) 552OTCPPacket::OTCPPacket( const unsigned char* end, const struct tcphdr* data, QObject* parent )
553 :QObject( parent, "TCP" ), _tcphdr( data ) 553 :QObject( parent, "TCP" ), _tcphdr( data )
554 554
555{ 555{
556 odebug << "OTCPPacket::OTCPPacket(): decoding TCP header..." << oendl; 556 odebug << "OTCPPacket::OTCPPacket(): decoding TCP header..." << oendl;
557} 557}
558 558
559 559
560OTCPPacket::~OTCPPacket() 560OTCPPacket::~OTCPPacket()
561{ 561{
562} 562}
563 563
564 564
565int OTCPPacket::fromPort() const 565int OTCPPacket::fromPort() const
566{ 566{
567 return EXTRACT_16BITS( &_tcphdr->source ); 567 return EXTRACT_16BITS( &_tcphdr->source );
568} 568}
569 569
570 570
571int OTCPPacket::toPort() const 571int OTCPPacket::toPort() const
572{ 572{
573 return EXTRACT_16BITS( &_tcphdr->dest ); 573 return EXTRACT_16BITS( &_tcphdr->dest );
574} 574}
575 575
576 576
577int OTCPPacket::seq() const 577int OTCPPacket::seq() const
578{ 578{
579 return EXTRACT_16BITS( &_tcphdr->seq ); 579 return EXTRACT_16BITS( &_tcphdr->seq );
580} 580}
581 581
582 582
583int OTCPPacket::ack() const 583int OTCPPacket::ack() const
584{ 584{
585 return EXTRACT_16BITS( &_tcphdr->ack_seq ); 585 return EXTRACT_16BITS( &_tcphdr->ack_seq );
586} 586}
587 587
588 588
589int OTCPPacket::window() const 589int OTCPPacket::window() const
590{ 590{
591 return EXTRACT_16BITS( &_tcphdr->window ); 591 return EXTRACT_16BITS( &_tcphdr->window );
592} 592}
593 593
594 594
595int OTCPPacket::checksum() const 595int OTCPPacket::checksum() const
596{ 596{
597 return EXTRACT_16BITS( &_tcphdr->check ); 597 return EXTRACT_16BITS( &_tcphdr->check );
598} 598}
599 599
600/*====================================================================================== 600/*======================================================================================
601 * OPrismHeaderPacket 601 * OPrismHeaderPacket
602 *======================================================================================*/ 602 *======================================================================================*/
603 603
604 604
605OPrismHeaderPacket::OPrismHeaderPacket( const unsigned char* end, const struct prism_hdr* data, QObject* parent ) 605OPrismHeaderPacket::OPrismHeaderPacket( const unsigned char* end, const struct prism_hdr* data, QObject* parent )
606 :QObject( parent, "Prism" ), _header( data ) 606 :QObject( parent, "Prism" ), _header( data )
607 607
608{ 608{
609 odebug << "OPrismHeaderPacket::OPrismHeaderPacket(): decoding PRISM header..." << oendl; 609 odebug << "OPrismHeaderPacket::OPrismHeaderPacket(): decoding PRISM header..." << oendl;
610 610
611 odebug << "Signal Strength = " << data->signal.data << oendl; 611 odebug << "Signal Strength = " << data->signal.data << oendl;
612 612
613 new OWaveLanPacket( end, (const struct ieee_802_11_header*) (data+1), this ); 613 new OWaveLanPacket( end, (const struct ieee_802_11_header*) (data+1), this );
614} 614}
615 615
616OPrismHeaderPacket::~OPrismHeaderPacket() 616OPrismHeaderPacket::~OPrismHeaderPacket()
617{ 617{
618} 618}
619 619
620 620
621unsigned int OPrismHeaderPacket::signalStrength() const 621unsigned int OPrismHeaderPacket::signalStrength() const
622{ 622{
623 return _header->signal.data; 623 return _header->signal.data;
624} 624}
625 625
626/*====================================================================================== 626/*======================================================================================
627 * OWaveLanPacket 627 * OWaveLanPacket
628 *======================================================================================*/ 628 *======================================================================================*/
629 629
630 630
631OWaveLanPacket::OWaveLanPacket( const unsigned char* end, const struct ieee_802_11_header* data, QObject* parent ) 631OWaveLanPacket::OWaveLanPacket( const unsigned char* end, const struct ieee_802_11_header* data, QObject* parent )
632 :QObject( parent, "802.11" ), _wlanhdr( data ) 632 :QObject( parent, "802.11" ), _wlanhdr( data )
633 633
634{ 634{
635 odebug << "OWaveLanPacket::OWaveLanPacket(): decoding IEEE 802.11 header..." << oendl; 635 odebug << "OWaveLanPacket::OWaveLanPacket(): decoding IEEE 802.11 header..." << oendl;
636 odebug << "type = " << type() << oendl; 636 odebug << "type = " << type() << oendl;
637 odebug << "subType = " << subType() << oendl; 637 odebug << "subType = " << subType() << oendl;
638 odebug << "duration = " << duration() << oendl; 638 odebug << "duration = " << duration() << oendl;
639 odebug << "powermanagement = " << usesPowerManagement() << oendl; 639 odebug << "powermanagement = " << usesPowerManagement() << oendl;
640 odebug << "payload is encrypted = " << ( usesWep() ? "yes" : "no" ) << oendl; 640 odebug << "payload is encrypted = " << ( usesWep() ? "yes" : "no" ) << oendl;
641 odebug << "MAC1 = " << macAddress1().toString() << oendl; 641 odebug << "MAC1 = " << macAddress1().toString() << oendl;
642 odebug << "MAC2 = " << macAddress2().toString() << oendl; 642 odebug << "MAC2 = " << macAddress2().toString() << oendl;
643 odebug << "MAC3 = " << macAddress3().toString() << oendl; 643 odebug << "MAC3 = " << macAddress3().toString() << oendl;
644 odebug << "MAC4 = " << macAddress4().toString() << oendl; 644 odebug << "MAC4 = " << macAddress4().toString() << oendl;
645 645
646 switch ( type() ) 646 switch ( type() )
647 { 647 {
648 case T_MGMT: new OWaveLanManagementPacket( end, (const struct ieee_802_11_mgmt_header*) data, this ); break; 648 case T_MGMT: new OWaveLanManagementPacket( end, (const struct ieee_802_11_mgmt_header*) data, this ); break;
649 case T_DATA: new OWaveLanDataPacket( end, (const struct ieee_802_11_data_header*) data, this ); break; 649 case T_DATA: new OWaveLanDataPacket( end, (const struct ieee_802_11_data_header*) data, this ); break;
650 case T_CTRL: new OWaveLanControlPacket( end, (const struct ieee_802_11_control_header*) data, this ); break; 650 case T_CTRL: new OWaveLanControlPacket( end, (const struct ieee_802_11_control_header*) data, this ); break;
651 default: odebug << "OWaveLanPacket::OWaveLanPacket(): Warning: Unknown major type = " << type() << oendl; 651 default: odebug << "OWaveLanPacket::OWaveLanPacket(): Warning: Unknown major type = " << type() << oendl;
652 } 652 }
653} 653}
654 654
655OWaveLanPacket::~OWaveLanPacket() 655OWaveLanPacket::~OWaveLanPacket()
656{ 656{
657} 657}
658 658
659 659
660int OWaveLanPacket::duration() const 660int OWaveLanPacket::duration() const
661{ 661{
662 return _wlanhdr->duration; 662 return _wlanhdr->duration;
663} 663}
664 664
665 665
666OMacAddress OWaveLanPacket::macAddress1() const 666OMacAddress OWaveLanPacket::macAddress1() const
667{ 667{
668 return OMacAddress( _wlanhdr->mac1 ); 668 return OMacAddress( _wlanhdr->mac1 );
669} 669}
670 670
671 671
672OMacAddress OWaveLanPacket::macAddress2() const 672OMacAddress OWaveLanPacket::macAddress2() const
673{ 673{
674 return OMacAddress( _wlanhdr->mac2 ); 674 return OMacAddress( _wlanhdr->mac2 );
675} 675}
676 676
677 677
678OMacAddress OWaveLanPacket::macAddress3() const 678OMacAddress OWaveLanPacket::macAddress3() const
679{ 679{
680 return OMacAddress( _wlanhdr->mac3 ); 680 return OMacAddress( _wlanhdr->mac3 );
681} 681}
682 682
683 683
684OMacAddress OWaveLanPacket::macAddress4() const 684OMacAddress OWaveLanPacket::macAddress4() const
685{ 685{
686 return OMacAddress( _wlanhdr->mac4 ); 686 return OMacAddress( _wlanhdr->mac4 );
687} 687}
688 688
689 689
690int OWaveLanPacket::subType() const 690int OWaveLanPacket::subType() const
691{ 691{
692 return FC_SUBTYPE( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) ); 692 return FC_SUBTYPE( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) );
693} 693}
694 694
695 695
696int OWaveLanPacket::type() const 696int OWaveLanPacket::type() const
697{ 697{
698 return FC_TYPE( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) ); 698 return FC_TYPE( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) );
699} 699}
700 700
701 701
702int OWaveLanPacket::version() const 702int OWaveLanPacket::version() const
703{ 703{
704 return FC_VERSION( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) ); 704 return FC_VERSION( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) );
705} 705}
706 706
707 707
708bool OWaveLanPacket::fromDS() const 708bool OWaveLanPacket::fromDS() const
709{ 709{
710 return FC_FROM_DS( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) ); 710 return FC_FROM_DS( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) );
711} 711}
712 712
713 713
714bool OWaveLanPacket::toDS() const 714bool OWaveLanPacket::toDS() const
715{ 715{
716 return FC_TO_DS( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) ); 716 return FC_TO_DS( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) );
717} 717}
718 718
719 719
720bool OWaveLanPacket::usesPowerManagement() const 720bool OWaveLanPacket::usesPowerManagement() const
721{ 721{
722 return FC_POWER_MGMT( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) ); 722 return FC_POWER_MGMT( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) );
723} 723}
724 724
725 725
726bool OWaveLanPacket::usesWep() const 726bool OWaveLanPacket::usesWep() const
727{ 727{
728 return FC_WEP( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) ); 728 return FC_WEP( EXTRACT_LE_16BITS( &_wlanhdr->frame_control ) );
729} 729}
730 730
731 731
732/*====================================================================================== 732/*======================================================================================
733 * OWaveLanManagementPacket 733 * OWaveLanManagementPacket
734 *======================================================================================*/ 734 *======================================================================================*/
735 735
736OWaveLanManagementPacket::OWaveLanManagementPacket( const unsigned char* end, const struct ieee_802_11_mgmt_header* data, OWaveLanPacket* parent ) 736OWaveLanManagementPacket::OWaveLanManagementPacket( const unsigned char* end, const struct ieee_802_11_mgmt_header* data, OWaveLanPacket* parent )
737 :QObject( parent, "802.11 Management" ), _header( data ), 737 :QObject( parent, "802.11 Management" ), _header( data ),
738 _body( (const struct ieee_802_11_mgmt_body*) (data+1) ) 738 _body( (const struct ieee_802_11_mgmt_body*) (data+1) )
739{ 739{
740 odebug << "OWaveLanManagementPacket::OWaveLanManagementPacket(): decoding frame..." << oendl; 740 odebug << "OWaveLanManagementPacket::OWaveLanManagementPacket(): decoding frame..." << oendl;
741 odebug << "Detected subtype is " << managementType() << oendl; 741 odebug << "Detected subtype is " << managementType() << oendl;
742 742
743 // Grab tagged values. 743 // Grab tagged values.
744 // Beacons contain a 12 byte long fixed parameters set before the tagged parameters come, 744 // Beacons contain a 12 byte long fixed parameters set before the tagged parameters come,
745 // Other management frames don't - which is why we have to inspect the subtype here. 745 // Other management frames don't - which is why we have to inspect the subtype here.
746 746
747 const unsigned char* ptr = managementType() == "Beacon" ? (const unsigned char*) (_body+1) : (const unsigned char*) (_header+1); 747 const unsigned char* ptr = managementType() == "Beacon" ? (const unsigned char*) (_body+1) : (const unsigned char*) (_header+1);
748 748
749 while (ptr < end) 749 while (ptr < end)
750 { 750 {
751 switch ( *ptr ) 751 switch ( *ptr )
752 { 752 {
753 case E_SSID: new OWaveLanManagementSSID( end, (struct ssid_t*) ptr, this ); break; 753 case E_SSID: new OWaveLanManagementSSID( end, (struct ssid_t*) ptr, this ); break;
754 case E_FH: new OWaveLanManagementFH( end, (struct fh_t*) ptr, this ); break; 754 case E_FH: new OWaveLanManagementFH( end, (struct fh_t*) ptr, this ); break;
755 case E_DS: new OWaveLanManagementDS( end, (struct ds_t*) ptr, this ); break; 755 case E_DS: new OWaveLanManagementDS( end, (struct ds_t*) ptr, this ); break;
756 case E_RATES: new OWaveLanManagementRates( end, (struct rates_t*) ptr, this ); break; 756 case E_RATES: new OWaveLanManagementRates( end, (struct rates_t*) ptr, this ); break;
757 case E_CF: new OWaveLanManagementCF( end, (struct cf_t*) ptr, this ); break; 757 case E_CF: new OWaveLanManagementCF( end, (struct cf_t*) ptr, this ); break;
758 case E_TIM: new OWaveLanManagementTim( end, (struct tim_t*) ptr, this ); break; 758 case E_TIM: new OWaveLanManagementTim( end, (struct tim_t*) ptr, this ); break;
759 case E_IBSS: new OWaveLanManagementIBSS( end, (struct ibss_t*) ptr, this ); break; 759 case E_IBSS: new OWaveLanManagementIBSS( end, (struct ibss_t*) ptr, this ); break;
760 case E_CHALLENGE: new OWaveLanManagementChallenge( end, (struct challenge_t*) ptr, this ); break; 760 case E_CHALLENGE: new OWaveLanManagementChallenge( end, (struct challenge_t*) ptr, this ); break;
761 } 761 }
762 ptr+= ( ( struct ssid_t* ) ptr )->length; // skip length of tagged value 762 ptr+= ( ( struct ssid_t* ) ptr )->length; // skip length of tagged value
763 ptr+= 2; // skip tag ID and length 763 ptr+= 2; // skip tag ID and length
764 } 764 }
765} 765}
766 766
767 767
768OWaveLanManagementPacket::~OWaveLanManagementPacket() 768OWaveLanManagementPacket::~OWaveLanManagementPacket()
769{ 769{
770} 770}
771 771
772 772
773QString OWaveLanManagementPacket::managementType() const 773QString OWaveLanManagementPacket::managementType() const
774{ 774{
775 switch ( FC_SUBTYPE( EXTRACT_LE_16BITS( &_header->fc ) ) ) 775 switch ( FC_SUBTYPE( EXTRACT_LE_16BITS( &_header->fc ) ) )
776 { 776 {
777 case ST_ASSOC_REQUEST: return "AssociationRequest"; break; 777 case ST_ASSOC_REQUEST: return "AssociationRequest"; break;
778 case ST_ASSOC_RESPONSE: return "AssociationResponse"; break; 778 case ST_ASSOC_RESPONSE: return "AssociationResponse"; break;
779 case ST_REASSOC_REQUEST: return "ReassociationRequest"; break; 779 case ST_REASSOC_REQUEST: return "ReassociationRequest"; break;
780 case ST_REASSOC_RESPONSE: return "ReassociationResponse"; break; 780 case ST_REASSOC_RESPONSE: return "ReassociationResponse"; break;
781 case ST_PROBE_REQUEST: return "ProbeRequest"; break; 781 case ST_PROBE_REQUEST: return "ProbeRequest"; break;
782 case ST_PROBE_RESPONSE: return "ProbeResponse"; break; 782 case ST_PROBE_RESPONSE: return "ProbeResponse"; break;
783 case ST_BEACON: return "Beacon"; break; 783 case ST_BEACON: return "Beacon"; break;
784 case ST_ATIM: return "Atim"; break; 784 case ST_ATIM: return "Atim"; break;
785 case ST_DISASSOC: return "Disassociation"; break; 785 case ST_DISASSOC: return "Disassociation"; break;
786 case ST_AUTH: return "Authentication"; break; 786 case ST_AUTH: return "Authentication"; break;
787 case ST_DEAUTH: return "Deathentication"; break; 787 case ST_DEAUTH: return "Deathentication"; break;
788 default: owarn << "OWaveLanManagementPacket::managementType(): unhandled subtype " << FC_SUBTYPE( EXTRACT_LE_16BITS( &_header->fc ) ) << oendl; return "Unknown"; 788 default: owarn << "OWaveLanManagementPacket::managementType(): unhandled subtype " << FC_SUBTYPE( EXTRACT_LE_16BITS( &_header->fc ) ) << oendl; return "Unknown";
789 } 789 }
790} 790}
791 791
792 792
793int OWaveLanManagementPacket::beaconInterval() const 793int OWaveLanManagementPacket::beaconInterval() const
794{ 794{
795 return EXTRACT_LE_16BITS( &_body->beacon_interval ); 795 return EXTRACT_LE_16BITS( &_body->beacon_interval );
796} 796}
797 797
798 798
799int OWaveLanManagementPacket::capabilities() const 799int OWaveLanManagementPacket::capabilities() const
800{ 800{
801 return EXTRACT_LE_16BITS( &_body->capability_info ); 801 return EXTRACT_LE_16BITS( &_body->capability_info );
802} 802}
803 803
804 804
805bool OWaveLanManagementPacket::canESS() const 805bool OWaveLanManagementPacket::canESS() const
806{ 806{
807 return CAPABILITY_ESS( EXTRACT_LE_16BITS( &_body->capability_info ) ); 807 return CAPABILITY_ESS( EXTRACT_LE_16BITS( &_body->capability_info ) );
808} 808}
809 809
810 810
811bool OWaveLanManagementPacket::canIBSS() const 811bool OWaveLanManagementPacket::canIBSS() const
812{ 812{
813 return CAPABILITY_IBSS( EXTRACT_LE_16BITS( &_body->capability_info ) ); 813 return CAPABILITY_IBSS( EXTRACT_LE_16BITS( &_body->capability_info ) );
814} 814}
815 815
816 816
817bool OWaveLanManagementPacket::canCFP() const 817bool OWaveLanManagementPacket::canCFP() const
818{ 818{
819 return CAPABILITY_CFP( EXTRACT_LE_16BITS( &_body->capability_info ) ); 819 return CAPABILITY_CFP( EXTRACT_LE_16BITS( &_body->capability_info ) );
820} 820}
821 821
822 822
823bool OWaveLanManagementPacket::canCFP_REQ() const 823bool OWaveLanManagementPacket::canCFP_REQ() const
824{ 824{
825 return CAPABILITY_CFP_REQ( EXTRACT_LE_16BITS( &_body->capability_info ) ); 825 return CAPABILITY_CFP_REQ( EXTRACT_LE_16BITS( &_body->capability_info ) );
826} 826}
827 827
828 828
829bool OWaveLanManagementPacket::canPrivacy() const 829bool OWaveLanManagementPacket::canPrivacy() const
830{ 830{
831 return CAPABILITY_PRIVACY( EXTRACT_LE_16BITS( &_body->capability_info ) ); 831 return CAPABILITY_PRIVACY( EXTRACT_LE_16BITS( &_body->capability_info ) );
832} 832}
833 833
834 834
835/*====================================================================================== 835/*======================================================================================
836 * OWaveLanManagementSSID 836 * OWaveLanManagementSSID
837 *======================================================================================*/ 837 *======================================================================================*/
838 838
839OWaveLanManagementSSID::OWaveLanManagementSSID( const unsigned char* end, const struct ssid_t* data, QObject* parent ) 839OWaveLanManagementSSID::OWaveLanManagementSSID( const unsigned char* end, const struct ssid_t* data, QObject* parent )
840 :QObject( parent, "802.11 SSID" ), _data( data ) 840 :QObject( parent, "802.11 SSID" ), _data( data )
841{ 841{
842 odebug << "OWaveLanManagementSSID()" << oendl; 842 odebug << "OWaveLanManagementSSID()" << oendl;
843} 843}
844 844
845 845
846OWaveLanManagementSSID::~OWaveLanManagementSSID() 846OWaveLanManagementSSID::~OWaveLanManagementSSID()
847{ 847{
848} 848}
849 849
850 850
851QString OWaveLanManagementSSID::ID( bool decloak ) const 851QString OWaveLanManagementSSID::ID( bool decloak ) const
852{ 852{
853 int length = _data->length; 853 int length = _data->length;
854 if ( length > 32 ) length = 32; 854 if ( length > 32 ) length = 32;
855 char essid[length+1]; 855 char essid[length+1];
856 memcpy( &essid, &_data->ssid, length ); 856 memcpy( &essid, &_data->ssid, length );
857 essid[length] = 0x0; 857 essid[length] = 0x0;
858 if ( !decloak || length < 2 || essid[0] != '\0' ) return essid; 858 if ( !decloak || length < 2 || essid[0] != '\0' ) return essid;
859 odebug << "OWaveLanManagementSSID:ID(): SSID is cloaked - decloaking..." << oendl; 859 odebug << "OWaveLanManagementSSID:ID(): SSID is cloaked - decloaking..." << oendl;
860 860
861 QString decloakedID; 861 QString decloakedID;
862 for ( int i = 1; i < length; ++i ) 862 for ( int i = 1; i < length; ++i )
863 { 863 {
864 if ( essid[i] >= 32 && essid[i] <= 126 ) decloakedID.append( essid[i] ); 864 if ( essid[i] >= 32 && essid[i] <= 126 ) decloakedID.append( essid[i] );
865 else decloakedID.append( '.' ); 865 else decloakedID.append( '.' );
866 } 866 }
867 return decloakedID; 867 return decloakedID;
868} 868}
869 869
870 870
871/*====================================================================================== 871/*======================================================================================
872 * OWaveLanManagementRates 872 * OWaveLanManagementRates
873 *======================================================================================*/ 873 *======================================================================================*/
874 874
875OWaveLanManagementRates::OWaveLanManagementRates( const unsigned char* end, const struct rates_t* data, QObject* parent ) 875OWaveLanManagementRates::OWaveLanManagementRates( const unsigned char* end, const struct rates_t* data, QObject* parent )
876 :QObject( parent, "802.11 Rates" ), _data( data ) 876 :QObject( parent, "802.11 Rates" ), _data( data )
877{ 877{
878 odebug << "OWaveLanManagementRates()" << oendl; 878 odebug << "OWaveLanManagementRates()" << oendl;
879} 879}
880 880
881 881
882OWaveLanManagementRates::~OWaveLanManagementRates() 882OWaveLanManagementRates::~OWaveLanManagementRates()
883{ 883{
884} 884}
885 885
886/*====================================================================================== 886/*======================================================================================
887 * OWaveLanManagementCF 887 * OWaveLanManagementCF
888 *======================================================================================*/ 888 *======================================================================================*/
889 889
890OWaveLanManagementCF::OWaveLanManagementCF( const unsigned char* end, const struct cf_t* data, QObject* parent ) 890OWaveLanManagementCF::OWaveLanManagementCF( const unsigned char* end, const struct cf_t* data, QObject* parent )
891 :QObject( parent, "802.11 CF" ), _data( data ) 891 :QObject( parent, "802.11 CF" ), _data( data )
892{ 892{
893 odebug << "OWaveLanManagementCF()" << oendl; 893 odebug << "OWaveLanManagementCF()" << oendl;
894} 894}
895 895
896 896
897OWaveLanManagementCF::~OWaveLanManagementCF() 897OWaveLanManagementCF::~OWaveLanManagementCF()
898{ 898{
899} 899}
900 900
901/*====================================================================================== 901/*======================================================================================
902 * OWaveLanManagementFH 902 * OWaveLanManagementFH
903 *======================================================================================*/ 903 *======================================================================================*/
904 904
905OWaveLanManagementFH::OWaveLanManagementFH( const unsigned char* end, const struct fh_t* data, QObject* parent ) 905OWaveLanManagementFH::OWaveLanManagementFH( const unsigned char* end, const struct fh_t* data, QObject* parent )
906 :QObject( parent, "802.11 FH" ), _data( data ) 906 :QObject( parent, "802.11 FH" ), _data( data )
907{ 907{
908 odebug << "OWaveLanManagementFH()" << oendl; 908 odebug << "OWaveLanManagementFH()" << oendl;
909} 909}
910 910
911 911
912OWaveLanManagementFH::~OWaveLanManagementFH() 912OWaveLanManagementFH::~OWaveLanManagementFH()
913{ 913{
914} 914}
915 915
916/*====================================================================================== 916/*======================================================================================
917 * OWaveLanManagementDS 917 * OWaveLanManagementDS
918 *======================================================================================*/ 918 *======================================================================================*/
919 919
920OWaveLanManagementDS::OWaveLanManagementDS( const unsigned char* end, const struct ds_t* data, QObject* parent ) 920OWaveLanManagementDS::OWaveLanManagementDS( const unsigned char* end, const struct ds_t* data, QObject* parent )
921 :QObject( parent, "802.11 DS" ), _data( data ) 921 :QObject( parent, "802.11 DS" ), _data( data )
922{ 922{
923 odebug << "OWaveLanManagementDS()" << oendl; 923 odebug << "OWaveLanManagementDS()" << oendl;
924} 924}
925 925
926 926
927OWaveLanManagementDS::~OWaveLanManagementDS() 927OWaveLanManagementDS::~OWaveLanManagementDS()
928{ 928{
929} 929}
930 930
931 931
932int OWaveLanManagementDS::channel() const 932int OWaveLanManagementDS::channel() const
933{ 933{
934 return _data->channel; 934 return _data->channel;
935} 935}
936 936
937/*====================================================================================== 937/*======================================================================================
938 * OWaveLanManagementTim 938 * OWaveLanManagementTim
939 *======================================================================================*/ 939 *======================================================================================*/
940 940
941OWaveLanManagementTim::OWaveLanManagementTim( const unsigned char* end, const struct tim_t* data, QObject* parent ) 941OWaveLanManagementTim::OWaveLanManagementTim( const unsigned char* end, const struct tim_t* data, QObject* parent )
942 :QObject( parent, "802.11 Tim" ), _data( data ) 942 :QObject( parent, "802.11 Tim" ), _data( data )
943{ 943{
944 odebug << "OWaveLanManagementTim()" << oendl; 944 odebug << "OWaveLanManagementTim()" << oendl;
945} 945}
946 946
947 947
948OWaveLanManagementTim::~OWaveLanManagementTim() 948OWaveLanManagementTim::~OWaveLanManagementTim()
949{ 949{
950} 950}
951 951
952/*====================================================================================== 952/*======================================================================================
953 * OWaveLanManagementIBSS 953 * OWaveLanManagementIBSS
954 *======================================================================================*/ 954 *======================================================================================*/
955 955
956OWaveLanManagementIBSS::OWaveLanManagementIBSS( const unsigned char* end, const struct ibss_t* data, QObject* parent ) 956OWaveLanManagementIBSS::OWaveLanManagementIBSS( const unsigned char* end, const struct ibss_t* data, QObject* parent )
957 :QObject( parent, "802.11 IBSS" ), _data( data ) 957 :QObject( parent, "802.11 IBSS" ), _data( data )
958{ 958{
959 odebug << "OWaveLanManagementIBSS()" << oendl; 959 odebug << "OWaveLanManagementIBSS()" << oendl;
960} 960}
961 961
962 962
963OWaveLanManagementIBSS::~OWaveLanManagementIBSS() 963OWaveLanManagementIBSS::~OWaveLanManagementIBSS()
964{ 964{
965} 965}
966 966
967/*====================================================================================== 967/*======================================================================================
968 * OWaveLanManagementChallenge 968 * OWaveLanManagementChallenge
969 *======================================================================================*/ 969 *======================================================================================*/
970 970
971OWaveLanManagementChallenge::OWaveLanManagementChallenge( const unsigned char* end, const struct challenge_t* data, QObject* parent ) 971OWaveLanManagementChallenge::OWaveLanManagementChallenge( const unsigned char* end, const struct challenge_t* data, QObject* parent )
972 :QObject( parent, "802.11 Challenge" ), _data( data ) 972 :QObject( parent, "802.11 Challenge" ), _data( data )
973{ 973{
974 odebug << "OWaveLanManagementChallenge()" << oendl; 974 odebug << "OWaveLanManagementChallenge()" << oendl;
975} 975}
976 976
977 977
978OWaveLanManagementChallenge::~OWaveLanManagementChallenge() 978OWaveLanManagementChallenge::~OWaveLanManagementChallenge()
979{ 979{
980} 980}
981 981
982/*====================================================================================== 982/*======================================================================================
983 * OWaveLanDataPacket 983 * OWaveLanDataPacket
984 *======================================================================================*/ 984 *======================================================================================*/
985 985
986OWaveLanDataPacket::OWaveLanDataPacket( const unsigned char* end, const struct ieee_802_11_data_header* data, OWaveLanPacket* parent ) 986OWaveLanDataPacket::OWaveLanDataPacket( const unsigned char* end, const struct ieee_802_11_data_header* data, OWaveLanPacket* parent )
987 :QObject( parent, "802.11 Data" ), _header( data ) 987 :QObject( parent, "802.11 Data" ), _header( data )
988{ 988{
989 odebug << "OWaveLanDataPacket::OWaveLanDataPacket(): decoding frame..." << oendl; 989 odebug << "OWaveLanDataPacket::OWaveLanDataPacket(): decoding frame..." << oendl;
990 990
991 const unsigned char* payload = (const unsigned char*) data + sizeof( struct ieee_802_11_data_header ); 991 const unsigned char* payload = (const unsigned char*) data + sizeof( struct ieee_802_11_data_header );
992 992
993 #warning The next line works for most cases, but can not be correct generally! 993 #warning The next line works for most cases, but can not be correct generally!
994 if (!( ( (OWaveLanPacket*) this->parent())->duration() )) payload -= 6; // compensation for missing last address 994 if (!( ( (OWaveLanPacket*) this->parent())->duration() )) payload -= 6; // compensation for missing last address
995 995
996 new OLLCPacket( end, (const struct ieee_802_11_802_2_header*) payload, this ); 996 new OLLCPacket( end, (const struct ieee_802_11_802_2_header*) payload, this );
997} 997}
998 998
999 999
1000OWaveLanDataPacket::~OWaveLanDataPacket() 1000OWaveLanDataPacket::~OWaveLanDataPacket()
1001{ 1001{
1002} 1002}
1003 1003
1004 1004
1005/*====================================================================================== 1005/*======================================================================================
1006 * OLLCPacket 1006 * OLLCPacket
1007 *======================================================================================*/ 1007 *======================================================================================*/
1008 1008
1009OLLCPacket::OLLCPacket( const unsigned char* end, const struct ieee_802_11_802_2_header* data, QObject* parent ) 1009OLLCPacket::OLLCPacket( const unsigned char* end, const struct ieee_802_11_802_2_header* data, QObject* parent )
1010 :QObject( parent, "802.11 LLC" ), _header( data ) 1010 :QObject( parent, "802.11 LLC" ), _header( data )
1011{ 1011{
1012 odebug << "OLLCPacket::OLLCPacket(): decoding frame..." << oendl; 1012 odebug << "OLLCPacket::OLLCPacket(): decoding frame..." << oendl;
1013 1013
1014 if ( !(_header->oui[0] || _header->oui[1] || _header->oui[2]) ) 1014 if ( !(_header->oui[0] || _header->oui[1] || _header->oui[2]) )
1015 { 1015 {
1016 owarn << "OLLCPacket::OLLCPacket(): contains an encapsulated Ethernet frame (type = " << EXTRACT_16BITS( &_header->type ) << ")" << oendl; 1016 owarn << "OLLCPacket::OLLCPacket(): contains an encapsulated Ethernet frame (type = " << EXTRACT_16BITS( &_header->type ) << ")" << oendl;
1017 1017
1018 switch ( EXTRACT_16BITS( &_header->type ) ) // defined in linux/if_ether.h 1018 switch ( EXTRACT_16BITS( &_header->type ) ) // defined in linux/if_ether.h
1019 { 1019 {
1020 case ETH_P_IP: new OIPPacket( end, (const struct iphdr*) (data+1), this ); break; 1020 case ETH_P_IP: new OIPPacket( end, (const struct iphdr*) (data+1), this ); break;
1021 case ETH_P_ARP: new OARPPacket( end, (const struct myarphdr*) (data+1), this ); break; 1021 case ETH_P_ARP: new OARPPacket( end, (const struct myarphdr*) (data+1), this ); break;
1022 default: owarn << "OLLCPacket::OLLCPacket(): Unknown Encapsulation type = " << EXTRACT_16BITS( &_header->type ) << oendl; 1022 default: owarn << "OLLCPacket::OLLCPacket(): Unknown Encapsulation type = " << EXTRACT_16BITS( &_header->type ) << oendl;
1023 } 1023 }
1024 } 1024 }
1025} 1025}
1026 1026
1027 1027
1028OLLCPacket::~OLLCPacket() 1028OLLCPacket::~OLLCPacket()
1029{ 1029{
1030} 1030}
1031 1031
1032 1032
1033/*====================================================================================== 1033/*======================================================================================
1034 * OWaveLanControlPacket 1034 * OWaveLanControlPacket
1035 *======================================================================================*/ 1035 *======================================================================================*/
1036 1036
1037OWaveLanControlPacket::OWaveLanControlPacket( const unsigned char* end, const struct ieee_802_11_control_header* data, OWaveLanPacket* parent ) 1037OWaveLanControlPacket::OWaveLanControlPacket( const unsigned char* end, const struct ieee_802_11_control_header* data, OWaveLanPacket* parent )
1038 :QObject( parent, "802.11 Control" ), _header( data ) 1038 :QObject( parent, "802.11 Control" ), _header( data )
1039{ 1039{
1040 odebug << "OWaveLanControlPacket::OWaveLanDataControl(): decoding frame..." << oendl; 1040 odebug << "OWaveLanControlPacket::OWaveLanDataControl(): decoding frame..." << oendl;
1041 odebug << "Detected subtype is " << controlType() << oendl; 1041 odebug << "Detected subtype is " << controlType() << oendl;
1042} 1042}
1043 1043
1044 1044
1045OWaveLanControlPacket::~OWaveLanControlPacket() 1045OWaveLanControlPacket::~OWaveLanControlPacket()
1046{ 1046{
1047} 1047}
1048 1048
1049 1049
1050QString OWaveLanControlPacket::controlType() const 1050QString OWaveLanControlPacket::controlType() const
1051{ 1051{
1052 switch ( FC_SUBTYPE( EXTRACT_LE_16BITS( &_header->fc ) ) ) 1052 switch ( FC_SUBTYPE( EXTRACT_LE_16BITS( &_header->fc ) ) )
1053 { 1053 {
1054 case CTRL_PS_POLL: return "PowerSavePoll"; break; 1054 case CTRL_PS_POLL: return "PowerSavePoll"; break;
1055 case CTRL_RTS: return "RequestToSend"; break; 1055 case CTRL_RTS: return "RequestToSend"; break;
1056 case CTRL_CTS: return "ClearToSend"; break; 1056 case CTRL_CTS: return "ClearToSend"; break;
1057 case CTRL_ACK: return "Acknowledge"; break; 1057 case CTRL_ACK: return "Acknowledge"; break;
1058 case CTRL_CF_END: return "ContentionFreeEnd"; break; 1058 case CTRL_CF_END: return "ContentionFreeEnd"; break;
1059 case CTRL_END_ACK: return "AcknowledgeEnd"; break; 1059 case CTRL_END_ACK: return "AcknowledgeEnd"; break;
1060 default: 1060 default:
1061 owarn << "OWaveLanControlPacket::managementType(): unhandled subtype " << FC_SUBTYPE( EXTRACT_LE_16BITS( &_header->fc ) ) << oendl; 1061 owarn << "OWaveLanControlPacket::managementType(): unhandled subtype " << FC_SUBTYPE( EXTRACT_LE_16BITS( &_header->fc ) ) << oendl;
1062 return "Unknown"; 1062 return "Unknown";
1063 } 1063 }
1064} 1064}
1065 1065
1066 1066
1067/*====================================================================================== 1067/*======================================================================================
1068 * OPacketCapturer 1068 * OPacketCapturer
1069 *======================================================================================*/ 1069 *======================================================================================*/
1070 1070
1071OPacketCapturer::OPacketCapturer( QObject* parent, const char* name ) 1071OPacketCapturer::OPacketCapturer( QObject* parent, const char* name )
1072 :QObject( parent, name ), _name( QString::null ), _open( false ), _pch( 0 ), _pcd( 0 ), _sn( 0 ), _autodelete( true ) 1072 :QObject( parent, name ), _name( QString::null ), _open( false ), _pch( 0 ), _pcd( 0 ), _sn( 0 ), _autodelete( true )
1073{ 1073{
1074} 1074}
1075 1075
1076 1076
1077OPacketCapturer::~OPacketCapturer() 1077OPacketCapturer::~OPacketCapturer()
1078{ 1078{
1079 if ( _open ) 1079 if ( _open )
1080 { 1080 {
1081 odebug << "OPacketCapturer::~OPacketCapturer(): pcap still open, autoclosing." << oendl; 1081 odebug << "OPacketCapturer::~OPacketCapturer(): pcap still open, autoclosing." << oendl;
1082 close(); 1082 close();
1083 } 1083 }
1084} 1084}
1085 1085
1086 1086
1087void OPacketCapturer::setAutoDelete( bool b ) 1087void OPacketCapturer::setAutoDelete( bool b )
1088{ 1088{
1089 _autodelete = b; 1089 _autodelete = b;
1090} 1090}
1091 1091
1092 1092
1093bool OPacketCapturer::autoDelete() const 1093bool OPacketCapturer::autoDelete() const
1094{ 1094{
1095 return _autodelete; 1095 return _autodelete;
1096} 1096}
1097 1097
1098 1098
1099void OPacketCapturer::setBlocking( bool b ) 1099void OPacketCapturer::setBlocking( bool b )
1100{ 1100{
1101 if ( pcap_setnonblock( _pch, 1-b, _errbuf ) != -1 ) 1101 if ( pcap_setnonblock( _pch, 1-b, _errbuf ) != -1 )
1102 { 1102 {
1103 odebug << "OPacketCapturer::setBlocking(): blocking mode changed successfully." << oendl; 1103 odebug << "OPacketCapturer::setBlocking(): blocking mode changed successfully." << oendl;
1104 } 1104 }
1105 else 1105 else
1106 { 1106 {
1107 odebug << "OPacketCapturer::setBlocking(): can't change blocking mode: " << _errbuf << oendl; 1107 odebug << "OPacketCapturer::setBlocking(): can't change blocking mode: " << _errbuf << oendl;
1108 } 1108 }
1109} 1109}
1110 1110
1111 1111
1112bool OPacketCapturer::blocking() const 1112bool OPacketCapturer::blocking() const
1113{ 1113{
1114 int b = pcap_getnonblock( _pch, _errbuf ); 1114 int b = pcap_getnonblock( _pch, _errbuf );
1115 if ( b == -1 ) 1115 if ( b == -1 )
1116 { 1116 {
1117 odebug << "OPacketCapturer::blocking(): can't get blocking mode: " << _errbuf << oendl; 1117 odebug << "OPacketCapturer::blocking(): can't get blocking mode: " << _errbuf << oendl;
1118 return -1; 1118 return -1;
1119 } 1119 }
1120 return !b; 1120 return !b;
1121} 1121}
1122 1122
1123 1123
1124void OPacketCapturer::closeDumpFile() 1124void OPacketCapturer::closeDumpFile()
1125{ 1125{
1126 if ( _pcd ) 1126 if ( _pcd )
1127 { 1127 {
1128 pcap_dump_close( _pcd ); 1128 pcap_dump_close( _pcd );
1129 _pcd = 0; 1129 _pcd = 0;
1130 } 1130 }
1131 pcap_close( _pch ); 1131 pcap_close( _pch );
1132} 1132}
1133 1133
1134 1134
1135void OPacketCapturer::close() 1135void OPacketCapturer::close()
1136{ 1136{
1137 if ( _open ) 1137 if ( _open )
1138 { 1138 {
1139 if ( _sn ) 1139 if ( _sn )
1140 { 1140 {
1141 _sn->disconnect( SIGNAL( activated(int) ), this, SLOT( readyToReceive() ) ); 1141 _sn->disconnect( SIGNAL( activated(int) ), this, SLOT( readyToReceive() ) );
1142 delete _sn; 1142 delete _sn;
1143 } 1143 }
1144 closeDumpFile(); 1144 closeDumpFile();
1145 _open = false; 1145 _open = false;
1146 } 1146 }
1147 1147
1148 odebug << "OPacketCapturer::close() --- dumping capturing statistics..." << oendl; 1148 odebug << "OPacketCapturer::close() --- dumping capturing statistics..." << oendl;
1149 odebug << "--------------------------------------------------" << oendl; 1149 odebug << "--------------------------------------------------" << oendl;
1150 for( QMap<QString,int>::Iterator it = _stats.begin(); it != _stats.end(); ++it ) 1150 for( QMap<QString,int>::Iterator it = _stats.begin(); it != _stats.end(); ++it )
1151 odebug << it.key() << " = " << it.data() << oendl; 1151 odebug << it.key() << " = " << it.data() << oendl;
1152 odebug << "--------------------------------------------------" << oendl; 1152 odebug << "--------------------------------------------------" << oendl;
1153 1153
1154} 1154}
1155 1155
1156 1156
1157int OPacketCapturer::dataLink() const 1157int OPacketCapturer::dataLink() const
1158{ 1158{
1159 return pcap_datalink( _pch ); 1159 return pcap_datalink( _pch );
1160} 1160}
1161 1161
1162 1162
1163void OPacketCapturer::dump( OPacket* p ) 1163void OPacketCapturer::dump( OPacket* p )
1164{ 1164{
1165 if ( !_pcd ) 1165 if ( !_pcd )
1166 { 1166 {
1167 owarn << "OPacketCapturer::dump() - cannot dump without open capture file!" << oendl; 1167 owarn << "OPacketCapturer::dump() - cannot dump without open capture file!" << oendl;
1168 return; 1168 return;
1169 } 1169 }
1170 pcap_dump( (u_char*) _pcd, &p->_hdr, p->_data ); 1170 pcap_dump( (u_char*) _pcd, &p->_hdr, p->_data );
1171} 1171}
1172 1172
1173 1173
1174int OPacketCapturer::fileno() const 1174int OPacketCapturer::fileno() const
1175{ 1175{
1176 if ( _open ) 1176 if ( _open )
1177 { 1177 {
1178 return pcap_fileno( _pch ); 1178 return pcap_fileno( _pch );
1179 } 1179 }
1180 else 1180 else
1181 { 1181 {
1182 return -1; 1182 return -1;
1183 } 1183 }
1184} 1184}
1185 1185
1186 1186
1187OPacket* OPacketCapturer::next( int time ) 1187OPacket* OPacketCapturer::next( int time )
1188{ 1188{
1189 fd_set fds; 1189 fd_set fds;
1190 struct timeval tv; 1190 struct timeval tv;
1191 FD_ZERO( &fds ); 1191 FD_ZERO( &fds );
1192 FD_SET( pcap_fileno( _pch ), &fds ); 1192 FD_SET( pcap_fileno( _pch ), &fds );
1193 tv.tv_sec = time / 1000; 1193 tv.tv_sec = time / 1000;
1194 tv.tv_usec = time % 1000; 1194 tv.tv_usec = time % 1000;
1195 int retval = select( pcap_fileno( _pch )+1, &fds, NULL, NULL, &tv); 1195 int retval = select( pcap_fileno( _pch )+1, &fds, NULL, NULL, &tv);
1196 if ( retval > 0 ) // clear to read! 1196 if ( retval > 0 ) // clear to read!
1197 return next(); 1197 return next();
1198 else 1198 else
1199 return 0; 1199 return 0;
1200} 1200}
1201 1201
1202 1202
1203OPacket* OPacketCapturer::next() 1203OPacket* OPacketCapturer::next()
1204{ 1204{
1205 packetheaderstruct header; 1205 packetheaderstruct header;
1206 odebug << "==> OPacketCapturer::next()" << oendl; 1206 odebug << "==> OPacketCapturer::next()" << oendl;
1207 const unsigned char* pdata = pcap_next( _pch, &header ); 1207 const unsigned char* pdata = pcap_next( _pch, &header );
1208 odebug << "<== OPacketCapturer::next()" << oendl; 1208 odebug << "<== OPacketCapturer::next()" << oendl;
1209 1209
1210 if ( pdata && header.len ) 1210 if ( pdata && header.len )
1211 { 1211 {
1212 OPacket* p = new OPacket( dataLink(), header, pdata, 0 ); 1212 OPacket* p = new OPacket( dataLink(), header, pdata, 0 );
1213 // packets shouldn't be inserted in the QObject child-parent hierarchy, 1213 // packets shouldn't be inserted in the QObject child-parent hierarchy,
1214 // because due to memory constraints they will be deleted as soon 1214 // because due to memory constraints they will be deleted as soon
1215 // as possible - that is right after they have been processed 1215 // as possible - that is right after they have been processed
1216 // by emit() [ see below ] 1216 // by emit() [ see below ]
1217 //TODO: make gathering statistics optional, because it takes time 1217 //TODO: make gathering statistics optional, because it takes time
1218 p->updateStats( _stats, const_cast<QObjectList*>( p->children() ) ); 1218 p->updateStats( _stats, const_cast<QObjectList*>( p->children() ) );
1219 odebug << "OPacket::dumpStructure: " << p->dumpStructure() << oendl; 1219 odebug << "OPacket::dumpStructure: " << p->dumpStructure() << oendl;
1220 return p; 1220 return p;
1221 } 1221 }
1222 else 1222 else
1223 { 1223 {
1224 owarn << "OPacketCapturer::next() - no packet received!" << oendl; 1224 owarn << "OPacketCapturer::next() - no packet received!" << oendl;
1225 return 0; 1225 return 0;
1226 } 1226 }
1227} 1227}
1228 1228
1229 1229
1230bool OPacketCapturer::open( const QString& name ) 1230bool OPacketCapturer::open( const QString& name )
1231{ 1231{
1232 if ( _open ) 1232 if ( _open )
1233 { 1233 {
1234 if ( name == _name ) // ignore opening an already openend device 1234 if ( name == _name ) // ignore opening an already openend device
1235 { 1235 {
1236 return true; 1236 return true;
1237 } 1237 }
1238 else // close the last opened device 1238 else // close the last opened device
1239 { 1239 {
1240 close(); 1240 close();
1241 } 1241 }
1242 } 1242 }
1243 1243
1244 _name = name; 1244 _name = name;
1245 1245
1246 // open libpcap 1246 // open libpcap
1247 pcap_t* handle = pcap_open_live( const_cast<char*>( (const char*) name ), 1024, 0, 0, &_errbuf[0] ); 1247 pcap_t* handle = pcap_open_live( const_cast<char*>( (const char*) name ), 1024, 0, 0, &_errbuf[0] );
1248 1248
1249 if ( !handle ) 1249 if ( !handle )
1250 { 1250 {
1251 owarn << "OPacketCapturer::open(): can't open libpcap with '" << name << "': " << _errbuf << oendl; 1251 owarn << "OPacketCapturer::open(): can't open libpcap with '" << name << "': " << _errbuf << oendl;
1252 return false; 1252 return false;
1253 } 1253 }
1254 1254
1255 odebug << "OPacketCapturer::open(): libpcap [" << name << "] opened successfully." << oendl; 1255 odebug << "OPacketCapturer::open(): libpcap [" << name << "] opened successfully." << oendl;
1256 _pch = handle; 1256 _pch = handle;
1257 _open = true; 1257 _open = true;
1258 _stats.clear(); 1258 _stats.clear();
1259 1259
1260 // in case we have an application object, create a socket notifier 1260 // in case we have an application object, create a socket notifier
1261 if ( qApp ) //TODO: I don't like this here... 1261 if ( qApp ) //TODO: I don't like this here...
1262 { 1262 {
1263 _sn = new QSocketNotifier( fileno(), QSocketNotifier::Read ); 1263 _sn = new QSocketNotifier( fileno(), QSocketNotifier::Read );
1264 connect( _sn, SIGNAL( activated(int) ), this, SLOT( readyToReceive() ) ); 1264 connect( _sn, SIGNAL( activated(int) ), this, SLOT( readyToReceive() ) );
1265 } 1265 }
1266 1266
1267 return true; 1267 return true;
1268} 1268}
1269 1269
1270 1270
1271bool OPacketCapturer::openDumpFile( const QString& filename ) 1271bool OPacketCapturer::openDumpFile( const QString& filename )
1272{ 1272{
1273 pcap_dumper_t* dump = pcap_dump_open( _pch, const_cast<char*>( (const char*) filename ) ); 1273 pcap_dumper_t* dump = pcap_dump_open( _pch, const_cast<char*>( (const char*) filename ) );
1274 if ( !dump ) 1274 if ( !dump )
1275 { 1275 {
1276 owarn << "OPacketCapturer::open(): can't open dump with '" << filename << "': " << _errbuf << oendl; 1276 owarn << "OPacketCapturer::open(): can't open dump with '" << filename << "': " << _errbuf << oendl;
1277 return false; 1277 return false;
1278 } 1278 }
1279 odebug << "OPacketCapturer::open(): dump [" << filename << "] opened successfully." << oendl; 1279 odebug << "OPacketCapturer::open(): dump [" << filename << "] opened successfully." << oendl;
1280 _pcd = dump; 1280 _pcd = dump;
1281 1281
1282 return true; 1282 return true;
1283} 1283}
1284 1284
1285 1285
1286bool OPacketCapturer::open( const QFile& file ) 1286bool OPacketCapturer::openCaptureFile( const QString& name )
1287{ 1287{
1288 QString name = file.name();
1289
1290 if ( _open ) 1288 if ( _open )
1291 { 1289 {
1292 close(); 1290 close();
1293 if ( name == _name ) // ignore opening an already openend device 1291 if ( name == _name ) // ignore opening an already openend device
1294 { 1292 {
1295 return true; 1293 return true;
1296 } 1294 }
1297 else // close the last opened device 1295 else // close the last opened device
1298 { 1296 {
1299 close(); 1297 close();
1300 } 1298 }
1301 } 1299 }
1302 1300
1303 _name = name; 1301 _name = name;
1304 1302
1305 pcap_t* handle = pcap_open_offline( const_cast<char*>( (const char*) name ), &_errbuf[0] ); 1303 pcap_t* handle = pcap_open_offline( const_cast<char*>( (const char*) name ), &_errbuf[0] );
1306 1304
1307 if ( handle ) 1305 if ( handle )
1308 { 1306 {
1309 odebug << "OPacketCapturer::open(): libpcap opened successfully." << oendl; 1307 odebug << "OPacketCapturer::open(): libpcap opened successfully." << oendl;
1310 _pch = handle; 1308 _pch = handle;
1311 _open = true; 1309 _open = true;
1312 1310
1313 // in case we have an application object, create a socket notifier 1311 // in case we have an application object, create a socket notifier
1314 if ( qApp ) 1312 if ( qApp )
1315 { 1313 {
1316 _sn = new QSocketNotifier( fileno(), QSocketNotifier::Read ); 1314 _sn = new QSocketNotifier( fileno(), QSocketNotifier::Read );
1317 connect( _sn, SIGNAL( activated(int) ), this, SLOT( readyToReceive() ) ); 1315 connect( _sn, SIGNAL( activated(int) ), this, SLOT( readyToReceive() ) );
1318 } 1316 }
1319 1317
1320 return true; 1318 return true;
1321 } 1319 }
1322 else 1320 else
1323 { 1321 {
1324 odebug << "OPacketCapturer::open(): can't open libpcap with '" << name << "': " << _errbuf << oendl; 1322 odebug << "OPacketCapturer::open(): can't open libpcap with '" << name << "': " << _errbuf << oendl;
1325 return false; 1323 return false;
1326 } 1324 }
1327 1325
1328} 1326}
1329 1327
1330 1328
1331bool OPacketCapturer::isOpen() const 1329bool OPacketCapturer::isOpen() const
1332{ 1330{
1333 return _open; 1331 return _open;
1334} 1332}
1335 1333
1336 1334
1337void OPacketCapturer::readyToReceive() 1335void OPacketCapturer::readyToReceive()
1338{ 1336{
1339 odebug << "OPacketCapturer::readyToReceive(): about to emit 'receivePacket(p)'" << oendl; 1337 odebug << "OPacketCapturer::readyToReceive(): about to emit 'receivePacket(p)'" << oendl;
1340 OPacket* p = next(); 1338 OPacket* p = next();
1341 emit receivedPacket( p ); 1339 emit receivedPacket( p );
1342 // emit is synchronous - packet has been dealt with, now it's safe to delete (if enabled) 1340 // emit is synchronous - packet has been dealt with, now it's safe to delete (if enabled)
1343 if ( _autodelete ) delete p; 1341 if ( _autodelete ) delete p;
1344} 1342}
1345 1343
1346 1344
1347const QMap<QString,int>& OPacketCapturer::statistics() const 1345const QMap<QString,int>& OPacketCapturer::statistics() const
1348{ 1346{
1349 return _stats; 1347 return _stats;
1350} 1348}
1351 1349
1352 1350
1353int OPacketCapturer::snapShot() const 1351int OPacketCapturer::snapShot() const
1354{ 1352{
1355 return pcap_snapshot( _pch ); 1353 return pcap_snapshot( _pch );
1356} 1354}
1357 1355
1358 1356
1359bool OPacketCapturer::swapped() const 1357bool OPacketCapturer::swapped() const
1360{ 1358{
1361 return pcap_is_swapped( _pch ); 1359 return pcap_is_swapped( _pch );
1362} 1360}
1363 1361
1364 1362
1365QString OPacketCapturer::version() const 1363QString OPacketCapturer::version() const
1366{ 1364{
1367 return QString().sprintf( "%d.%d", pcap_major_version( _pch ), pcap_minor_version( _pch ) ); 1365 return QString().sprintf( "%d.%d", pcap_major_version( _pch ), pcap_minor_version( _pch ) );
1368} 1366}
1369 1367
1370} 1368}
1371} 1369}
diff --git a/libopie2/opienet/opcap.h b/libopie2/opienet/opcap.h
index 2dbe030..9e718d5 100644
--- a/libopie2/opienet/opcap.h
+++ b/libopie2/opienet/opcap.h
@@ -1,733 +1,733 @@
1/* 1/*
2                 This file is part of the Opie Project 2                 This file is part of the Opie Project
3              Copyright (C) 2003 by Michael 'Mickey' Lauer <mickey@Vanille.de> 3              Copyright (C) 2003 by Michael 'Mickey' Lauer <mickey@Vanille.de>
4 =. 4 =.
5 .=l. 5 .=l.
6           .>+-= 6           .>+-=
7 _;:,     .>    :=|. This program is free software; you can 7 _;:,     .>    :=|. This program is free software; you can
8.> <`_,   >  .   <= redistribute it and/or modify it under 8.> <`_,   >  .   <= redistribute it and/or modify it under
9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
10.="- .-=="i,     .._ License as published by the Free Software 10.="- .-=="i,     .._ License as published by the Free Software
11 - .   .-<_>     .<> Foundation; either version 2 of the License, 11 - .   .-<_>     .<> Foundation; either version 2 of the License,
12     ._= =}       : or (at your option) any later version. 12     ._= =}       : or (at your option) any later version.
13    .%`+i>       _;_. 13    .%`+i>       _;_.
14    .i_,=:_.      -<s. This program is distributed in the hope that 14    .i_,=:_.      -<s. This program is distributed in the hope that
15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
16    : ..    .:,     . . . without even the implied warranty of 16    : ..    .:,     . . . without even the implied warranty of
17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
19..}^=.=       =       ; Library General Public License for more 19..}^=.=       =       ; Library General Public License for more
20++=   -.     .`     .: details. 20++=   -.     .`     .: details.
21 :     =  ...= . :.=- 21 :     =  ...= . :.=-
22 -.   .:....=;==+<; You should have received a copy of the GNU 22 -.   .:....=;==+<; You should have received a copy of the GNU
23  -_. . .   )=.  = Library General Public License along with 23  -_. . .   )=.  = Library General Public License along with
24    --        :-=` this library; see the file COPYING.LIB. 24    --        :-=` this library; see the file COPYING.LIB.
25 If not, write to the Free Software Foundation, 25 If not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, 26 Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. 27 Boston, MA 02111-1307, USA.
28 28
29*/ 29*/
30 30
31#ifndef OPCAP_H 31#ifndef OPCAP_H
32#define OPCAP_H 32#define OPCAP_H
33 33
34/* OPIE */ 34/* OPIE */
35#include <opie2/onetutils.h> 35#include <opie2/onetutils.h>
36 36
37/* QT */ 37/* QT */
38#include <qevent.h> 38#include <qevent.h>
39#include <qfile.h> 39#include <qfile.h>
40#include <qhostaddress.h> 40#include <qhostaddress.h>
41#include <qobject.h> 41#include <qobject.h>
42#include <qstring.h> 42#include <qstring.h>
43#include <qtextstream.h> 43#include <qtextstream.h>
44#include <qmap.h> 44#include <qmap.h>
45 45
46/* STD */ 46/* STD */
47extern "C" // work around a bpf/pcap conflict in recent headers 47extern "C" // work around a bpf/pcap conflict in recent headers
48{ 48{
49 #include <pcap.h> 49 #include <pcap.h>
50} 50}
51#include <netinet/ether.h> 51#include <netinet/ether.h>
52#include <netinet/ip.h> 52#include <netinet/ip.h>
53#include <netinet/udp.h> 53#include <netinet/udp.h>
54#include <netinet/tcp.h> 54#include <netinet/tcp.h>
55#include <time.h> 55#include <time.h>
56 56
57/* Custom Network Includes (must go here, don't reorder!) */ 57/* Custom Network Includes (must go here, don't reorder!) */
58#include "802_11_user.h" 58#include "802_11_user.h"
59#include "dhcp.h" 59#include "dhcp.h"
60 60
61 61
62/* TYPEDEFS */ 62/* TYPEDEFS */
63typedef struct timeval timevalstruct; 63typedef struct timeval timevalstruct;
64typedef struct pcap_pkthdr packetheaderstruct; 64typedef struct pcap_pkthdr packetheaderstruct;
65 65
66/* FORWARDS */ 66/* FORWARDS */
67class QSocketNotifier; 67class QSocketNotifier;
68namespace Opie { 68namespace Opie {
69namespace Net { 69namespace Net {
70class OPacketCapturer; 70class OPacketCapturer;
71 71
72/*====================================================================================== 72/*======================================================================================
73 * OPacket - A frame on the wire 73 * OPacket - A frame on the wire
74 *======================================================================================*/ 74 *======================================================================================*/
75 75
76/** @brief A class representing a data frame on the wire. 76/** @brief A class representing a data frame on the wire.
77 * 77 *
78 * The whole family of the packet classes are used when capturing frames from a network. 78 * The whole family of the packet classes are used when capturing frames from a network.
79 * Most standard network protocols in use share a common architecture, which mostly is 79 * Most standard network protocols in use share a common architecture, which mostly is
80 * a packet header and then the packet payload. In layered architectures, each lower layer 80 * a packet header and then the packet payload. In layered architectures, each lower layer
81 * encapsulates data from its upper layer - that is it 81 * encapsulates data from its upper layer - that is it
82 * treats the data from its upper layer as payload and prepends an own header to the packet, 82 * treats the data from its upper layer as payload and prepends an own header to the packet,
83 * which - again - is treated as the payload for the layer below. The figure below is an 83 * which - again - is treated as the payload for the layer below. The figure below is an
84 * example for how such a data frame is composed out of packets, e.g. when sending a mail. 84 * example for how such a data frame is composed out of packets, e.g. when sending a mail.
85 * 85 *
86 * <pre> 86 * <pre>
87 * | User Data | == Mail Data 87 * | User Data | == Mail Data
88 * | SMTP Header | User Data | == SMTP 88 * | SMTP Header | User Data | == SMTP
89 * | TCP Header | SMTP Header | User Data | == TCP 89 * | TCP Header | SMTP Header | User Data | == TCP
90 * | IP Header | TCP Header | SMTP Header | User Data | == IP 90 * | IP Header | TCP Header | SMTP Header | User Data | == IP
91 * | MAC Header | IP Header | TCP Header | SMTP Header | User Data | == MAC 91 * | MAC Header | IP Header | TCP Header | SMTP Header | User Data | == MAC
92 * 92 *
93 * </pre> 93 * </pre>
94 * 94 *
95 * The example is trimmed for simplicity, because the MAC (Medium Access Control) layer 95 * The example is trimmed for simplicity, because the MAC (Medium Access Control) layer
96 * also contains a few more levels of encapsulation. 96 * also contains a few more levels of encapsulation.
97 * Since the type of the payload is more or less independent from the encapsulating protocol, 97 * Since the type of the payload is more or less independent from the encapsulating protocol,
98 * the header must be inspected before attempting to decode the payload. Hence, the 98 * the header must be inspected before attempting to decode the payload. Hence, the
99 * encapsulation level varies and can't be deduced without actually looking into the packets. 99 * encapsulation level varies and can't be deduced without actually looking into the packets.
100 * 100 *
101 * For actually working with captured frames, it's useful to identify the packets via names and 101 * For actually working with captured frames, it's useful to identify the packets via names and
102 * insert them into a parent/child - relationship based on the encapsulation. This is why 102 * insert them into a parent/child - relationship based on the encapsulation. This is why
103 * all packet classes derive from QObject. The amount of overhead caused by the QObject is 103 * all packet classes derive from QObject. The amount of overhead caused by the QObject is
104 * not a problem in this case, because we're talking about a theoratical maximum of about 104 * not a problem in this case, because we're talking about a theoratical maximum of about
105 * 10 packets per captured frame. We need to stuff them into a searchable list anyway and the 105 * 10 packets per captured frame. We need to stuff them into a searchable list anyway and the
106 * QObject also cares about destroying the sub-, (child-) packets. 106 * QObject also cares about destroying the sub-, (child-) packets.
107 * 107 *
108 * This enables us to perform a simple look for packets of a certain type: 108 * This enables us to perform a simple look for packets of a certain type:
109 * @code 109 * @code
110 * OPacketCapturer* pcap = new OPacketCapturer(); 110 * OPacketCapturer* pcap = new OPacketCapturer();
111 * pcap->open( "eth0" ); 111 * pcap->open( "eth0" );
112 * OPacket* p = pcap->next(); 112 * OPacket* p = pcap->next();
113 * OIPPacket* ip = (OIPPacket*) p->child( "IP" ); // returns 0, if no such child exists 113 * OIPPacket* ip = (OIPPacket*) p->child( "IP" ); // returns 0, if no such child exists
114 * odebug << "got ip packet from " << ip->fromIPAddress().toString() << " to " << ip->toIPAddress().toString() << oendl; 114 * odebug << "got ip packet from " << ip->fromIPAddress().toString() << " to " << ip->toIPAddress().toString() << oendl;
115 * 115 *
116 */ 116 */
117 117
118class OPacket : public QObject 118class OPacket : public QObject
119{ 119{
120 Q_OBJECT 120 Q_OBJECT
121 121
122 friend class OPacketCapturer; 122 friend class OPacketCapturer;
123 friend QTextStream& operator<<( QTextStream& s, const OPacket& p ); 123 friend QTextStream& operator<<( QTextStream& s, const OPacket& p );
124 124
125 public: 125 public:
126 OPacket( int datalink, packetheaderstruct, const unsigned char*, QObject* parent ); 126 OPacket( int datalink, packetheaderstruct, const unsigned char*, QObject* parent );
127 virtual ~OPacket(); 127 virtual ~OPacket();
128 128
129 timevalstruct timeval() const; 129 timevalstruct timeval() const;
130 130
131 int caplen() const; 131 int caplen() const;
132 int len() const; 132 int len() const;
133 QString dump( int = 32 ) const; //FIXME: remove that 133 QString dump( int = 32 ) const; //FIXME: remove that
134 134
135 void updateStats( QMap<QString,int>&, QObjectList* ); //FIXME: Revise 135 void updateStats( QMap<QString,int>&, QObjectList* ); //FIXME: Revise
136 136
137 QString dumpStructure() const; //FIXME: Revise 137 QString dumpStructure() const; //FIXME: Revise
138 private: 138 private:
139 QString _dumpStructure( QObjectList* ) const; //FIXME: Revise 139 QString _dumpStructure( QObjectList* ) const; //FIXME: Revise
140 140
141 private: 141 private:
142 const packetheaderstruct _hdr; // pcap packet header 142 const packetheaderstruct _hdr; // pcap packet header
143 const unsigned char* _data; // pcap packet data 143 const unsigned char* _data; // pcap packet data
144 const unsigned char* _end; // end of pcap packet data 144 const unsigned char* _end; // end of pcap packet data
145 private: 145 private:
146 class Private; 146 class Private;
147 Private *d; 147 Private *d;
148}; 148};
149 149
150QTextStream& operator<<( QTextStream& s, const OPacket& p ); //FIXME: Revise 150QTextStream& operator<<( QTextStream& s, const OPacket& p ); //FIXME: Revise
151 151
152/*====================================================================================== 152/*======================================================================================
153 * OEthernetPacket - DLT_EN10MB frame 153 * OEthernetPacket - DLT_EN10MB frame
154 *======================================================================================*/ 154 *======================================================================================*/
155 155
156class OEthernetPacket : public QObject 156class OEthernetPacket : public QObject
157{ 157{
158 Q_OBJECT 158 Q_OBJECT
159 159
160 public: 160 public:
161 OEthernetPacket( const unsigned char*, const struct ether_header*, QObject* parent = 0 ); 161 OEthernetPacket( const unsigned char*, const struct ether_header*, QObject* parent = 0 );
162 virtual ~OEthernetPacket(); 162 virtual ~OEthernetPacket();
163 163
164 OMacAddress sourceAddress() const; 164 OMacAddress sourceAddress() const;
165 OMacAddress destinationAddress() const; 165 OMacAddress destinationAddress() const;
166 int type() const; 166 int type() const;
167 167
168 private: 168 private:
169 const struct ether_header* _ether; 169 const struct ether_header* _ether;
170 private: 170 private:
171 class Private; 171 class Private;
172 Private *d; 172 Private *d;
173}; 173};
174 174
175/*====================================================================================== 175/*======================================================================================
176 * OPrismHeaderPacket - DLT_PRISM_HEADER frame 176 * OPrismHeaderPacket - DLT_PRISM_HEADER frame
177 *======================================================================================*/ 177 *======================================================================================*/
178 178
179class OPrismHeaderPacket : public QObject 179class OPrismHeaderPacket : public QObject
180{ 180{
181 Q_OBJECT 181 Q_OBJECT
182 182
183 public: 183 public:
184 OPrismHeaderPacket( const unsigned char*, const struct prism_hdr*, QObject* parent = 0 ); 184 OPrismHeaderPacket( const unsigned char*, const struct prism_hdr*, QObject* parent = 0 );
185 virtual ~OPrismHeaderPacket(); 185 virtual ~OPrismHeaderPacket();
186 186
187 unsigned int signalStrength() const; 187 unsigned int signalStrength() const;
188 188
189 private: 189 private:
190 const struct prism_hdr* _header; 190 const struct prism_hdr* _header;
191 class Private; 191 class Private;
192 Private *d; 192 Private *d;
193}; 193};
194 194
195/*====================================================================================== 195/*======================================================================================
196 * OWaveLanPacket - DLT_IEEE802_11 frame 196 * OWaveLanPacket - DLT_IEEE802_11 frame
197 *======================================================================================*/ 197 *======================================================================================*/
198 198
199class OWaveLanPacket : public QObject 199class OWaveLanPacket : public QObject
200{ 200{
201 Q_OBJECT 201 Q_OBJECT
202 202
203 public: 203 public:
204 OWaveLanPacket( const unsigned char*, const struct ieee_802_11_header*, QObject* parent = 0 ); 204 OWaveLanPacket( const unsigned char*, const struct ieee_802_11_header*, QObject* parent = 0 );
205 virtual ~OWaveLanPacket(); 205 virtual ~OWaveLanPacket();
206 206
207 int duration() const; 207 int duration() const;
208 bool fromDS() const; 208 bool fromDS() const;
209 bool toDS() const; 209 bool toDS() const;
210 virtual OMacAddress macAddress1() const; 210 virtual OMacAddress macAddress1() const;
211 virtual OMacAddress macAddress2() const; 211 virtual OMacAddress macAddress2() const;
212 virtual OMacAddress macAddress3() const; 212 virtual OMacAddress macAddress3() const;
213 virtual OMacAddress macAddress4() const; 213 virtual OMacAddress macAddress4() const;
214 bool usesPowerManagement() const; 214 bool usesPowerManagement() const;
215 int type() const; 215 int type() const;
216 int subType() const; 216 int subType() const;
217 int version() const; 217 int version() const;
218 bool usesWep() const; 218 bool usesWep() const;
219 219
220 private: 220 private:
221 const struct ieee_802_11_header* _wlanhdr; 221 const struct ieee_802_11_header* _wlanhdr;
222 class Private; 222 class Private;
223 Private *d; 223 Private *d;
224}; 224};
225 225
226 226
227/*====================================================================================== 227/*======================================================================================
228 * OWaveLanManagementPacket - type: management (T_MGMT) 228 * OWaveLanManagementPacket - type: management (T_MGMT)
229 *======================================================================================*/ 229 *======================================================================================*/
230 230
231class OWaveLanManagementPacket : public QObject 231class OWaveLanManagementPacket : public QObject
232{ 232{
233 Q_OBJECT 233 Q_OBJECT
234 234
235 public: 235 public:
236 OWaveLanManagementPacket( const unsigned char*, const struct ieee_802_11_mgmt_header*, OWaveLanPacket* parent = 0 ); 236 OWaveLanManagementPacket( const unsigned char*, const struct ieee_802_11_mgmt_header*, OWaveLanPacket* parent = 0 );
237 virtual ~OWaveLanManagementPacket(); 237 virtual ~OWaveLanManagementPacket();
238 238
239 QString managementType() const; 239 QString managementType() const;
240 240
241 int beaconInterval() const; 241 int beaconInterval() const;
242 int capabilities() const; // generic 242 int capabilities() const; // generic
243 243
244 bool canESS() const; 244 bool canESS() const;
245 bool canIBSS() const; 245 bool canIBSS() const;
246 bool canCFP() const; 246 bool canCFP() const;
247 bool canCFP_REQ() const; 247 bool canCFP_REQ() const;
248 bool canPrivacy() const; 248 bool canPrivacy() const;
249 249
250 private: 250 private:
251 const struct ieee_802_11_mgmt_header* _header; 251 const struct ieee_802_11_mgmt_header* _header;
252 const struct ieee_802_11_mgmt_body* _body; 252 const struct ieee_802_11_mgmt_body* _body;
253 class Private; 253 class Private;
254 Private *d; 254 Private *d;
255}; 255};
256 256
257 257
258/*====================================================================================== 258/*======================================================================================
259 * OWaveLanManagementSSID 259 * OWaveLanManagementSSID
260 *======================================================================================*/ 260 *======================================================================================*/
261 261
262class OWaveLanManagementSSID : public QObject 262class OWaveLanManagementSSID : public QObject
263{ 263{
264 Q_OBJECT 264 Q_OBJECT
265 265
266 public: 266 public:
267 OWaveLanManagementSSID( const unsigned char*, const struct ssid_t*, QObject* parent = 0 ); 267 OWaveLanManagementSSID( const unsigned char*, const struct ssid_t*, QObject* parent = 0 );
268 virtual ~OWaveLanManagementSSID(); 268 virtual ~OWaveLanManagementSSID();
269 269
270 QString ID( bool decloak = false ) const; 270 QString ID( bool decloak = false ) const;
271 271
272 private: 272 private:
273 const struct ssid_t* _data; 273 const struct ssid_t* _data;
274 class Private; 274 class Private;
275 Private *d; 275 Private *d;
276}; 276};
277 277
278/*====================================================================================== 278/*======================================================================================
279 * OWaveLanManagementRates 279 * OWaveLanManagementRates
280 *======================================================================================*/ 280 *======================================================================================*/
281 281
282class OWaveLanManagementRates : public QObject 282class OWaveLanManagementRates : public QObject
283{ 283{
284 Q_OBJECT 284 Q_OBJECT
285 285
286 public: 286 public:
287 OWaveLanManagementRates( const unsigned char*, const struct rates_t*, QObject* parent = 0 ); 287 OWaveLanManagementRates( const unsigned char*, const struct rates_t*, QObject* parent = 0 );
288 virtual ~OWaveLanManagementRates(); 288 virtual ~OWaveLanManagementRates();
289 289
290 private: 290 private:
291 const struct rates_t* _data; 291 const struct rates_t* _data;
292 class Private; 292 class Private;
293 Private *d; 293 Private *d;
294}; 294};
295 295
296/*====================================================================================== 296/*======================================================================================
297 * OWaveLanManagementCF 297 * OWaveLanManagementCF
298 *======================================================================================*/ 298 *======================================================================================*/
299 299
300class OWaveLanManagementCF : public QObject 300class OWaveLanManagementCF : public QObject
301{ 301{
302 Q_OBJECT 302 Q_OBJECT
303 303
304 public: 304 public:
305 OWaveLanManagementCF( const unsigned char*, const struct cf_t*, QObject* parent = 0 ); 305 OWaveLanManagementCF( const unsigned char*, const struct cf_t*, QObject* parent = 0 );
306 virtual ~OWaveLanManagementCF(); 306 virtual ~OWaveLanManagementCF();
307 307
308 private: 308 private:
309 const struct cf_t* _data; 309 const struct cf_t* _data;
310 class Private; 310 class Private;
311 Private *d; 311 Private *d;
312}; 312};
313 313
314/*====================================================================================== 314/*======================================================================================
315 * OWaveLanManagementFH 315 * OWaveLanManagementFH
316 *======================================================================================*/ 316 *======================================================================================*/
317 317
318class OWaveLanManagementFH : public QObject 318class OWaveLanManagementFH : public QObject
319{ 319{
320 Q_OBJECT 320 Q_OBJECT
321 321
322 public: 322 public:
323 OWaveLanManagementFH( const unsigned char*, const struct fh_t*, QObject* parent = 0 ); 323 OWaveLanManagementFH( const unsigned char*, const struct fh_t*, QObject* parent = 0 );
324 virtual ~OWaveLanManagementFH(); 324 virtual ~OWaveLanManagementFH();
325 325
326 private: 326 private:
327 const struct fh_t* _data; 327 const struct fh_t* _data;
328 class Private; 328 class Private;
329 Private *d; 329 Private *d;
330}; 330};
331 331
332/*====================================================================================== 332/*======================================================================================
333 * OWaveLanManagementDS 333 * OWaveLanManagementDS
334 *======================================================================================*/ 334 *======================================================================================*/
335 335
336class OWaveLanManagementDS : public QObject 336class OWaveLanManagementDS : public QObject
337{ 337{
338 Q_OBJECT 338 Q_OBJECT
339 339
340 public: 340 public:
341 OWaveLanManagementDS( const unsigned char*, const struct ds_t*, QObject* parent = 0 ); 341 OWaveLanManagementDS( const unsigned char*, const struct ds_t*, QObject* parent = 0 );
342 virtual ~OWaveLanManagementDS(); 342 virtual ~OWaveLanManagementDS();
343 343
344 int channel() const; 344 int channel() const;
345 345
346 private: 346 private:
347 const struct ds_t* _data; 347 const struct ds_t* _data;
348 class Private; 348 class Private;
349 Private *d; 349 Private *d;
350}; 350};
351 351
352/*====================================================================================== 352/*======================================================================================
353 * OWaveLanManagementTim 353 * OWaveLanManagementTim
354 *======================================================================================*/ 354 *======================================================================================*/
355 355
356class OWaveLanManagementTim : public QObject 356class OWaveLanManagementTim : public QObject
357{ 357{
358 Q_OBJECT 358 Q_OBJECT
359 359
360 public: 360 public:
361 OWaveLanManagementTim( const unsigned char*, const struct tim_t*, QObject* parent = 0 ); 361 OWaveLanManagementTim( const unsigned char*, const struct tim_t*, QObject* parent = 0 );
362 virtual ~OWaveLanManagementTim(); 362 virtual ~OWaveLanManagementTim();
363 363
364 private: 364 private:
365 const struct tim_t* _data; 365 const struct tim_t* _data;
366 class Private; 366 class Private;
367 Private *d; 367 Private *d;
368}; 368};
369 369
370/*====================================================================================== 370/*======================================================================================
371 * OWaveLanManagementIBSS 371 * OWaveLanManagementIBSS
372 *======================================================================================*/ 372 *======================================================================================*/
373 373
374class OWaveLanManagementIBSS : public QObject 374class OWaveLanManagementIBSS : public QObject
375{ 375{
376 Q_OBJECT 376 Q_OBJECT
377 377
378 public: 378 public:
379 OWaveLanManagementIBSS( const unsigned char*, const struct ibss_t*, QObject* parent = 0 ); 379 OWaveLanManagementIBSS( const unsigned char*, const struct ibss_t*, QObject* parent = 0 );
380 virtual ~OWaveLanManagementIBSS(); 380 virtual ~OWaveLanManagementIBSS();
381 381
382 private: 382 private:
383 const struct ibss_t* _data; 383 const struct ibss_t* _data;
384 class Private; 384 class Private;
385 Private *d; 385 Private *d;
386}; 386};
387 387
388/*====================================================================================== 388/*======================================================================================
389 * OWaveLanManagementChallenge 389 * OWaveLanManagementChallenge
390 *======================================================================================*/ 390 *======================================================================================*/
391 391
392class OWaveLanManagementChallenge : public QObject 392class OWaveLanManagementChallenge : public QObject
393{ 393{
394 Q_OBJECT 394 Q_OBJECT
395 395
396 public: 396 public:
397 OWaveLanManagementChallenge( const unsigned char*, const struct challenge_t*, QObject* parent = 0 ); 397 OWaveLanManagementChallenge( const unsigned char*, const struct challenge_t*, QObject* parent = 0 );
398 virtual ~OWaveLanManagementChallenge(); 398 virtual ~OWaveLanManagementChallenge();
399 399
400 private: 400 private:
401 const struct challenge_t* _data; 401 const struct challenge_t* _data;
402 class Private; 402 class Private;
403 Private *d; 403 Private *d;
404}; 404};
405 405
406/*====================================================================================== 406/*======================================================================================
407 * OWaveLanDataPacket - type: data (T_DATA) 407 * OWaveLanDataPacket - type: data (T_DATA)
408 *======================================================================================*/ 408 *======================================================================================*/
409 409
410class OWaveLanDataPacket : public QObject 410class OWaveLanDataPacket : public QObject
411{ 411{
412 Q_OBJECT 412 Q_OBJECT
413 413
414 public: 414 public:
415 OWaveLanDataPacket( const unsigned char*, const struct ieee_802_11_data_header*, OWaveLanPacket* parent = 0 ); 415 OWaveLanDataPacket( const unsigned char*, const struct ieee_802_11_data_header*, OWaveLanPacket* parent = 0 );
416 virtual ~OWaveLanDataPacket(); 416 virtual ~OWaveLanDataPacket();
417 417
418 private: 418 private:
419 const struct ieee_802_11_data_header* _header; 419 const struct ieee_802_11_data_header* _header;
420 class Private; 420 class Private;
421 Private *d; 421 Private *d;
422}; 422};
423 423
424/*====================================================================================== 424/*======================================================================================
425 * OWaveLanControlPacket - type: control (T_CTRL) 425 * OWaveLanControlPacket - type: control (T_CTRL)
426 *======================================================================================*/ 426 *======================================================================================*/
427 427
428class OWaveLanControlPacket : public QObject 428class OWaveLanControlPacket : public QObject
429{ 429{
430 Q_OBJECT 430 Q_OBJECT
431 431
432 public: 432 public:
433 OWaveLanControlPacket( const unsigned char*, const struct ieee_802_11_control_header*, OWaveLanPacket* parent = 0 ); 433 OWaveLanControlPacket( const unsigned char*, const struct ieee_802_11_control_header*, OWaveLanPacket* parent = 0 );
434 virtual ~OWaveLanControlPacket(); 434 virtual ~OWaveLanControlPacket();
435 435
436 QString controlType() const; 436 QString controlType() const;
437 437
438 private: 438 private:
439 const struct ieee_802_11_control_header* _header; 439 const struct ieee_802_11_control_header* _header;
440 class Private; 440 class Private;
441 Private *d; 441 Private *d;
442}; 442};
443 443
444/*====================================================================================== 444/*======================================================================================
445 * OLLCPacket - IEEE 802.2 Link Level Control 445 * OLLCPacket - IEEE 802.2 Link Level Control
446 *======================================================================================*/ 446 *======================================================================================*/
447 447
448class OLLCPacket : public QObject 448class OLLCPacket : public QObject
449{ 449{
450 Q_OBJECT 450 Q_OBJECT
451 451
452 public: 452 public:
453 OLLCPacket( const unsigned char*, const struct ieee_802_11_802_2_header* data, QObject* parent = 0 ); 453 OLLCPacket( const unsigned char*, const struct ieee_802_11_802_2_header* data, QObject* parent = 0 );
454 virtual ~OLLCPacket(); 454 virtual ~OLLCPacket();
455 455
456 private: 456 private:
457 const struct ieee_802_11_802_2_header* _header; 457 const struct ieee_802_11_802_2_header* _header;
458 class Private; 458 class Private;
459 Private *d; 459 Private *d;
460}; 460};
461 461
462/*====================================================================================== 462/*======================================================================================
463 * OIPPacket 463 * OIPPacket
464 *======================================================================================*/ 464 *======================================================================================*/
465 465
466class OIPPacket : public QObject 466class OIPPacket : public QObject
467{ 467{
468 Q_OBJECT 468 Q_OBJECT
469 469
470 public: 470 public:
471 OIPPacket( const unsigned char*, const struct iphdr*, QObject* parent = 0 ); 471 OIPPacket( const unsigned char*, const struct iphdr*, QObject* parent = 0 );
472 virtual ~OIPPacket(); 472 virtual ~OIPPacket();
473 473
474 QHostAddress fromIPAddress() const; 474 QHostAddress fromIPAddress() const;
475 QHostAddress toIPAddress() const; 475 QHostAddress toIPAddress() const;
476 476
477 int tos() const; 477 int tos() const;
478 int len() const; 478 int len() const;
479 int id() const; 479 int id() const;
480 int offset() const; 480 int offset() const;
481 int ttl() const; 481 int ttl() const;
482 int protocol() const; 482 int protocol() const;
483 int checksum() const; 483 int checksum() const;
484 484
485 private: 485 private:
486 const struct iphdr* _iphdr; 486 const struct iphdr* _iphdr;
487 class Private; 487 class Private;
488 Private *d; 488 Private *d;
489}; 489};
490 490
491/*====================================================================================== 491/*======================================================================================
492 * OARPPacket 492 * OARPPacket
493 *======================================================================================*/ 493 *======================================================================================*/
494 494
495class OARPPacket : public QObject 495class OARPPacket : public QObject
496{ 496{
497 Q_OBJECT 497 Q_OBJECT
498 498
499 public: 499 public:
500 OARPPacket( const unsigned char*, const struct myarphdr*, QObject* parent = 0 ); 500 OARPPacket( const unsigned char*, const struct myarphdr*, QObject* parent = 0 );
501 virtual ~OARPPacket(); 501 virtual ~OARPPacket();
502 502
503 QHostAddress senderIPV4Address() const; 503 QHostAddress senderIPV4Address() const;
504 OMacAddress senderMacAddress() const; 504 OMacAddress senderMacAddress() const;
505 QHostAddress targetIPV4Address() const; 505 QHostAddress targetIPV4Address() const;
506 OMacAddress targetMacAddress() const; 506 OMacAddress targetMacAddress() const;
507 507
508 //int type() const; 508 //int type() const;
509 QString type() const; 509 QString type() const;
510 510
511 private: 511 private:
512 const struct myarphdr* _arphdr; 512 const struct myarphdr* _arphdr;
513 class Private; 513 class Private;
514 Private *d; 514 Private *d;
515}; 515};
516 516
517/*====================================================================================== 517/*======================================================================================
518 * OUDPPacket 518 * OUDPPacket
519 *======================================================================================*/ 519 *======================================================================================*/
520 520
521class OUDPPacket : public QObject 521class OUDPPacket : public QObject
522{ 522{
523 Q_OBJECT 523 Q_OBJECT
524 524
525 public: 525 public:
526 OUDPPacket( const unsigned char*, const struct udphdr*, QObject* parent = 0 ); 526 OUDPPacket( const unsigned char*, const struct udphdr*, QObject* parent = 0 );
527 virtual ~OUDPPacket(); 527 virtual ~OUDPPacket();
528 528
529 int fromPort() const; 529 int fromPort() const;
530 int toPort() const; 530 int toPort() const;
531 int length() const; 531 int length() const;
532 int checksum() const; 532 int checksum() const;
533 533
534 private: 534 private:
535 const struct udphdr* _udphdr; 535 const struct udphdr* _udphdr;
536 class Private; 536 class Private;
537 Private *d; 537 Private *d;
538}; 538};
539 539
540/*====================================================================================== 540/*======================================================================================
541 * ODHCPPacket 541 * ODHCPPacket
542 *======================================================================================*/ 542 *======================================================================================*/
543 543
544class ODHCPPacket : public QObject 544class ODHCPPacket : public QObject
545{ 545{
546 Q_OBJECT 546 Q_OBJECT
547 547
548 public: 548 public:
549 ODHCPPacket( const unsigned char*, const struct dhcp_packet*, QObject* parent = 0 ); 549 ODHCPPacket( const unsigned char*, const struct dhcp_packet*, QObject* parent = 0 );
550 virtual ~ODHCPPacket(); 550 virtual ~ODHCPPacket();
551 551
552 QHostAddress clientAddress() const; 552 QHostAddress clientAddress() const;
553 QHostAddress yourAddress() const; 553 QHostAddress yourAddress() const;
554 QHostAddress serverAddress() const; 554 QHostAddress serverAddress() const;
555 QHostAddress relayAddress() const; 555 QHostAddress relayAddress() const;
556 556
557 OMacAddress clientMacAddress() const; 557 OMacAddress clientMacAddress() const;
558 558
559 bool isRequest() const; 559 bool isRequest() const;
560 bool isReply() const; 560 bool isReply() const;
561 QString type() const; 561 QString type() const;
562 562
563 private: 563 private:
564 const struct dhcp_packet* _dhcphdr; 564 const struct dhcp_packet* _dhcphdr;
565 unsigned char _type; 565 unsigned char _type;
566 class Private; 566 class Private;
567 Private *d; 567 Private *d;
568}; 568};
569 569
570/*====================================================================================== 570/*======================================================================================
571 * OTCPPacket 571 * OTCPPacket
572 *======================================================================================*/ 572 *======================================================================================*/
573 573
574class OTCPPacket : public QObject 574class OTCPPacket : public QObject
575{ 575{
576 Q_OBJECT 576 Q_OBJECT
577 577
578 public: 578 public:
579 OTCPPacket( const unsigned char*, const struct tcphdr*, QObject* parent = 0 ); 579 OTCPPacket( const unsigned char*, const struct tcphdr*, QObject* parent = 0 );
580 virtual ~OTCPPacket(); 580 virtual ~OTCPPacket();
581 581
582 int fromPort() const; 582 int fromPort() const;
583 int toPort() const; 583 int toPort() const;
584 int seq() const; 584 int seq() const;
585 int ack() const; 585 int ack() const;
586 int window() const; 586 int window() const;
587 int checksum() const; 587 int checksum() const;
588 588
589 private: 589 private:
590 const struct tcphdr* _tcphdr; 590 const struct tcphdr* _tcphdr;
591 class Private; 591 class Private;
592 Private *d; 592 Private *d;
593}; 593};
594 594
595 595
596/*====================================================================================== 596/*======================================================================================
597 * OPacketCapturer 597 * OPacketCapturer
598 *======================================================================================*/ 598 *======================================================================================*/
599 599
600/** 600/**
601 * @brief A class based wrapper for network packet capturing. 601 * @brief A class based wrapper for network packet capturing.
602 * 602 *
603 * This class is the base of a high-level interface to the well known packet capturing 603 * This class is the base of a high-level interface to the well known packet capturing
604 * library libpcap. 604 * library libpcap.
605 * @see http://tcpdump.org 605 * @see http://tcpdump.org
606 */ 606 */
607class OPacketCapturer : public QObject 607class OPacketCapturer : public QObject
608{ 608{
609 Q_OBJECT 609 Q_OBJECT
610 610
611 public: 611 public:
612 /** 612 /**
613 * Constructor. 613 * Constructor.
614 */ 614 */
615 OPacketCapturer( QObject* parent = 0, const char* name = 0 ); 615 OPacketCapturer( QObject* parent = 0, const char* name = 0 );
616 /** 616 /**
617 * Destructor. 617 * Destructor.
618 */ 618 */
619 ~OPacketCapturer(); 619 ~OPacketCapturer();
620 /** 620 /**
621 * Set the packet capturer to use blocking or non-blocking IO. This can be useful when 621 * Set the packet capturer to use blocking or non-blocking IO. This can be useful when
622 * not using the socket notifier, e.g. without an application object. 622 * not using the socket notifier, e.g. without an application object.
623 */ 623 */
624 void setBlocking( bool ); 624 void setBlocking( bool );
625 /** 625 /**
626 * @returns true if the packet capturer uses blocking IO calls. 626 * @returns true if the packet capturer uses blocking IO calls.
627 */ 627 */
628 bool blocking() const; 628 bool blocking() const;
629 /** 629 /**
630 * Close the packet capturer. This is automatically done in the destructor. 630 * Close the packet capturer. This is automatically done in the destructor.
631 */ 631 */
632 void close(); 632 void close();
633 /** 633 /**
634 * Close the output capture file. 634 * Close the output capture file.
635 */ 635 */
636 void closeDumpFile(); 636 void closeDumpFile();
637 /** 637 /**
638 * @returns the data link type. 638 * @returns the data link type.
639 * @see <pcap.h> for possible values. 639 * @see <pcap.h> for possible values.
640 */ 640 */
641 int dataLink() const; 641 int dataLink() const;
642 /** 642 /**
643 * Dump a packet to the output capture file. 643 * Dump a packet to the output capture file.
644 */ 644 */
645 void dump( OPacket* ); 645 void dump( OPacket* );
646 /** 646 /**
647 * @returns the file descriptor of the packet capturer. This is only useful, if 647 * @returns the file descriptor of the packet capturer. This is only useful, if
648 * not using the socket notifier, e.g. without an application object. 648 * not using the socket notifier, e.g. without an application object.
649 */ 649 */
650 int fileno() const; 650 int fileno() const;
651 /** 651 /**
652 * @returns the next @ref OPacket from the packet capturer. 652 * @returns the next @ref OPacket from the packet capturer.
653 * @note If blocking mode is true then this call might block. 653 * @note If blocking mode is true then this call might block.
654 */ 654 */
655 OPacket* next(); 655 OPacket* next();
656 /** 656 /**
657 * @returns the next @ref OPacket from the packet capturer, if 657 * @returns the next @ref OPacket from the packet capturer, if
658 * one arrives within @a time milliseconds. 658 * one arrives within @a time milliseconds.
659 */ 659 */
660 OPacket* next( int time ); 660 OPacket* next( int time );
661 /** 661 /**
662 * Open the packet capturer to capture packets in live-mode from @a interface. 662 * Open the packet capturer to capture packets in live-mode from @a interface.
663 */ 663 */
664 bool open( const QString& interface ); 664 bool open( const QString& interface );
665 /** 665 /**
666 * Open the packet capturer to capture packets in offline-mode from @a file. 666 * Open the packet capturer to capture packets in offline-mode from @a filename.
667 */ 667 */
668 bool open( const QFile& file ); 668 bool openCaptureFile( const QString& filename );
669 /** 669 /**
670 * Open a prerecorded tcpdump compatible capture file for use with @ref dump() 670 * Open a prerecorded tcpdump compatible capture file for use with @ref dump()
671 */ 671 */
672 bool openDumpFile( const QString& filename ); 672 bool openDumpFile( const QString& filename );
673 /** 673 /**
674 * @returns true if the packet capturer is open 674 * @returns true if the packet capturer is open
675 */ 675 */
676 bool isOpen() const; 676 bool isOpen() const;
677 /** 677 /**
678 * @returns the snapshot length of this packet capturer 678 * @returns the snapshot length of this packet capturer
679 */ 679 */
680 int snapShot() const; 680 int snapShot() const;
681 /** 681 /**
682 * @returns true if the input capture file has a different byte-order 682 * @returns true if the input capture file has a different byte-order
683 * than the byte-order of the running system. 683 * than the byte-order of the running system.
684 */ 684 */
685 bool swapped() const; 685 bool swapped() const;
686 /** 686 /**
687 * @returns the libpcap version string used to write the input capture file. 687 * @returns the libpcap version string used to write the input capture file.
688 */ 688 */
689 QString version() const; 689 QString version() const;
690 /** 690 /**
691 * @returns the packet statistic database. 691 * @returns the packet statistic database.
692 * @see QMap 692 * @see QMap
693 */ 693 */
694 const QMap<QString,int>& statistics() const; 694 const QMap<QString,int>& statistics() const;
695 /** 695 /**
696 * Enable or disable the auto-delete option. 696 * Enable or disable the auto-delete option.
697 * If auto-delete is enabled, then the packet capturer will delete a packet right 697 * If auto-delete is enabled, then the packet capturer will delete a packet right
698 * after it has been emit'ted. This is the default, which is useful if the packet 698 * after it has been emit'ted. This is the default, which is useful if the packet
699 * capturer has the only reference to the packets. If you pass the packet for adding 699 * capturer has the only reference to the packets. If you pass the packet for adding
700 * into a collection or do processing after the SLOT, the auto delete must be disabled. 700 * into a collection or do processing after the SLOT, the auto delete must be disabled.
701 */ 701 */
702 void setAutoDelete( bool enable ); 702 void setAutoDelete( bool enable );
703 /** 703 /**
704 * @returns the auto-delete value. 704 * @returns the auto-delete value.
705 */ 705 */
706 bool autoDelete() const; 706 bool autoDelete() const;
707 707
708 signals: 708 signals:
709 /** 709 /**
710 * This signal is emitted, when a packet has been received. 710 * This signal is emitted, when a packet has been received.
711 */ 711 */
712 void receivedPacket( Opie::Net::OPacket* ); 712 void receivedPacket( Opie::Net::OPacket* );
713 713
714 protected slots: 714 protected slots:
715 void readyToReceive(); 715 void readyToReceive();
716 716
717 protected: 717 protected:
718 QString _name; // devicename 718 QString _name; // devicename
719 bool _open; // check this before doing pcap calls 719 bool _open; // check this before doing pcap calls
720 pcap_t* _pch; // pcap library handle 720 pcap_t* _pch; // pcap library handle
721 pcap_dumper_t* _pcd; // pcap dumper handle 721 pcap_dumper_t* _pcd; // pcap dumper handle
722 QSocketNotifier* _sn; // socket notifier for main loop 722 QSocketNotifier* _sn; // socket notifier for main loop
723 mutable char _errbuf[PCAP_ERRBUF_SIZE]; // holds error strings from libpcap 723 mutable char _errbuf[PCAP_ERRBUF_SIZE]; // holds error strings from libpcap
724 QMap<QString, int> _stats; // statistics; 724 QMap<QString, int> _stats; // statistics;
725 bool _autodelete; // if we auto delete packets after emit 725 bool _autodelete; // if we auto delete packets after emit
726 class Private; // Private Forward declaration 726 class Private; // Private Forward declaration
727 Private *d; // if we need to add data 727 Private *d; // if we need to add data
728}; 728};
729} 729}
730} 730}
731 731
732#endif // OPCAP_H 732#endif // OPCAP_H
733 733