/usr/include/libxl_json.h is in libxen-dev 4.4.1-9+deb8u10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 91 92 | /*
* Copyright (C) 2011 Citrix Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; version 2.1 only. with the special
* exception on linking described in file LICENSE.
*
* This program 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 Lesser General Public License for more details.
*/
#ifndef LIBXL_JSON_H
#define LIBXL_JSON_H
#include <yajl/yajl_gen.h>
#include <yajl/yajl_parse.h>
#ifdef HAVE_YAJL_YAJL_VERSION_H
# include <yajl/yajl_version.h>
#endif
yajl_gen_status libxl_defbool_gen_json(yajl_gen hand, libxl_defbool *p);
yajl_gen_status libxl_domid_gen_json(yajl_gen hand, libxl_domid *p);
yajl_gen_status libxl_uuid_gen_json(yajl_gen hand, libxl_uuid *p);
yajl_gen_status libxl_mac_gen_json(yajl_gen hand, libxl_mac *p);
yajl_gen_status libxl_bitmap_gen_json(yajl_gen hand, libxl_bitmap *p);
yajl_gen_status libxl_cpuid_policy_list_gen_json(yajl_gen hand,
libxl_cpuid_policy_list *p);
yajl_gen_status libxl_string_list_gen_json(yajl_gen hand, libxl_string_list *p);
yajl_gen_status libxl_key_value_list_gen_json(yajl_gen hand,
libxl_key_value_list *p);
yajl_gen_status libxl_hwcap_gen_json(yajl_gen hand, libxl_hwcap *p);
#include <_libxl_types_json.h>
/* YAJL version check */
#if defined(YAJL_MAJOR) && (YAJL_MAJOR > 1)
# define HAVE_YAJL_V2 1
#endif
#ifdef HAVE_YAJL_V2
typedef size_t libxl_yajl_length;
static inline yajl_handle libxl__yajl_alloc(const yajl_callbacks *callbacks,
yajl_alloc_funcs *allocFuncs,
void *ctx)
{
return yajl_alloc(callbacks, allocFuncs, ctx);
}
static inline yajl_gen libxl_yajl_gen_alloc(const yajl_alloc_funcs *allocFuncs)
{
yajl_gen g;
g = yajl_gen_alloc(allocFuncs);
if (g)
yajl_gen_config(g, yajl_gen_beautify, 1);
return g;
}
#else /* !HAVE_YAJL_V2 */
#define yajl_complete_parse yajl_parse_complete
typedef unsigned int libxl_yajl_length;
static inline yajl_handle libxl__yajl_alloc(const yajl_callbacks *callbacks,
const yajl_alloc_funcs *allocFuncs,
void *ctx)
{
yajl_parser_config cfg = {
.allowComments = 1,
.checkUTF8 = 1,
};
return yajl_alloc(callbacks, &cfg, allocFuncs, ctx);
}
static inline yajl_gen libxl_yajl_gen_alloc(const yajl_alloc_funcs *allocFuncs)
{
yajl_gen_config conf = { 1, " " };
return yajl_gen_alloc(&conf, allocFuncs);
}
#endif /* !HAVE_YAJL_V2 */
yajl_gen_status libxl_domain_config_gen_json(yajl_gen hand,
libxl_domain_config *p);
#endif /* LIBXL_JSON_H */
|