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
@@ -0,0 +1,264 @@
|
|
1
|
+
/*-
|
2
|
+
* Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
|
3
|
+
* The Regents of the University of California. All rights reserved.
|
4
|
+
*
|
5
|
+
* This code is derived from the Stanford/CMU enet packet filter,
|
6
|
+
* (net/enet.c) distributed as part of 4.3BSD, and code contributed
|
7
|
+
* to Berkeley by Steven McCanne and Van Jacobson both of Lawrence
|
8
|
+
* Berkeley Laboratory.
|
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
|
+
* 3. All advertising materials mentioning features or use of this software
|
19
|
+
* must display the following acknowledgement:
|
20
|
+
* This product includes software developed by the University of
|
21
|
+
* California, Berkeley and its contributors.
|
22
|
+
* 4. Neither the name of the University nor the names of its contributors
|
23
|
+
* may be used to endorse or promote products derived from this software
|
24
|
+
* without specific prior written permission.
|
25
|
+
*
|
26
|
+
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
27
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
28
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
29
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
30
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
31
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
32
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
33
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
34
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
35
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
36
|
+
* SUCH DAMAGE.
|
37
|
+
*
|
38
|
+
* @(#)bpf.h 7.1 (Berkeley) 5/7/91
|
39
|
+
*
|
40
|
+
* @(#) $Header: /usr/local/CVS/libnet/include/bpf.h,v 1.1.1.1 2003/06/26 21:55:10 route Exp $ (LBL)
|
41
|
+
*/
|
42
|
+
|
43
|
+
#ifndef BPF_MAJOR_VERSION
|
44
|
+
|
45
|
+
/* BSD style release date */
|
46
|
+
#define BPF_RELEASE 199606
|
47
|
+
|
48
|
+
typedef int bpf_int32;
|
49
|
+
typedef u_int bpf_u_int32;
|
50
|
+
|
51
|
+
/*
|
52
|
+
* Alignment macros. BPF_WORDALIGN rounds up to the next
|
53
|
+
* even multiple of BPF_ALIGNMENT.
|
54
|
+
*/
|
55
|
+
#define BPF_ALIGNMENT sizeof(bpf_int32)
|
56
|
+
#define BPF_WORDALIGN(x) (((x)+(BPF_ALIGNMENT-1))&~(BPF_ALIGNMENT-1))
|
57
|
+
|
58
|
+
#define BPF_MAXINSNS 512
|
59
|
+
#define BPF_MAXBUFSIZE 0x8000
|
60
|
+
#define BPF_MINBUFSIZE 32
|
61
|
+
|
62
|
+
/*
|
63
|
+
* Structure for BIOCSETF.
|
64
|
+
*/
|
65
|
+
struct bpf_program {
|
66
|
+
u_int bf_len;
|
67
|
+
struct bpf_insn *bf_insns;
|
68
|
+
};
|
69
|
+
|
70
|
+
/*
|
71
|
+
* Struct returned by BIOCGSTATS.
|
72
|
+
*/
|
73
|
+
struct bpf_stat {
|
74
|
+
u_int bs_recv; /* number of packets received */
|
75
|
+
u_int bs_drop; /* number of packets dropped */
|
76
|
+
};
|
77
|
+
|
78
|
+
/*
|
79
|
+
* Struct return by BIOCVERSION. This represents the version number of
|
80
|
+
* the filter language described by the instruction encodings below.
|
81
|
+
* bpf understands a program iff kernel_major == filter_major &&
|
82
|
+
* kernel_minor >= filter_minor, that is, if the value returned by the
|
83
|
+
* running kernel has the same major number and a minor number equal
|
84
|
+
* equal to or less than the filter being downloaded. Otherwise, the
|
85
|
+
* results are undefined, meaning an error may be returned or packets
|
86
|
+
* may be accepted haphazardly.
|
87
|
+
* It has nothing to do with the source code version.
|
88
|
+
*/
|
89
|
+
struct bpf_version {
|
90
|
+
u_short bv_major;
|
91
|
+
u_short bv_minor;
|
92
|
+
};
|
93
|
+
/* Current version number of filter architecture. */
|
94
|
+
#define BPF_MAJOR_VERSION 1
|
95
|
+
#define BPF_MINOR_VERSION 1
|
96
|
+
|
97
|
+
/*
|
98
|
+
* BPF ioctls
|
99
|
+
*
|
100
|
+
* The first set is for compatibility with Sun's pcc style
|
101
|
+
* header files. If your using gcc, we assume that you
|
102
|
+
* have run fixincludes so the latter set should work.
|
103
|
+
*/
|
104
|
+
#if (defined(sun) || defined(ibm032)) && !defined(__GNUC__)
|
105
|
+
#define BIOCGBLEN _IOR(B,102, u_int)
|
106
|
+
#define BIOCSBLEN _IOWR(B,102, u_int)
|
107
|
+
#define BIOCSETF _IOW(B,103, struct bpf_program)
|
108
|
+
#define BIOCFLUSH _IO(B,104)
|
109
|
+
#define BIOCPROMISC _IO(B,105)
|
110
|
+
#define BIOCGDLT _IOR(B,106, u_int)
|
111
|
+
#define BIOCGETIF _IOR(B,107, struct ifreq)
|
112
|
+
#define BIOCSETIF _IOW(B,108, struct ifreq)
|
113
|
+
#define BIOCSRTIMEOUT _IOW(B,109, struct timeval)
|
114
|
+
#define BIOCGRTIMEOUT _IOR(B,110, struct timeval)
|
115
|
+
#define BIOCGSTATS _IOR(B,111, struct bpf_stat)
|
116
|
+
#define BIOCIMMEDIATE _IOW(B,112, u_int)
|
117
|
+
#define BIOCVERSION _IOR(B,113, struct bpf_version)
|
118
|
+
#define BIOCSTCPF _IOW(B,114, struct bpf_program)
|
119
|
+
#define BIOCSUDPF _IOW(B,115, struct bpf_program)
|
120
|
+
#else
|
121
|
+
#define BIOCGBLEN _IOR('B',102, u_int)
|
122
|
+
#define BIOCSBLEN _IOWR('B',102, u_int)
|
123
|
+
#define BIOCSETF _IOW('B',103, struct bpf_program)
|
124
|
+
#define BIOCFLUSH _IO('B',104)
|
125
|
+
#define BIOCPROMISC _IO('B',105)
|
126
|
+
#define BIOCGDLT _IOR('B',106, u_int)
|
127
|
+
#define BIOCGETIF _IOR('B',107, struct ifreq)
|
128
|
+
#define BIOCSETIF _IOW('B',108, struct ifreq)
|
129
|
+
#define BIOCSRTIMEOUT _IOW('B',109, struct timeval)
|
130
|
+
#define BIOCGRTIMEOUT _IOR('B',110, struct timeval)
|
131
|
+
#define BIOCGSTATS _IOR('B',111, struct bpf_stat)
|
132
|
+
#define BIOCIMMEDIATE _IOW('B',112, u_int)
|
133
|
+
#define BIOCVERSION _IOR('B',113, struct bpf_version)
|
134
|
+
#define BIOCSTCPF _IOW('B',114, struct bpf_program)
|
135
|
+
#define BIOCSUDPF _IOW('B',115, struct bpf_program)
|
136
|
+
#endif
|
137
|
+
|
138
|
+
/*
|
139
|
+
* Structure prepended to each packet.
|
140
|
+
*/
|
141
|
+
struct bpf_hdr {
|
142
|
+
struct timeval bh_tstamp; /* time stamp */
|
143
|
+
bpf_u_int32 bh_caplen; /* length of captured portion */
|
144
|
+
bpf_u_int32 bh_datalen; /* original length of packet */
|
145
|
+
u_short bh_hdrlen; /* length of bpf header (this struct
|
146
|
+
plus alignment padding) */
|
147
|
+
};
|
148
|
+
/*
|
149
|
+
* Because the structure above is not a multiple of 4 bytes, some compilers
|
150
|
+
* will insist on inserting padding; hence, sizeof(struct bpf_hdr) won't work.
|
151
|
+
* Only the kernel needs to know about it; applications use bh_hdrlen.
|
152
|
+
*/
|
153
|
+
#ifdef KERNEL
|
154
|
+
#define SIZEOF_BPF_HDR 18
|
155
|
+
#endif
|
156
|
+
|
157
|
+
/*
|
158
|
+
* Data-link level type codes.
|
159
|
+
*/
|
160
|
+
#define DLT_NULL 0 /* no link-layer encapsulation */
|
161
|
+
#define DLT_EN10MB 1 /* Ethernet (10Mb) */
|
162
|
+
#define DLT_EN3MB 2 /* Experimental Ethernet (3Mb) */
|
163
|
+
#define DLT_AX25 3 /* Amateur Radio AX.25 */
|
164
|
+
#define DLT_PRONET 4 /* Proteon ProNET Token Ring */
|
165
|
+
#define DLT_CHAOS 5 /* Chaos */
|
166
|
+
#define DLT_IEEE802 6 /* IEEE 802 Networks */
|
167
|
+
#define DLT_ARCNET 7 /* ARCNET */
|
168
|
+
#define DLT_SLIP 8 /* Serial Line IP */
|
169
|
+
#define DLT_PPP 9 /* Point-to-point Protocol */
|
170
|
+
#define DLT_FDDI 10 /* FDDI */
|
171
|
+
#define DLT_ATM_RFC1483 11 /* LLC/SNAP encapsulated atm */
|
172
|
+
#define DLT_RAW 12 /* raw IP */
|
173
|
+
#define DLT_SLIP_BSDOS 13 /* BSD/OS Serial Line IP */
|
174
|
+
#define DLT_PPP_BSDOS 14 /* BSD/OS Point-to-point Protocol */
|
175
|
+
|
176
|
+
/*
|
177
|
+
* The instruction encondings.
|
178
|
+
*/
|
179
|
+
/* instruction classes */
|
180
|
+
#define BPF_CLASS(code) ((code) & 0x07)
|
181
|
+
#define BPF_LD 0x00
|
182
|
+
#define BPF_LDX 0x01
|
183
|
+
#define BPF_ST 0x02
|
184
|
+
#define BPF_STX 0x03
|
185
|
+
#define BPF_ALU 0x04
|
186
|
+
#define BPF_JMP 0x05
|
187
|
+
#define BPF_RET 0x06
|
188
|
+
#define BPF_MISC 0x07
|
189
|
+
|
190
|
+
/* ld/ldx fields */
|
191
|
+
#define BPF_SIZE(code) ((code) & 0x18)
|
192
|
+
#define BPF_W 0x00
|
193
|
+
#define BPF_H 0x08
|
194
|
+
#define BPF_B 0x10
|
195
|
+
#define BPF_MODE(code) ((code) & 0xe0)
|
196
|
+
#define BPF_IMM 0x00
|
197
|
+
#define BPF_ABS 0x20
|
198
|
+
#define BPF_IND 0x40
|
199
|
+
#define BPF_MEM 0x60
|
200
|
+
#define BPF_LEN 0x80
|
201
|
+
#define BPF_MSH 0xa0
|
202
|
+
|
203
|
+
/* alu/jmp fields */
|
204
|
+
#define BPF_OP(code) ((code) & 0xf0)
|
205
|
+
#define BPF_ADD 0x00
|
206
|
+
#define BPF_SUB 0x10
|
207
|
+
#define BPF_MUL 0x20
|
208
|
+
#define BPF_DIV 0x30
|
209
|
+
#define BPF_OR 0x40
|
210
|
+
#define BPF_AND 0x50
|
211
|
+
#define BPF_LSH 0x60
|
212
|
+
#define BPF_RSH 0x70
|
213
|
+
#define BPF_NEG 0x80
|
214
|
+
#define BPF_JA 0x00
|
215
|
+
#define BPF_JEQ 0x10
|
216
|
+
#define BPF_JGT 0x20
|
217
|
+
#define BPF_JGE 0x30
|
218
|
+
#define BPF_JSET 0x40
|
219
|
+
#define BPF_SRC(code) ((code) & 0x08)
|
220
|
+
#define BPF_K 0x00
|
221
|
+
#define BPF_X 0x08
|
222
|
+
|
223
|
+
/* ret - BPF_K and BPF_X also apply */
|
224
|
+
#define BPF_RVAL(code) ((code) & 0x18)
|
225
|
+
#define BPF_A 0x10
|
226
|
+
|
227
|
+
/* misc */
|
228
|
+
#define BPF_MISCOP(code) ((code) & 0xf8)
|
229
|
+
#define BPF_TAX 0x00
|
230
|
+
#define BPF_TXA 0x80
|
231
|
+
|
232
|
+
/*
|
233
|
+
* The instruction data structure.
|
234
|
+
*/
|
235
|
+
struct bpf_insn {
|
236
|
+
u_short code;
|
237
|
+
u_char jt;
|
238
|
+
u_char jf;
|
239
|
+
bpf_int32 k;
|
240
|
+
};
|
241
|
+
|
242
|
+
/*
|
243
|
+
* Macros for insn array initializers.
|
244
|
+
*/
|
245
|
+
#define BPF_STMT(code, k) { (u_short)(code), 0, 0, k }
|
246
|
+
#define BPF_JUMP(code, k, jt, jf) { (u_short)(code), jt, jf, k }
|
247
|
+
|
248
|
+
#ifdef KERNEL
|
249
|
+
extern u_int bpf_filter();
|
250
|
+
extern void bpfattach();
|
251
|
+
extern void bpf_tap();
|
252
|
+
extern void bpf_mtap();
|
253
|
+
#else
|
254
|
+
#if __STDC__
|
255
|
+
extern u_int bpf_filter(struct bpf_insn *, u_char *, u_int, u_int);
|
256
|
+
#endif
|
257
|
+
#endif
|
258
|
+
|
259
|
+
/*
|
260
|
+
* Number of scratch memory words (for BPF_LD|BPF_MEM and BPF_ST).
|
261
|
+
*/
|
262
|
+
#define BPF_MEMWORDS 16
|
263
|
+
|
264
|
+
#endif
|
@@ -0,0 +1,118 @@
|
|
1
|
+
/* include/config.h.in. Generated from configure.in by autoheader. */
|
2
|
+
/*
|
3
|
+
dnl $Id: config.h.in,v 1.11 2004/01/16 10:13:40 mike Exp $
|
4
|
+
dnl
|
5
|
+
dnl Libnet autoconfiguration acconfig.h file
|
6
|
+
dnl Copyright (c) 1998 - 2004 Mike D. Schiffman <mike@infonexus.com>
|
7
|
+
dnl All rights reserved.
|
8
|
+
dnl
|
9
|
+
dnl Process this file with autoheader to produce a config.h file.
|
10
|
+
dnl
|
11
|
+
*/
|
12
|
+
|
13
|
+
#undef LIBNET_BSDISH_OS
|
14
|
+
#undef LIBNET_BSD_BYTE_SWAP
|
15
|
+
#undef DLPI_DEV_PREFIX
|
16
|
+
#undef HAVE_DEV_DLPI
|
17
|
+
#undef HAVE_SOLARIS
|
18
|
+
#undef HAVE_SOLARIS_IPV6
|
19
|
+
#undef HAVE_HPUX11
|
20
|
+
#undef HAVE_SOCKADDR_SA_LEN
|
21
|
+
#undef HAVE_DLPI
|
22
|
+
#undef HAVE_PACKET_SOCKET
|
23
|
+
#undef HAVE_STRUCT_IP_CSUM
|
24
|
+
#undef HAVE_LIB_PCAP
|
25
|
+
#undef LBL_ALIGN
|
26
|
+
#undef STUPID_SOLARIS_CHECKSUM_BUG
|
27
|
+
#undef _BSD_SOURCE
|
28
|
+
#undef __BSD_SOURCE
|
29
|
+
#undef __FAVOR_BSD
|
30
|
+
#undef LIBNET_BIG_ENDIAN
|
31
|
+
#undef LIBNET_LIL_ENDIAN
|
32
|
+
#undef NO_SNPRINTF
|
33
|
+
|
34
|
+
|
35
|
+
/*
|
36
|
+
dnl EOF
|
37
|
+
*/
|
38
|
+
|
39
|
+
/* Define to 1 if you have the <inttypes.h> header file. */
|
40
|
+
#undef HAVE_INTTYPES_H
|
41
|
+
|
42
|
+
/* Define to 1 if you have the `nsl' library (-lnsl). */
|
43
|
+
#undef HAVE_LIBNSL
|
44
|
+
|
45
|
+
/* Define to 1 if you have the `packet' library (-lpacket). */
|
46
|
+
#undef HAVE_LIBPACKET
|
47
|
+
|
48
|
+
/* Define to 1 if you have the `socket' library (-lsocket). */
|
49
|
+
#undef HAVE_LIBSOCKET
|
50
|
+
|
51
|
+
/* Define to 1 if you have the `wpcap' library (-lwpcap). */
|
52
|
+
#undef HAVE_LIBWPCAP
|
53
|
+
|
54
|
+
/* Define if you have the Linux /proc filesystem. */
|
55
|
+
#undef HAVE_LINUX_PROCFS
|
56
|
+
|
57
|
+
/* Define to 1 if you have the <memory.h> header file. */
|
58
|
+
#undef HAVE_MEMORY_H
|
59
|
+
|
60
|
+
/* Define to 1 if you have the <net/ethernet.h> header file. */
|
61
|
+
#undef HAVE_NET_ETHERNET_H
|
62
|
+
|
63
|
+
/* Define to 1 if you have the <stdint.h> header file. */
|
64
|
+
#undef HAVE_STDINT_H
|
65
|
+
|
66
|
+
/* Define to 1 if you have the <stdlib.h> header file. */
|
67
|
+
#undef HAVE_STDLIB_H
|
68
|
+
|
69
|
+
/* Define to 1 if you have the `strerror' function. */
|
70
|
+
#undef HAVE_STRERROR
|
71
|
+
|
72
|
+
/* Define to 1 if you have the <strings.h> header file. */
|
73
|
+
#undef HAVE_STRINGS_H
|
74
|
+
|
75
|
+
/* Define to 1 if you have the <string.h> header file. */
|
76
|
+
#undef HAVE_STRING_H
|
77
|
+
|
78
|
+
/* Define to 1 if you have the <sys/bufmod.h> header file. */
|
79
|
+
#undef HAVE_SYS_BUFMOD_H
|
80
|
+
|
81
|
+
/* Define to 1 if you have the <sys/dlpi_ext.h> header file. */
|
82
|
+
#undef HAVE_SYS_DLPI_EXT_H
|
83
|
+
|
84
|
+
/* Define to 1 if you have the <sys/sockio.h> header file. */
|
85
|
+
#undef HAVE_SYS_SOCKIO_H
|
86
|
+
|
87
|
+
/* Define to 1 if you have the <sys/stat.h> header file. */
|
88
|
+
#undef HAVE_SYS_STAT_H
|
89
|
+
|
90
|
+
/* Define to 1 if you have the <sys/types.h> header file. */
|
91
|
+
#undef HAVE_SYS_TYPES_H
|
92
|
+
|
93
|
+
/* Define to 1 if you have the <unistd.h> header file. */
|
94
|
+
#undef HAVE_UNISTD_H
|
95
|
+
|
96
|
+
/* Name of package */
|
97
|
+
#undef PACKAGE
|
98
|
+
|
99
|
+
/* Define to the address where bug reports for this package should be sent. */
|
100
|
+
#undef PACKAGE_BUGREPORT
|
101
|
+
|
102
|
+
/* Define to the full name of this package. */
|
103
|
+
#undef PACKAGE_NAME
|
104
|
+
|
105
|
+
/* Define to the full name and version of this package. */
|
106
|
+
#undef PACKAGE_STRING
|
107
|
+
|
108
|
+
/* Define to the one symbol short name of this package. */
|
109
|
+
#undef PACKAGE_TARNAME
|
110
|
+
|
111
|
+
/* Define to the version of this package. */
|
112
|
+
#undef PACKAGE_VERSION
|
113
|
+
|
114
|
+
/* Define to 1 if you have the ANSI C header files. */
|
115
|
+
#undef STDC_HEADERS
|
116
|
+
|
117
|
+
/* Version number of package */
|
118
|
+
#undef VERSION
|
@@ -0,0 +1,43 @@
|
|
1
|
+
/* @(#) $Header: /usr/local/CVS/libnet/include/gnuc.h,v 1.1.1.1 2003/06/26 21:55:10 route Exp $ (LBL) */
|
2
|
+
|
3
|
+
/* Define __P() macro, if necessary */
|
4
|
+
#ifndef __P
|
5
|
+
#if __STDC__
|
6
|
+
#define __P(protos) protos
|
7
|
+
#else
|
8
|
+
#define __P(protos) ()
|
9
|
+
#endif
|
10
|
+
#endif
|
11
|
+
|
12
|
+
/* inline foo */
|
13
|
+
#ifdef __GNUC__
|
14
|
+
#define inline __inline
|
15
|
+
#else
|
16
|
+
#define inline
|
17
|
+
#endif
|
18
|
+
|
19
|
+
/*
|
20
|
+
* Handle new and old "dead" routine prototypes
|
21
|
+
*
|
22
|
+
* For example:
|
23
|
+
*
|
24
|
+
* __dead void foo(void) __attribute__((volatile));
|
25
|
+
*
|
26
|
+
*/
|
27
|
+
#ifdef __GNUC__
|
28
|
+
#ifndef __dead
|
29
|
+
#define __dead volatile
|
30
|
+
#endif
|
31
|
+
#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
|
32
|
+
#ifndef __attribute__
|
33
|
+
#define __attribute__(args)
|
34
|
+
#endif
|
35
|
+
#endif
|
36
|
+
#else
|
37
|
+
#ifndef __dead
|
38
|
+
#define __dead
|
39
|
+
#endif
|
40
|
+
#ifndef __attribute__
|
41
|
+
#define __attribute__(args)
|
42
|
+
#endif
|
43
|
+
#endif
|
@@ -0,0 +1,52 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 1997
|
3
|
+
* The Regents of the University of California. All rights reserved.
|
4
|
+
*
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
6
|
+
* modification, are permitted provided that: (1) source code distributions
|
7
|
+
* retain the above copyright notice and this paragraph in its entirety, (2)
|
8
|
+
* distributions including binary code include the above copyright notice and
|
9
|
+
* this paragraph in its entirety in the documentation or other materials
|
10
|
+
* provided with the distribution, and (3) all advertising materials mentioning
|
11
|
+
* features or use of this software display the following acknowledgement:
|
12
|
+
* ``This product includes software developed by the University of California,
|
13
|
+
* Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
|
14
|
+
* the University nor the names of its contributors may be used to endorse
|
15
|
+
* or promote products derived from this software without specific prior
|
16
|
+
* written permission.
|
17
|
+
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
|
18
|
+
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
|
19
|
+
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
20
|
+
*
|
21
|
+
*/
|
22
|
+
|
23
|
+
struct ifaddrlist
|
24
|
+
{
|
25
|
+
#if (HAVE_SOLARIS || HAVE_HPUX11)
|
26
|
+
u_int addr;
|
27
|
+
#else
|
28
|
+
u_int32_t addr;
|
29
|
+
#endif
|
30
|
+
int8_t *device;
|
31
|
+
};
|
32
|
+
|
33
|
+
struct libnet_ifaddr_list
|
34
|
+
{
|
35
|
+
u_int32_t addr;
|
36
|
+
int8_t *device;
|
37
|
+
};
|
38
|
+
|
39
|
+
int
|
40
|
+
ifaddrlist(
|
41
|
+
struct ifaddrlist **,
|
42
|
+
int8_t *
|
43
|
+
);
|
44
|
+
|
45
|
+
|
46
|
+
int
|
47
|
+
set_up_interface(
|
48
|
+
struct sockaddr_in **,
|
49
|
+
u_int8_t **
|
50
|
+
);
|
51
|
+
|
52
|
+
/* EOF */
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/Makefile.am/1.2/Sat Oct 18 17:20:03 2003//
|
2
|
+
/libnet-types.h/1.3/Sat Jan 3 20:31:00 2004//
|
3
|
+
/libnet-asn1.h/1.3/Sat Jan 17 07:51:19 2004//
|
4
|
+
/libnet-macros.h/1.6/Mon Mar 1 20:26:12 2004//
|
5
|
+
/Makefile.in/1.14/Thu Mar 11 18:50:20 2004//
|
6
|
+
/libnet-headers.h/1.14/Thu Mar 11 18:50:20 2004//
|
7
|
+
/libnet-structures.h/1.18/Tue Mar 16 18:40:58 2004//
|
8
|
+
/libnet-functions.h/1.42/Thu Mar 25 18:50:48 2004//
|
9
|
+
D
|
@@ -0,0 +1 @@
|
|
1
|
+
/usr/local/CVS/libnet/include/libnet
|
@@ -0,0 +1 @@
|
|
1
|
+
mike@66.234.207.232:/usr/local/CVS
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# $Id: Makefile.am,v 1.2 2003/10/18 17:20:03 mike Exp $
|
2
|
+
|
3
|
+
include $(top_srcdir)/Makefile.am.common
|
4
|
+
|
5
|
+
libnetincludedir = $(includedir)/libnet
|
6
|
+
|
7
|
+
libnetinclude_HEADERS = libnet-asn1.h \
|
8
|
+
libnet-functions.h \
|
9
|
+
libnet-headers.h \
|
10
|
+
libnet-macros.h \
|
11
|
+
libnet-structures.h \
|
12
|
+
libnet-types.h
|