From e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:34:10 +0200 Subject: Adding upstream version 4.2.2. Signed-off-by: Daniel Baumann --- ui/text_import_regex.h | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 ui/text_import_regex.h (limited to 'ui/text_import_regex.h') diff --git a/ui/text_import_regex.h b/ui/text_import_regex.h new file mode 100644 index 0000000..93307c1 --- /dev/null +++ b/ui/text_import_regex.h @@ -0,0 +1,44 @@ +/** @file + * + * text_import_regex.h + * Regex based alternative to the state machine for text import + * February 2021, Paul Weiß + * + * Wireshark - Network traffic analyzer + * By Gerald Combs + * Copyright 1998 Gerald Combs + * + * Based on text_import.h by Jaap Keuter + * + * SPDX-License-Identifier: GPL-2.0-or-later* + *******************************************************************************/ + + +#ifndef __TEXT_IMPORT_REGEX_H__ +#define __TEXT_IMPORT_REGEX_H__ + +#include + +#include "text_import.h" + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +void parse_data(guchar* start_field, guchar* end_field, enum data_encoding encoding); + +void parse_dir(const guchar* start_field, const guchar* end_field, const gchar* in_indicator, const gchar* out_indicator); + +void parse_time(const guchar* start_field, const guchar* end_field, const gchar* _format); + +void parse_seqno(const guchar* start_field, const guchar* end_field); + +void flush_packet(void); + +int text_import_regex(const text_import_info_t *info); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __TEXT_IMPORT_REGEX_H__ */ -- cgit v1.2.3