Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet-bgp.h
1 /* packet-bgp.h
2  * Routines for BGP packet disassembly
3  * (c) Copyright Ebben Aries <exa@fb.com>
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 #ifndef __PACKET_BGP_H__
12 #define __PACKET_BGP_H__
13 
14 const char*
15 decode_bgp_rd(tvbuff_t *tvb, gint offset);
16 
17 #endif
18 
19 /*
20  * Editor modelines - http://www.wireshark.org/tools/modelines.html
21  *
22  * Local variables:
23  * c-basic-offset: 4
24  * tab-width: 8
25  * indent-tabs-mode: nil
26  * End:
27  *
28  * vi: set shiftwidth=4 tabstop=8 expandtab:
29  * :indentSize=4:tabSize=8:noTabs=true:
30  */
Definition: tvbuff-int.h:35