Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
autosar_dlt.h
1/* autosar_dlt.h
2 *
3 * Wiretap Library
4 * Copyright (c) 1998 by Gilbert Ramirez <[email protected]>
5 *
6 * Support for DLT file format as defined by AUTOSAR et. al.
7 * Copyright (c) 2022-2022 by Dr. Lars Voelker <[email protected]>
8 *
9 * SPDX-License-Identifier: GPL-2.0-or-later
10 */
11
12 /*
13 * Sources for specification:
14 * https://www.autosar.org/fileadmin/user_upload/standards/classic/21-11/AUTOSAR_SWS_DiagnosticLogAndTrace.pdf
15 * https://www.autosar.org/fileadmin/user_upload/standards/foundation/21-11/AUTOSAR_PRS_LogAndTraceProtocol.pdf
16 * https://github.com/COVESA/dlt-viewer
17 */
18
19#ifndef __W_AUTOSAR_DLT_H__
20#define __W_AUTOSAR_DLT_H__
21
22#include "wtap.h"
23
24wtap_open_return_val autosar_dlt_open(wtap *wth, int *err, char **err_info);
25
26#endif
27
28 /*
29 * Editor modelines - https://www.wireshark.org/tools/modelines.html
30 *
31 * Local variables:
32 * c-basic-offset: 4
33 * tab-width: 8
34 * indent-tabs-mode: nil
35 * End:
36 *
37 * vi: set shiftwidth=4 tabstop=8 expandtab:
38 * :indentSize=4:tabSize=8:noTabs=true:
39 */
Definition wtap-int.h:37