78 lines
2.3 KiB
C
78 lines
2.3 KiB
C
/*
|
|
*
|
|
Copyright (C) 2009-2016 Olof Hagsand and Benny Holmgren
|
|
|
|
This file is part of CLIXON.
|
|
|
|
CLIXON is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
CLIXON is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with CLIXON; see the file LICENSE. If not, see
|
|
<http://www.gnu.org/licenses/>.
|
|
|
|
|
|
* Meta-include file that includes all sub-files in control-lib
|
|
* Note: this include files is for external purposes. Do not include this
|
|
* file in clicon lib-routines.
|
|
*/
|
|
|
|
/* This include file requires the following include file dependencies */
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <dirent.h>
|
|
#include <sys/socket.h>
|
|
#include <net/if.h>
|
|
#include <netinet/in.h>
|
|
|
|
/*
|
|
* CLIXON version macros
|
|
*/
|
|
|
|
#undef CLIXON_VERSION_STRING
|
|
#undef CLIXON_VERSION_MAJOR
|
|
#undef CLIXON_VERSION_MINOR
|
|
#undef CLIXON_VERSION_PATCH
|
|
|
|
/*
|
|
* Use this constant to disable some prototypes that should not be visible outside the lib.
|
|
* This is an alternative to use separate internal include files.
|
|
*/
|
|
#define LIBCLIXON_API 1
|
|
|
|
#include <clixon/clixon_sig.h>
|
|
#include <clixon/clixon_log.h>
|
|
#include <clixon/clixon_err.h>
|
|
#include <clixon/clixon_queue.h>
|
|
#include <clixon/clixon_hash.h>
|
|
#include <clixon/clixon_handle.h>
|
|
#include <clixon/clixon_yang.h>
|
|
#include <clixon/clixon_yang_type.h>
|
|
#include <clixon/clixon_chunk.h>
|
|
#include <clixon/clixon_event.h>
|
|
#include <clixon/clixon_string.h>
|
|
#include <clixon/clixon_file.h>
|
|
#include <clixon/clixon_xml.h>
|
|
#include <clixon/clixon_proto.h>
|
|
#include <clixon/clixon_proto_encode.h>
|
|
#include <clixon/clixon_proto_client.h>
|
|
#include <clixon/clixon_proc.h>
|
|
#include <clixon/clixon_options.h>
|
|
#include <clixon/clixon_xml_map.h>
|
|
#include <clixon/clixon_xml_db.h>
|
|
#include <clixon/clixon_xsl.h>
|
|
#include <clixon/clixon_plugin.h>
|
|
#include <clixon/clixon_plugin.h>
|
|
|
|
/*
|
|
* Global variables generated by Makefile
|
|
*/
|
|
extern const char CLIXON_BUILDSTR[];
|
|
extern const char CLIXON_VERSION[];
|