A new type of DCERPC over SMB transport.
[obnox/wireshark/wip.git] / oui.h
1 /* oui.h
2  * Definitions of OUIs
3  *
4  * $Id: oui.h,v 1.11 2001/11/13 23:55:29 gram Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@zing.org>
8  * Copyright 1998 - 2000 Gerald Combs
9  *
10  * 
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  * 
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifndef __OUI_H__
27 #define __OUI_H__
28
29 #define OUI_ENCAP_ETHER 0x000000        /* encapsulated Ethernet */
30 #define OUI_CISCO       0x00000C        /* Cisco (future use) */
31 #define OUI_CISCO_90    0x0000F8        /* Cisco (IOS 9.0 and above?) */
32 #define OUI_BRIDGED     0x0080C2        /* Bridged Frame-Relay, RFC 2427 */
33                                         /* and Bridged ATM, RFC 2684 */
34 #define OUI_ATM_FORUM   0x00A03E        /* ATM Forum */
35 #define OUI_CABLE_BPDU  0x00E02F        /* DOCSIS spanning tree BPDU */
36 #define OUI_APPLE_ATALK 0x080007        /* Appletalk */
37
38 extern const value_string oui_vals[];
39
40 #endif