blob: 3eabee2c65185e9fc1e571798af9076c2a794257 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* packet-ieee802a.h
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_IEEE802A_H__
#define __PACKET_IEEE802A_H__
#include "ws_symbol_export.h"
/*
* Add an entry for a new OUI.
*/
WS_DLL_PUBLIC
void ieee802a_add_oui(guint32, const char *, const char *, hf_register_info *, const int);
#endif
|