diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-10-07 12:50:15 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-10-07 12:50:15 +0000 |
commit | fafaa38ae55cab486f2b929a131fe433ce180224 (patch) | |
tree | 25d7e19e357623b44714e2052228a7e05eb3ade7 /package/libipfix/extra | |
parent | 6f752c725a5b592dff8c17f0fe4e905de22b8112 (diff) | |
download | upstream-fafaa38ae55cab486f2b929a131fe433ce180224.tar.gz upstream-fafaa38ae55cab486f2b929a131fe433ce180224.tar.bz2 upstream-fafaa38ae55cab486f2b929a131fe433ce180224.zip |
move a few unmaintained packages from trunk to /packages
SVN-Revision: 33634
Diffstat (limited to 'package/libipfix/extra')
-rw-r--r-- | package/libipfix/extra/append-wprobe-ie.pl | 38 | ||||
-rw-r--r-- | package/libipfix/extra/wprobe-ie.txt | 14 |
2 files changed, 0 insertions, 52 deletions
diff --git a/package/libipfix/extra/append-wprobe-ie.pl b/package/libipfix/extra/append-wprobe-ie.pl deleted file mode 100644 index 8bb658bbb9..0000000000 --- a/package/libipfix/extra/append-wprobe-ie.pl +++ /dev/null @@ -1,38 +0,0 @@ -use strict; - -my @fields = ( - [ "_n", "UINT", " - Number of samples", 4 ], - [ "_s", "UINT", " - Sum of samples", 8 ], - [ "_ss", "UINT", " - Sum of squared samples", 8 ], -); - -my $file = $ARGV[0] or die "Syntax: $0 <file> <start>\n"; --f $file or die "File not found\n"; -my $start = $ARGV[1]; -$start =~ /^\d+$/ or die "Invalid start number"; -open FILE, "<$file" or die "Can't open file"; -while (<FILE>) { - /^(%?)(\w+),\s*(\w+),\s*(.+)$/ and do { - my $counter = $1; - my $rfield = $2; - my $nfield = $3; - my $descr = $4; - my @f; - if ($counter) { - @f = [ "", "UINT", "", 4]; - } else { - @f = @fields; - } - foreach my $f (@f) { - my $nr = $start++; - my $n = $f->[0]; - my $N = uc $n; - my $ftype = $f->[1]; - my $fdesc = $f->[2]; - my $size = $f->[3]; - print "$nr, IPFIX_FT_WPROBE_$rfield$N, $size, IPFIX_CODING_$ftype, \"$nfield$n\", \"$descr$fdesc\"\n"; - } - }; -} -close FILE; - diff --git a/package/libipfix/extra/wprobe-ie.txt b/package/libipfix/extra/wprobe-ie.txt deleted file mode 100644 index 26d64d2139..0000000000 --- a/package/libipfix/extra/wprobe-ie.txt +++ /dev/null @@ -1,14 +0,0 @@ -NOISE, global_noise, wprobe global noice floor -PHY_BUSY, global_phy_busy, wprobe global airtime total -PHY_RX, global_phy_rx, wprobe global airtime total from rx-frame -PHY_TX, global_phy_tx, wprobe global airtime total from tx-frame -RSSI, link_rssi, wprobe link received signal strength indication -SIGNAL, link_signal, wprobe link signal strength in dB -IEEE_RX_RATE, link_ieee_rx_rate, wprobe link IEEE 802.11 RX data rate -IEEE_TX_RATE, link_ieee_tx_rate, wprobe link IEEE 802.11 TX data rate -RETRANSMIT_200, link_retransmit_200, wprobe link total retransmissions per packet - <200 bytes -RETRANSMIT_400, link_retransmit_400, wprobe link total retransmissions per packet - <400 bytes -RETRANSMIT_800, link_retransmit_800, wprobe link total retransmissions per packet - <800 bytes -RETRANSMIT_1600, link_retransmit_1600, wprobe link total retransmissions per packet - >800 bytes -%FRAMES, global_frames, wprobe global number of 802.11 frames seen -%PROBEREQ, global_probereq, wprobe global number of 802.11 probe requests seen |