Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
eyesdn.h
1 /* eyesdn.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 
10 #ifndef __W_EYESDN_H__
11 #define __W_EYESDN_H__
12 
13 #include <glib.h>
14 #include "wtap.h"
15 #include "ws_symbol_export.h"
16 
17 wtap_open_return_val eyesdn_open(wtap *wth, int *err, gchar **err_info);
18 
19 enum EyeSDN_TYPES {
20  EYESDN_ENCAP_ISDN=0,
21  EYESDN_ENCAP_MSG,
22  EYESDN_ENCAP_LAPB,
23  EYESDN_ENCAP_ATM,
24  EYESDN_ENCAP_MTP2,
25  EYESDN_ENCAP_DPNSS,
26  EYESDN_ENCAP_DASS2,
27  EYESDN_ENCAP_BACNET,
28  EYESDN_ENCAP_V5_EF
29 };
30 
31 gboolean eyesdn_dump_open(wtap_dumper *wdh, int *err);
32 int eyesdn_dump_can_write_encap(int encap);
33 
34 #endif
Definition: wtap-int.h:34
Definition: wtap-int.h:86