1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
/*
** autoinc.h
** Autotools-happy standard library include file
**
** ------------------------------------------------------------------------
** Copyright (C) 2005-2018 Carnegie Mellon University. All Rights Reserved.
** ------------------------------------------------------------------------
** Authors: Brian Trammell
** ------------------------------------------------------------------------
** @OPENSOURCE_LICENSE_START@
** libfixbuf 2.0
**
** Copyright 2018 Carnegie Mellon University. All Rights Reserved.
**
** NO WARRANTY. THIS CARNEGIE MELLON UNIVERSITY AND SOFTWARE
** ENGINEERING INSTITUTE MATERIAL IS FURNISHED ON AN "AS-IS"
** BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY KIND,
** EITHER EXPRESSED OR IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT
** LIMITED TO, WARRANTY OF FITNESS FOR PURPOSE OR MERCHANTABILITY,
** EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF THE
** MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT MAKE ANY WARRANTY OF
** ANY KIND WITH RESPECT TO FREEDOM FROM PATENT, TRADEMARK, OR
** COPYRIGHT INFRINGEMENT.
**
** Released under a GNU-Lesser GPL 3.0-style license, please see
** LICENSE.txt or contact permission@sei.cmu.edu for full terms.
**
** [DISTRIBUTION STATEMENT A] This material has been approved for
** public release and unlimited distribution. Please see Copyright
** notice for non-US Government use and distribution.
**
** Carnegie Mellon(R) and CERT(R) are registered in the U.S. Patent
** and Trademark Office by Carnegie Mellon University.
**
** DM18-0325
** @OPENSOURCE_LICENSE_END@
** ------------------------------------------------------------------------
*/
/** @file
* Convenience include file for libfixbuf.
*/
#ifndef _FIX_AUTOINC_H_
#define _FIX_AUTOINC_H_
#ifdef _FIXBUF_SOURCE_
#ifdef HAVE_CONFIG_H
#include <fixbuf/config.h>
#endif
#endif
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <stdarg.h>
#include <inttypes.h>
#include <ctype.h>
#include <errno.h>
#include <signal.h>
#include <time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <glib.h>
#include <glib/gstdio.h>
#if HAVE_OPENSSL
#include <openssl/bio.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#include <openssl/pkcs12.h>
#include <openssl/x509v3.h>
#endif
#if FB_ENABLE_SCTP
#if FB_INCLUDE_SCTP_H
#include <netinet/sctp.h>
#endif
#if FB_INCLUDE_SCTP_UIO_H
#include <netinet/sctp_uio.h>
#endif
#endif
#endif
|