File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / libnet / include / libnet.h.in
Revision 1.1.1.3 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Mar 16 23:47:28 2021 UTC (3 years, 3 months ago) by misho
Branches: libnet, MAIN
CVS tags: v1_1_6p5, HEAD
arping 2.21

    1: /*
    2:  *  $Id: libnet.h.in,v 1.1.1.3 2021/03/16 23:47:28 misho Exp $
    3:  *
    4:  *  libnet.h - Network routine library header file
    5:  *
    6:  *  Copyright (c) 1998 - 2004 Mike D. Schiffman <mike@infonexus.com>
    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: #ifndef __LIBNET_H
   33: #define __LIBNET_H
   34: /**
   35:  * @file libnet.h
   36:  * @brief toplevel libnet header file
   37:  */
   38: 
   39: /** 
   40:  * @mainpage Libnet Packet Assembly Library
   41:  *
   42:  * @section intro Overview
   43:  *
   44:  * Libnet is a high-level API (toolkit) allowing the application programmer to 
   45:  * construct and inject network packets. It provides a portable and simplified 
   46:  * interface for low-level network packet shaping, handling and injection. 
   47:  * Libnet hides much of the tedium of packet creation from the application 
   48:  * programmer such as multiplexing, buffer management, arcane packet header 
   49:  * information, byte-ordering, OS-dependent issues, and much more. Libnet 
   50:  * features portable packet creation interfaces at the IP layer and link layer,
   51:  * as well as a host of supplementary and complementary functionality. Using 
   52:  * libnet, quick and simple packet assembly applications can be whipped up with
   53:  * little effort. With a bit more time, more complex programs can be written 
   54:  * (Traceroute and ping were easily rewritten using libnet and 
   55:  * <a href="www.tcpdump.org">libpcap</a>).
   56:  */ 
   57: 
   58: #ifdef __cplusplus
   59: extern "C" {
   60: #endif
   61: 
   62: #include <stdio.h>
   63: #include <string.h>
   64: #include <unistd.h>
   65: #include <fcntl.h>
   66: #include <signal.h>
   67: #include <stdlib.h>
   68: 
   69: #if !defined(__WIN32__)
   70: # include <sys/ioctl.h>
   71: #endif /* __WIN32__ */
   72: 
   73: #if defined(HAVE_SYS_SOCKIO_H) && !defined(SIOCGIFADDR)
   74: # include <sys/sockio.h>
   75: #endif
   76: 
   77: #include <sys/stat.h>
   78: #include <sys/types.h>
   79: #include <ctype.h>
   80: 
   81: #if !defined(__WIN32__)
   82: # include <sys/socket.h>
   83: # include <net/if.h>
   84: # if defined (__FreeBSD__) || defined (__DragonFly__)
   85: #  include <netinet/in.h>
   86: # endif
   87: #else /* __WIN32__ */
   88: # if (__CYGWIN__)
   89: #  include <sys/socket.h>
   90: # endif
   91: # include <ws2tcpip.h>
   92: # include <windows.h>
   93: # include <winsock2.h>
   94: # include <win32/in_systm.h>
   95: #endif /* __WIN32__ */
   96: 
   97: #if !(__linux__) && !(__WIN32__) && !(__APPLE__) && !(__CYGWIN__) && !(__GNU__)
   98: #else   /* __linux__ */
   99: # if (HAVE_NET_ETHERNET_H)
  100: #  include <net/ethernet.h>
  101: # endif  /* HAVE_NET_ETHERNET_H */
  102: #endif  /* __linux__ */
  103: 
  104: #if !defined(__WIN32__)
  105: # include <arpa/inet.h>
  106: # include <sys/time.h>
  107: # include <netdb.h>
  108: #endif /* __WIN32__ */
  109: 
  110: #include <errno.h>
  111: #include <stdarg.h>
  112: 
  113: #define LIBNET_VERSION  "@PACKAGE_VERSION@"
  114: 
  115: #define @ENDIANESS@ 1
  116: 
  117: #include "./libnet/libnet-types.h"
  118: #include "./libnet/libnet-macros.h"
  119: #include "./libnet/libnet-headers.h"
  120: #include "./libnet/libnet-structures.h"
  121: #include "./libnet/libnet-asn1.h"
  122: #include "./libnet/libnet-functions.h"
  123: 
  124: #ifdef __cplusplus
  125: }
  126: #endif
  127: 
  128: #endif  /* __LIBNET_H */
  129: 
  130: /* EOF */

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>