remove extra file accepted/tizen/20130503.230851 accepted/tizen/20130520.094352 submit/tizen/20130503.233113 submit/tizen/20130509.184519 submit/tizen/20130517.024222
authorAnas Nashif <anas.nashif@intel.com>
Fri, 23 Nov 2012 20:31:07 +0000 (12:31 -0800)
committerAnas Nashif <anas.nashif@intel.com>
Fri, 23 Nov 2012 20:31:07 +0000 (12:31 -0800)
packaging/tcpdump-qeth [deleted file]
packaging/tcpdump.spec

diff --git a/packaging/tcpdump-qeth b/packaging/tcpdump-qeth
deleted file mode 100644 (file)
index b5e9b89..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-#!/usr/bin/perl
-# (C)2002 by IBM Corporation, published under terms of the GPL V2
-# Author: Holger Smolinski <smolinsk@de.ibm.com>
-# this file is a wrapper around tcpdump, which provides the capability
-# for debugging qeth and/or HiperSocket(TM) network interfaces under
-# Linux for S/390 and zSeries. tcpdump Syntax is preserved.
-# Bugs: When the input pipe ends the process is not stopped.
-
-use Getopt::Std;
-
-my $incmd,$outcmd;
-
-getopts ("adeflnNOpqRStuvxXc:C:F:i:m:r:s:T:w:E:",\%options);
-
-# Check which options to replace for the reader process 
-if ( defined($options{'r'}) ) {
-  $incmd = "cat $options{'r'}";
-  $filter_out = 1;
-} else {
-  $incmd = "tcpdump -l -w -";
-  $filter_out = 0;
-  if ( defined($options{'i'}) ) {
-    $incmd .= " -i ".$options{'i'};
-    delete $options{'i'}; # remove -i option from option list
-  }
-  foreach $key (@ARGV) {
-    $incmd .= " $key";
-  }
-}
-
-$outcmd = "tcpdump -r -";
-# Rebuild arglist for the writer process
-delete $options{'r'}; # remove -r option from option list
-foreach $key (keys %options) {
-  if ((index "adeflnNOpqRStuvxX",$key) >= 0 ) {
-    $outcmd .= " -$key";
-  } else {
-    $outcmd .= " -$key $options{$key}";
-  }
-  if ( $filter_out == 1 ) {
-    foreach $key (@ARGV) {
-      $outcmd .= " $key";
-    }
-  }
-} 
-
-open READER,"$incmd|" or die "Cannot spawn reader command $incmd";
-open WRITER,"|$outcmd" or die "Cannot spawn writer command $outcmd";
-
-sysread READER,$filehdr,24 or die "Cannot read file header";
-($magic,$version_major,$version_minor,$thiszone,$sigfigs,$snaplen,$linktype) = 
-  unpack("ISSIIII",$filehdr);
-$snaplen += 14;
-$filehdr = pack ("ISSIIII",($magic,$version_major,$version_minor,$thiszone,$sigfigs,$snaplen,$linktype));
-syswrite WRITER,$filehdr,24;
-
-$etherheaderip6 = pack ("IIIS",(0,0,0,0x8dd));
-$etherheaderip4 = pack ("IIIS",(0,0,0,0x800));
-
-while ( 1 ) {
-  $hdrd = 0;
-  do {$hdrd += sysread READER, $pkthdr, 16-$hdrd, $hdrd; } while ($hdrd < 16);
-  ($seconds,$usecs,$caplen,$len) = unpack ("IIII",$pkthdr);
-  $hdrd = 0;
-  do {$hdrd += sysread READER, $packet,$caplen-$hdrd, $hdrd; } while ($hdrd < $caplen);
-  $paktype = unpack("C",$packet);
-  if ( $paktype & 0xf0 == 0x60 ) {
-    $caplen += 14;
-    $len += 14;
-    $header = $etehrheaderip6;
-  } elsif ($paktype >= 0x45 && $paktype <= 0x4f ) {
-    $caplen += 14;
-    $len += 14;
-    $header = $etherheaderip4;
-  } else {
-    $header = "";
-  }    
-  $pkthdr = pack ("IIII",($seconds,$usecs,$caplen,$len));
-  syswrite WRITER,"$pkthdr$header$packet",16+$caplen;
-}
index 1d77929..a6fae96 100644 (file)
@@ -6,9 +6,8 @@ Summary:        A Packet Sniffer
 Url:            http://www.tcpdump.org/
 Group:          Productivity/Networking/Diagnostic
 Source:         http://www.tcpdump.org/release/%{name}-%{version}.tar.gz
-Source1:        tcpdump-qeth
 BuildRequires:  libpcap-devel
-BuildRequires:  libsmi-devel
+#BuildRequires:  libsmi-devel
 BuildRequires:  openssl-devel
 
 %description