summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opienet/opcap.cpp82
-rw-r--r--libopie2/opienet/opcap.h10
2 files changed, 92 insertions, 0 deletions
diff --git a/libopie2/opienet/opcap.cpp b/libopie2/opienet/opcap.cpp
index f1f2b4b..7a6f61b 100644
--- a/libopie2/opienet/opcap.cpp
+++ b/libopie2/opienet/opcap.cpp
@@ -316,200 +316,282 @@ QString OARPPacket::type() const
316 case 4: return "RREPLY"; 316 case 4: return "RREPLY";
317 case 8: return "InREQUEST"; 317 case 8: return "InREQUEST";
318 case 9: return "InREPLY"; 318 case 9: return "InREPLY";
319 case 10: return "NAK"; 319 case 10: return "NAK";
320 default: qWarning( "OARPPacket::type(): invalid ARP type!" ); return "<unknown>"; 320 default: qWarning( "OARPPacket::type(): invalid ARP type!" ); return "<unknown>";
321 } 321 }
322} 322}
323 323
324 324
325QHostAddress OARPPacket::senderIPV4Address() const 325QHostAddress OARPPacket::senderIPV4Address() const
326{ 326{
327 return EXTRACT_32BITS( &_arphdr->ar_sip ); 327 return EXTRACT_32BITS( &_arphdr->ar_sip );
328} 328}
329 329
330 330
331QHostAddress OARPPacket::targetIPV4Address() const 331QHostAddress OARPPacket::targetIPV4Address() const
332{ 332{
333 return EXTRACT_32BITS( &_arphdr->ar_tip ); 333 return EXTRACT_32BITS( &_arphdr->ar_tip );
334} 334}
335 335
336 336
337OMacAddress OARPPacket::senderMacAddress() const 337OMacAddress OARPPacket::senderMacAddress() const
338{ 338{
339 return OMacAddress( _arphdr->ar_sha ); 339 return OMacAddress( _arphdr->ar_sha );
340} 340}
341 341
342 342
343OMacAddress OARPPacket::targetMacAddress() const 343OMacAddress OARPPacket::targetMacAddress() const
344{ 344{
345 return OMacAddress( _arphdr->ar_tha ); 345 return OMacAddress( _arphdr->ar_tha );
346} 346}
347 347
348 348
349/*====================================================================================== 349/*======================================================================================
350 * OUDPPacket 350 * OUDPPacket
351 *======================================================================================*/ 351 *======================================================================================*/
352 352
353 353
354OUDPPacket::OUDPPacket( const unsigned char* end, const struct udphdr* data, QObject* parent ) 354OUDPPacket::OUDPPacket( const unsigned char* end, const struct udphdr* data, QObject* parent )
355 :QObject( parent, "UDP" ), _udphdr( data ) 355 :QObject( parent, "UDP" ), _udphdr( data )
356 356
357{ 357{
358 qDebug( "OUDPPacket::OUDPPacket(): decoding UDP header..." ); 358 qDebug( "OUDPPacket::OUDPPacket(): decoding UDP header..." );
359 qDebug( "fromPort = %d", fromPort() ); 359 qDebug( "fromPort = %d", fromPort() );
360 qDebug( " toPort = %d", toPort() ); 360 qDebug( " toPort = %d", toPort() );
361 361
362 // TODO: Make this a case or a hash if we know more udp protocols 362 // TODO: Make this a case or a hash if we know more udp protocols
363 363
364 if ( fromPort() == UDP_PORT_BOOTPS || fromPort() == UDP_PORT_BOOTPC || 364 if ( fromPort() == UDP_PORT_BOOTPS || fromPort() == UDP_PORT_BOOTPC ||
365 toPort() == UDP_PORT_BOOTPS || toPort() == UDP_PORT_BOOTPC ) 365 toPort() == UDP_PORT_BOOTPS || toPort() == UDP_PORT_BOOTPC )
366 { 366 {
367 qDebug( "seems to be part of a DHCP conversation => creating DHCP packet." ); 367 qDebug( "seems to be part of a DHCP conversation => creating DHCP packet." );
368 new ODHCPPacket( end, (const struct dhcp_packet*) (data+1), this ); 368 new ODHCPPacket( end, (const struct dhcp_packet*) (data+1), this );
369 } 369 }
370} 370}
371 371
372 372
373OUDPPacket::~OUDPPacket() 373OUDPPacket::~OUDPPacket()
374{ 374{
375} 375}
376 376
377 377
378int OUDPPacket::fromPort() const 378int OUDPPacket::fromPort() const
379{ 379{
380 return EXTRACT_16BITS( &_udphdr->source ); 380 return EXTRACT_16BITS( &_udphdr->source );
381} 381}
382 382
383 383
384int OUDPPacket::toPort() const 384int OUDPPacket::toPort() const
385{ 385{
386 return EXTRACT_16BITS( &_udphdr->dest ); 386 return EXTRACT_16BITS( &_udphdr->dest );
387} 387}
388 388
389 389
390int OUDPPacket::length() const 390int OUDPPacket::length() const
391{ 391{
392 return EXTRACT_16BITS( &_udphdr->len ); 392 return EXTRACT_16BITS( &_udphdr->len );
393} 393}
394 394
395 395
396int OUDPPacket::checksum() const 396int OUDPPacket::checksum() const
397{ 397{
398 return EXTRACT_16BITS( &_udphdr->check ); 398 return EXTRACT_16BITS( &_udphdr->check );
399} 399}
400 400
401 401
402/*====================================================================================== 402/*======================================================================================
403 * ODHCPPacket 403 * ODHCPPacket
404 *======================================================================================*/ 404 *======================================================================================*/
405 405
406 406
407ODHCPPacket::ODHCPPacket( const unsigned char* end, const struct dhcp_packet* data, QObject* parent ) 407ODHCPPacket::ODHCPPacket( const unsigned char* end, const struct dhcp_packet* data, QObject* parent )
408 :QObject( parent, "DHCP" ), _dhcphdr( data ) 408 :QObject( parent, "DHCP" ), _dhcphdr( data )
409 409
410{ 410{
411 qDebug( "ODHCPPacket::ODHCPPacket(): decoding DHCP information..." ); 411 qDebug( "ODHCPPacket::ODHCPPacket(): decoding DHCP information..." );
412 qDebug( "DHCP opcode seems to be %02d - '%s'", _dhcphdr->op, isRequest() ? "REQUEST" : "REPLY" );
413 qDebug( "clientAddress: %s", (const char*) clientAddress().toString() );
414 qDebug( " yourAddress: %s", (const char*) yourAddress().toString() );
415 qDebug( "serverAddress: %s", (const char*) serverAddress().toString() );
416 qDebug( " relayAddress: %s", (const char*) relayAddress().toString() );
417 qDebug( "parsing DHCP options..." );
418
419 _type = 0;
420
421 const unsigned char* option = &_dhcphdr->options[4];
422 char tag = -1;
423 char len = -1;
424
425 while ( ( tag = *option++ ) != -1 /* end of option field */ )
426 {
427 len = *option++;
428 qDebug( "recognized DHCP option #%d, length %d", tag, len );
429
430 if ( tag == DHO_DHCP_MESSAGE_TYPE )
431 _type = *option;
432
433 option += len;
434 if ( option >= end )
435 {
436 qWarning( "DHCP parsing ERROR: sanity check says the packet is at its end!" );
437 break;
438 }
439 }
440
441 qDebug( "DHCP type seems to be '%s'", (const char*) type() );
412} 442}
413 443
414 444
415ODHCPPacket::~ODHCPPacket() 445ODHCPPacket::~ODHCPPacket()
416{ 446{
417} 447}
418 448
419 449
450bool ODHCPPacket::isRequest() const
451{
452 return ( _dhcphdr->op == 01 );
453}
454
455
456bool ODHCPPacket::isReply() const
457{
458 return ( _dhcphdr->op == 02 );
459}
460
461
462QString ODHCPPacket::type() const
463{
464 switch ( _type )
465 {
466 case 1: return "DISCOVER";
467 case 2: return "OFFER";
468 case 3: return "REQUEST";
469 case 4: return "DECLINE";
470 case 5: return "ACK";
471 case 6: return "NAK";
472 case 7: return "RELEASE";
473 case 8: return "INFORM";
474 default: qWarning( "ODHCPPacket::type(): invalid DHCP type (%d) !", _dhcphdr->op ); return "<unknown>";
475 }
476}
477
478
479QHostAddress ODHCPPacket::clientAddress() const
480{
481 return EXTRACT_32BITS( &_dhcphdr->ciaddr );
482}
483
484
485QHostAddress ODHCPPacket::yourAddress() const
486{
487 return EXTRACT_32BITS( &_dhcphdr->yiaddr );
488}
489
490
491QHostAddress ODHCPPacket::serverAddress() const
492{
493 return EXTRACT_32BITS( &_dhcphdr->siaddr );
494}
495
496
497QHostAddress ODHCPPacket::relayAddress() const
498{
499 return EXTRACT_32BITS( &_dhcphdr->giaddr );
500}
501
420/*====================================================================================== 502/*======================================================================================
421 * OTCPPacket 503 * OTCPPacket
422 *======================================================================================*/ 504 *======================================================================================*/
423 505
424 506
425OTCPPacket::OTCPPacket( const unsigned char* end, const struct tcphdr* data, QObject* parent ) 507OTCPPacket::OTCPPacket( const unsigned char* end, const struct tcphdr* data, QObject* parent )
426 :QObject( parent, "TCP" ), _tcphdr( data ) 508 :QObject( parent, "TCP" ), _tcphdr( data )
427 509
428{ 510{
429 qDebug( "OTCPPacket::OTCPPacket(): decoding TCP header..." ); 511 qDebug( "OTCPPacket::OTCPPacket(): decoding TCP header..." );
430} 512}
431 513
432 514
433OTCPPacket::~OTCPPacket() 515OTCPPacket::~OTCPPacket()
434{ 516{
435} 517}
436 518
437 519
438int OTCPPacket::fromPort() const 520int OTCPPacket::fromPort() const
439{ 521{
440 return EXTRACT_16BITS( &_tcphdr->source ); 522 return EXTRACT_16BITS( &_tcphdr->source );
441} 523}
442 524
443 525
444int OTCPPacket::toPort() const 526int OTCPPacket::toPort() const
445{ 527{
446 return EXTRACT_16BITS( &_tcphdr->dest ); 528 return EXTRACT_16BITS( &_tcphdr->dest );
447} 529}
448 530
449 531
450int OTCPPacket::seq() const 532int OTCPPacket::seq() const
451{ 533{
452 return EXTRACT_16BITS( &_tcphdr->seq ); 534 return EXTRACT_16BITS( &_tcphdr->seq );
453} 535}
454 536
455 537
456int OTCPPacket::ack() const 538int OTCPPacket::ack() const
457{ 539{
458 return EXTRACT_16BITS( &_tcphdr->ack_seq ); 540 return EXTRACT_16BITS( &_tcphdr->ack_seq );
459} 541}
460 542
461 543
462int OTCPPacket::window() const 544int OTCPPacket::window() const
463{ 545{
464 return EXTRACT_16BITS( &_tcphdr->window ); 546 return EXTRACT_16BITS( &_tcphdr->window );
465} 547}
466 548
467 549
468int OTCPPacket::checksum() const 550int OTCPPacket::checksum() const
469{ 551{
470 return EXTRACT_16BITS( &_tcphdr->check ); 552 return EXTRACT_16BITS( &_tcphdr->check );
471} 553}
472 554
473/*====================================================================================== 555/*======================================================================================
474 * OPrismHeaderPacket 556 * OPrismHeaderPacket
475 *======================================================================================*/ 557 *======================================================================================*/
476 558
477 559
478OPrismHeaderPacket::OPrismHeaderPacket( const unsigned char* end, const struct prism_hdr* data, QObject* parent ) 560OPrismHeaderPacket::OPrismHeaderPacket( const unsigned char* end, const struct prism_hdr* data, QObject* parent )
479 :QObject( parent, "Prism" ), _header( data ) 561 :QObject( parent, "Prism" ), _header( data )
480 562
481{ 563{
482 qDebug( "OPrismHeaderPacket::OPrismHeaderPacket(): decoding PRISM header..." ); 564 qDebug( "OPrismHeaderPacket::OPrismHeaderPacket(): decoding PRISM header..." );
483 565
484 qDebug( "Signal Strength = %d", data->signal.data ); 566 qDebug( "Signal Strength = %d", data->signal.data );
485 567
486 new OWaveLanPacket( end, (const struct ieee_802_11_header*) (data+1), this ); 568 new OWaveLanPacket( end, (const struct ieee_802_11_header*) (data+1), this );
487} 569}
488 570
489OPrismHeaderPacket::~OPrismHeaderPacket() 571OPrismHeaderPacket::~OPrismHeaderPacket()
490{ 572{
491} 573}
492 574
493 575
494unsigned int OPrismHeaderPacket::signalStrength() const 576unsigned int OPrismHeaderPacket::signalStrength() const
495{ 577{
496 return _header->signal.data; 578 return _header->signal.data;
497} 579}
498 580
499/*====================================================================================== 581/*======================================================================================
500 * OWaveLanPacket 582 * OWaveLanPacket
501 *======================================================================================*/ 583 *======================================================================================*/
502 584
503 585
504OWaveLanPacket::OWaveLanPacket( const unsigned char* end, const struct ieee_802_11_header* data, QObject* parent ) 586OWaveLanPacket::OWaveLanPacket( const unsigned char* end, const struct ieee_802_11_header* data, QObject* parent )
505 :QObject( parent, "802.11" ), _wlanhdr( data ) 587 :QObject( parent, "802.11" ), _wlanhdr( data )
506 588
507{ 589{
508 qDebug( "OWaveLanPacket::OWaveLanPacket(): decoding IEEE 802.11 header..." ); 590 qDebug( "OWaveLanPacket::OWaveLanPacket(): decoding IEEE 802.11 header..." );
509 qDebug( "type: %0X", type() ); 591 qDebug( "type: %0X", type() );
510 qDebug( "subType: %0X", subType() ); 592 qDebug( "subType: %0X", subType() );
511 qDebug( "duration: %d", duration() ); 593 qDebug( "duration: %d", duration() );
512 qDebug( "powermanagement: %d", usesPowerManagement() ); 594 qDebug( "powermanagement: %d", usesPowerManagement() );
513 qDebug( "payload is encrypted: %s", usesWep() ? "yes" : "no" ); 595 qDebug( "payload is encrypted: %s", usesWep() ? "yes" : "no" );
514 qDebug( "MAC1: %s", (const char*) macAddress1().toString() ); 596 qDebug( "MAC1: %s", (const char*) macAddress1().toString() );
515 qDebug( "MAC2: %s", (const char*) macAddress2().toString() ); 597 qDebug( "MAC2: %s", (const char*) macAddress2().toString() );
diff --git a/libopie2/opienet/opcap.h b/libopie2/opienet/opcap.h
index 0c9e7da..a031dd1 100644
--- a/libopie2/opienet/opcap.h
+++ b/libopie2/opienet/opcap.h
@@ -406,194 +406,204 @@ class OWaveLanControlPacket : public QObject
406class OLLCPacket : public QObject 406class OLLCPacket : public QObject
407{ 407{
408 Q_OBJECT 408 Q_OBJECT
409 409
410 public: 410 public:
411 OLLCPacket( const unsigned char*, const struct ieee_802_11_802_2_header* data, QObject* parent = 0 ); 411 OLLCPacket( const unsigned char*, const struct ieee_802_11_802_2_header* data, QObject* parent = 0 );
412 virtual ~OLLCPacket(); 412 virtual ~OLLCPacket();
413 413
414 private: 414 private:
415 const struct ieee_802_11_802_2_header* _header; 415 const struct ieee_802_11_802_2_header* _header;
416}; 416};
417 417
418/*====================================================================================== 418/*======================================================================================
419 * OIPPacket 419 * OIPPacket
420 *======================================================================================*/ 420 *======================================================================================*/
421 421
422class OIPPacket : public QObject 422class OIPPacket : public QObject
423{ 423{
424 Q_OBJECT 424 Q_OBJECT
425 425
426 public: 426 public:
427 OIPPacket( const unsigned char*, const struct iphdr*, QObject* parent = 0 ); 427 OIPPacket( const unsigned char*, const struct iphdr*, QObject* parent = 0 );
428 virtual ~OIPPacket(); 428 virtual ~OIPPacket();
429 429
430 QHostAddress fromIPAddress() const; 430 QHostAddress fromIPAddress() const;
431 QHostAddress toIPAddress() const; 431 QHostAddress toIPAddress() const;
432 432
433 int tos() const; 433 int tos() const;
434 int len() const; 434 int len() const;
435 int id() const; 435 int id() const;
436 int offset() const; 436 int offset() const;
437 int ttl() const; 437 int ttl() const;
438 int protocol() const; 438 int protocol() const;
439 int checksum() const; 439 int checksum() const;
440 440
441 private: 441 private:
442 const struct iphdr* _iphdr; 442 const struct iphdr* _iphdr;
443}; 443};
444 444
445/*====================================================================================== 445/*======================================================================================
446 * OARPPacket 446 * OARPPacket
447 *======================================================================================*/ 447 *======================================================================================*/
448 448
449class OARPPacket : public QObject 449class OARPPacket : public QObject
450{ 450{
451 Q_OBJECT 451 Q_OBJECT
452 452
453 public: 453 public:
454 OARPPacket( const unsigned char*, const struct myarphdr*, QObject* parent = 0 ); 454 OARPPacket( const unsigned char*, const struct myarphdr*, QObject* parent = 0 );
455 virtual ~OARPPacket(); 455 virtual ~OARPPacket();
456 456
457 QHostAddress senderIPV4Address() const; 457 QHostAddress senderIPV4Address() const;
458 OMacAddress senderMacAddress() const; 458 OMacAddress senderMacAddress() const;
459 QHostAddress targetIPV4Address() const; 459 QHostAddress targetIPV4Address() const;
460 OMacAddress targetMacAddress() const; 460 OMacAddress targetMacAddress() const;
461 461
462 //int type() const; 462 //int type() const;
463 QString type() const; 463 QString type() const;
464 464
465 private: 465 private:
466 const struct myarphdr* _arphdr; 466 const struct myarphdr* _arphdr;
467}; 467};
468 468
469/*====================================================================================== 469/*======================================================================================
470 * OUDPPacket 470 * OUDPPacket
471 *======================================================================================*/ 471 *======================================================================================*/
472 472
473class OUDPPacket : public QObject 473class OUDPPacket : public QObject
474{ 474{
475 Q_OBJECT 475 Q_OBJECT
476 476
477 public: 477 public:
478 OUDPPacket( const unsigned char*, const struct udphdr*, QObject* parent = 0 ); 478 OUDPPacket( const unsigned char*, const struct udphdr*, QObject* parent = 0 );
479 virtual ~OUDPPacket(); 479 virtual ~OUDPPacket();
480 480
481 int fromPort() const; 481 int fromPort() const;
482 int toPort() const; 482 int toPort() const;
483 int length() const; 483 int length() const;
484 int checksum() const; 484 int checksum() const;
485 485
486 private: 486 private:
487 const struct udphdr* _udphdr; 487 const struct udphdr* _udphdr;
488}; 488};
489 489
490/*====================================================================================== 490/*======================================================================================
491 * ODHCPPacket 491 * ODHCPPacket
492 *======================================================================================*/ 492 *======================================================================================*/
493 493
494class ODHCPPacket : public QObject 494class ODHCPPacket : public QObject
495{ 495{
496 Q_OBJECT 496 Q_OBJECT
497 497
498 public: 498 public:
499 ODHCPPacket( const unsigned char*, const struct dhcp_packet*, QObject* parent = 0 ); 499 ODHCPPacket( const unsigned char*, const struct dhcp_packet*, QObject* parent = 0 );
500 virtual ~ODHCPPacket(); 500 virtual ~ODHCPPacket();
501 501
502 QHostAddress clientAddress() const;
503 QHostAddress yourAddress() const;
504 QHostAddress serverAddress() const;
505 QHostAddress relayAddress() const;
506
507 bool isRequest() const;
508 bool isReply() const;
509 QString type() const;
510
502 private: 511 private:
503 const struct dhcp_packet* _dhcphdr; 512 const struct dhcp_packet* _dhcphdr;
513 unsigned char _type;
504}; 514};
505 515
506/*====================================================================================== 516/*======================================================================================
507 * OTCPPacket 517 * OTCPPacket
508 *======================================================================================*/ 518 *======================================================================================*/
509 519
510class OTCPPacket : public QObject 520class OTCPPacket : public QObject
511{ 521{
512 Q_OBJECT 522 Q_OBJECT
513 523
514 public: 524 public:
515 OTCPPacket( const unsigned char*, const struct tcphdr*, QObject* parent = 0 ); 525 OTCPPacket( const unsigned char*, const struct tcphdr*, QObject* parent = 0 );
516 virtual ~OTCPPacket(); 526 virtual ~OTCPPacket();
517 527
518 int fromPort() const; 528 int fromPort() const;
519 int toPort() const; 529 int toPort() const;
520 int seq() const; 530 int seq() const;
521 int ack() const; 531 int ack() const;
522 int window() const; 532 int window() const;
523 int checksum() const; 533 int checksum() const;
524 534
525 private: 535 private:
526 const struct tcphdr* _tcphdr; 536 const struct tcphdr* _tcphdr;
527}; 537};
528 538
529 539
530/*====================================================================================== 540/*======================================================================================
531 * OPacketCapturer 541 * OPacketCapturer
532 *======================================================================================*/ 542 *======================================================================================*/
533 543
534/** 544/**
535 * @brief A class based wrapper for network packet capturing. 545 * @brief A class based wrapper for network packet capturing.
536 * 546 *
537 * This class is the base of a high-level interface to the well known packet capturing 547 * This class is the base of a high-level interface to the well known packet capturing
538 * library libpcap. 548 * library libpcap.
539 * @see http://tcpdump.org 549 * @see http://tcpdump.org
540 */ 550 */
541class OPacketCapturer : public QObject 551class OPacketCapturer : public QObject
542{ 552{
543 Q_OBJECT 553 Q_OBJECT
544 554
545 public: 555 public:
546 /** 556 /**
547 * Constructor. 557 * Constructor.
548 */ 558 */
549 OPacketCapturer( QObject* parent = 0, const char* name = 0 ); 559 OPacketCapturer( QObject* parent = 0, const char* name = 0 );
550 /** 560 /**
551 * Destructor. 561 * Destructor.
552 */ 562 */
553 ~OPacketCapturer(); 563 ~OPacketCapturer();
554 /** 564 /**
555 * Set the packet capturer to use blocking or non-blocking IO. This can be useful when 565 * Set the packet capturer to use blocking or non-blocking IO. This can be useful when
556 * not using the socket notifier, e.g. without an application object. 566 * not using the socket notifier, e.g. without an application object.
557 */ 567 */
558 void setBlocking( bool ); 568 void setBlocking( bool );
559 /** 569 /**
560 * @returns true if the packet capturer uses blocking IO calls. 570 * @returns true if the packet capturer uses blocking IO calls.
561 */ 571 */
562 bool blocking() const; 572 bool blocking() const;
563 /** 573 /**
564 * Close the packet capturer. This is automatically done in the destructor. 574 * Close the packet capturer. This is automatically done in the destructor.
565 */ 575 */
566 void close(); 576 void close();
567 /** 577 /**
568 * Close the output capture file. 578 * Close the output capture file.
569 */ 579 */
570 void closeDumpFile(); 580 void closeDumpFile();
571 /** 581 /**
572 * @returns the data link type. 582 * @returns the data link type.
573 * @see <pcap.h> for possible values. 583 * @see <pcap.h> for possible values.
574 */ 584 */
575 int dataLink() const; 585 int dataLink() const;
576 /** 586 /**
577 * Dump a packet to the output capture file. 587 * Dump a packet to the output capture file.
578 */ 588 */
579 void dump( OPacket* ); 589 void dump( OPacket* );
580 /** 590 /**
581 * @returns the file descriptor of the packet capturer. This is only useful, if 591 * @returns the file descriptor of the packet capturer. This is only useful, if
582 * not using the socket notifier, e.g. without an application object. 592 * not using the socket notifier, e.g. without an application object.
583 */ 593 */
584 int fileno() const; 594 int fileno() const;
585 /** 595 /**
586 * @returns the next @ref OPacket from the packet capturer. 596 * @returns the next @ref OPacket from the packet capturer.
587 * @note If blocking mode is true then this call might block. 597 * @note If blocking mode is true then this call might block.
588 */ 598 */
589 OPacket* next(); 599 OPacket* next();
590 /** 600 /**
591 * Open the packet capturer to capture packets in live-mode from @a interface. 601 * Open the packet capturer to capture packets in live-mode from @a interface.
592 */ 602 */
593 bool open( const QString& interface ); 603 bool open( const QString& interface );
594 /** 604 /**
595 * Open the packet capturer to capture packets in offline-mode from @a file. 605 * Open the packet capturer to capture packets in offline-mode from @a file.
596 */ 606 */
597 bool open( const QFile& file ); 607 bool open( const QFile& file );
598 /** 608 /**
599 * Open a prerecorded tcpdump compatible capture file for use with @ref dump() 609 * Open a prerecorded tcpdump compatible capture file for use with @ref dump()