actf 0.0.1
An acute CTF reader
Loading...
Searching...
No Matches
/home/adwe/code/actf/actf.h
Go to the documentation of this file.
1/*
2 * This file is a part of ACTF.
3 *
4 * Copyright (C) 2024 Adam Wendelin <adwe live se>
5 *
6 * ACTF is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as
8 * published by the Free Software Foundation, either version 3 of the
9 * License, or (at your option) any later version.
10 *
11 * ACTF is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14 * Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with ACTF. If not, see
18 * <https://www.gnu.org/licenses/>.
19 */
20
33#ifndef ACTF_H
34#define ACTF_H
35
36#include "config.h"
37#ifdef ACTF_USE_LUA
38#include "lua_filter.h"
39#endif
40#include "types.h"
41#include "decoder.h"
42#include "event.h"
43#include "event_generator.h"
44#include "filter.h"
45#include "flags.h"
46#include "fld.h"
47#include "fld_cls.h"
48#include "fld_loc.h"
49#include "freader.h"
50#include "mappings.h"
51#include "metadata.h"
52#include "muxer.h"
53#include "rng.h"
54#include "pkt.h"
55#include "print.h"
56
57#endif /* ACTF_H */
actf configuration.
A CTF2 decoder and its methods.
Event related methods.
Event generator API.
A time-based event filter and its methods.
Bit map flags related methods.
Field related methods.
Field class related methods.
Field location related methods.
A file-based CTF2 reader and its methods.
A lua event filter and its methods.
Mapping related methods.
A CTF2 metadata representation.
A muxer and its methods.
Packet related methods.
Event and field printer utility.
Range set related methods.
Basic types used by ACTF.