decrypt
[metze/wireshark/wip.git] / wiretap / netxray.h
1 /* netxray.h
2  *
3  * Wiretap Library
4  * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
5  *
6  * SPDX-License-Identifier: GPL-2.0-or-later
7  */
8
9 #ifndef __NETXRAY_H__
10 #define __NETXRAY_H__
11
12 #include <glib.h>
13 #include "wtap.h"
14
15 wtap_open_return_val netxray_open(wtap *wth, int *err, gchar **err_info);
16 int netxray_dump_can_write_encap_1_1(int encap);
17 gboolean netxray_dump_open_1_1(wtap_dumper *wdh, int *err);
18 int netxray_dump_can_write_encap_2_0(int encap);
19 gboolean netxray_dump_open_2_0(wtap_dumper *wdh, int *err);
20
21 #endif