File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / libnet / include / libnet.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Sep 27 11:11:38 2023 UTC (9 months, 2 weeks ago) by misho
Branches: libnet, MAIN
CVS tags: v1_2p1, HEAD
Version 1.2p1

    1: /*
    2:  *  libnet
    3:  *  libnet.h - Network routine library header file
    4:  *  include/libnet.h.  Generated from libnet.h.in by configure.
    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: /**
   36:  * @file libnet.h
   37:  * @brief Top-level libnet header file
   38:  * 
   39:  * @details This section doesn't contain any details about libnet.h.
   40:  *
   41:  * For details, see libnet-functions.h and libnet-macros.h
   42:  */
   43: 
   44: #ifdef __cplusplus
   45: extern "C" {
   46: #endif
   47: 
   48:  /*
   49:  * TODO move the stuff we ALWAYS need out of the DOXYGEN ifndef block
   50:  * and minimize their redundancies (see doc/TODO)
   51:  */
   52: #ifndef DOXYGEN_SHOULD_SKIP_THIS // mess
   53: #include <stdio.h>
   54: #include <string.h>
   55: #include <fcntl.h>
   56: #include <signal.h>
   57: #include <stdlib.h>
   58: 
   59: #include <sys/stat.h>
   60: #include <sys/types.h>
   61: #include <ctype.h>
   62: 
   63: #include <errno.h>
   64: #include <stdarg.h>
   65: 
   66: #if !defined(_MSC_VER)
   67: #include <unistd.h>
   68: #endif
   69: 
   70: #if defined(HAVE_SYS_SOCKIO_H) && !defined(SIOCGIFADDR)
   71: #include <sys/sockio.h>
   72: #endif
   73: 
   74: #if !defined(__WIN32__)
   75: #include <sys/ioctl.h>
   76: #include <sys/socket.h>
   77: #include <net/if.h>
   78: #include <arpa/inet.h>
   79: #include <sys/time.h>
   80: #include <netdb.h>
   81: #else /* __WIN32__ */
   82: #if (__CYGWIN__)
   83: #include <sys/socket.h>
   84: #endif
   85: #include <stdint.h>
   86: #include <ws2tcpip.h>
   87: #include <windows.h>
   88: #include <winsock2.h>
   89: #endif /* __WIN32__ */
   90: 
   91: #if (HAVE_NET_ETHERNET_H)
   92: #include <net/ethernet.h>
   93: #endif  /* HAVE_NET_ETHERNET_H */
   94: 
   95: #define LIBNET_VERSION  "1.2"
   96: 
   97: #define LIBNET_LIL_ENDIAN 1
   98: 
   99: #ifndef LIBNET_API
  100: #define LIBNET_API
  101: #endif
  102: #endif /* DOXYGEN_SHOULD_SKIP_THIS */
  103: 
  104: #include "./libnet/libnet-types.h"
  105: #include "./libnet/libnet-macros.h"
  106: #include "./libnet/libnet-headers.h"
  107: #include "./libnet/libnet-structures.h"
  108: #include "./libnet/libnet-asn1.h"
  109: #include "./libnet/libnet-functions.h"
  110: 
  111: #ifdef __cplusplus
  112: }
  113: #endif
  114: 
  115: #endif  /* __LIBNET_H */
  116: 

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