wireshark/ui/text_import_regex.h

57 lines
1.5 KiB
C

/**-*-C-*-**********************************************************************
* text_import_regex.h
* Regex based alternative to the state machine for text import
* Feburary 2021, Paul Weiß <paulniklasweiss@gmail.com>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* Based on text_import.h by Jaap Keuter <jaap.keuter@xs4all.nl>
*
* SPDX-License-Identifier: GPL-2.0-or-later*
*******************************************************************************/
#ifndef __TEXT_IMPORT_REGEX_H__
#define __TEXT_IMPORT_REGEX_H__
#include <glib.h>
#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__ */
/*
* Editor modelines - https://www.wireshark.org/tools/modelines.html
*
* Local variables:
* c-basic-offset: 4
* tab-width: 8
* indent-tabs-mode: nil
* End:
*
* vi: set shiftwidth=4 tabstop=8 expandtab:
* :indentSize=4:tabSize=8:noTabs=true:
*/