/*-1* SPDX-License-Identifier: BSD-3-Clause2*3* Copyright (c) 2008 Apple Inc.4* All rights reserved.5*6* Redistribution and use in source and binary forms, with or without7* modification, are permitted provided that the following conditions8* are met:9* 1. Redistributions of source code must retain the above copyright10* notice, this list of conditions and the following disclaimer.11* 2. Redistributions in binary form must reproduce the above copyright12* notice, this list of conditions and the following disclaimer in the13* documentation and/or other materials provided with the distribution.14* 3. Neither the name of Apple Inc. ("Apple") nor the names of15* its contributors may be used to endorse or promote products derived16* from this software without specific prior written permission.17*18* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND19* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE20* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE21* ARE DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR22* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL23* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS24* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)25* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,26* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING27* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE28* POSSIBILITY OF SUCH DAMAGE.29*/3031#ifndef _BSM_AUDIT_DOMAIN_H_32#define _BSM_AUDIT_DOMAIN_H_3334/*35* BSM protocol domain constants - protocol domains defined in Solaris.36*/37#define BSM_PF_UNSPEC 038#define BSM_PF_LOCAL 139#define BSM_PF_INET 240#define BSM_PF_IMPLINK 341#define BSM_PF_PUP 442#define BSM_PF_CHAOS 543#define BSM_PF_NS 644#define BSM_PF_NBS 7 /* Solaris-specific. */45#define BSM_PF_ECMA 846#define BSM_PF_DATAKIT 947#define BSM_PF_CCITT 1048#define BSM_PF_SNA 1149#define BSM_PF_DECnet 1250#define BSM_PF_DLI 1351#define BSM_PF_LAT 1452#define BSM_PF_HYLINK 1553#define BSM_PF_APPLETALK 1654#define BSM_PF_NIT 17 /* Solaris-specific. */55#define BSM_PF_802 18 /* Solaris-specific. */56#define BSM_PF_OSI 1957#define BSM_PF_X25 20 /* Solaris/Linux-specific. */58#define BSM_PF_OSINET 21 /* Solaris-specific. */59#define BSM_PF_GOSIP 22 /* Solaris-specific. */60#define BSM_PF_IPX 2361#define BSM_PF_ROUTE 2462#define BSM_PF_LINK 2563#define BSM_PF_INET6 2664#define BSM_PF_KEY 2765#define BSM_PF_NCA 28 /* Solaris-specific. */66#define BSM_PF_POLICY 29 /* Solaris-specific. */67#define BSM_PF_INET_OFFLOAD 30 /* Solaris-specific. */6869/*70* BSM protocol domain constants - protocol domains not defined in Solaris.71*/72#define BSM_PF_NETBIOS 500 /* FreeBSD/Darwin-specific. */73#define BSM_PF_ISO 501 /* FreeBSD/Darwin-specific. */74#define BSM_PF_XTP 502 /* FreeBSD/Darwin-specific. */75#define BSM_PF_COIP 503 /* FreeBSD/Darwin-specific. */76#define BSM_PF_CNT 504 /* FreeBSD/Darwin-specific. */77#define BSM_PF_RTIP 505 /* FreeBSD/Darwin-specific. */78#define BSM_PF_SIP 506 /* FreeBSD/Darwin-specific. */79#define BSM_PF_PIP 507 /* FreeBSD/Darwin-specific. */80#define BSM_PF_ISDN 508 /* FreeBSD/Darwin-specific. */81#define BSM_PF_E164 509 /* FreeBSD/Darwin-specific. */82#define BSM_PF_NATM 510 /* FreeBSD/Darwin-specific. */83#define BSM_PF_ATM 511 /* FreeBSD/Darwin-specific. */84#define BSM_PF_NETGRAPH 512 /* FreeBSD/Darwin-specific. */85#define BSM_PF_SLOW 513 /* FreeBSD-specific. */86#define BSM_PF_SCLUSTER 514 /* FreeBSD-specific. */87#define BSM_PF_ARP 515 /* FreeBSD-specific. */88#define BSM_PF_BLUETOOTH 516 /* FreeBSD-specific. */89/* 517: unallocated. */90#define BSM_PF_AX25 518 /* Linux-specific. */91#define BSM_PF_ROSE 519 /* Linux-specific. */92#define BSM_PF_NETBEUI 520 /* Linux-specific. */93#define BSM_PF_SECURITY 521 /* Linux-specific. */94#define BSM_PF_PACKET 522 /* Linux-specific. */95#define BSM_PF_ASH 523 /* Linux-specific. */96#define BSM_PF_ECONET 524 /* Linux-specific. */97#define BSM_PF_ATMSVC 525 /* Linux-specific. */98#define BSM_PF_IRDA 526 /* Linux-specific. */99#define BSM_PF_PPPOX 527 /* Linux-specific. */100#define BSM_PF_WANPIPE 528 /* Linux-specific. */101#define BSM_PF_LLC 529 /* Linux-specific. */102#define BSM_PF_CAN 530 /* Linux-specific. */103#define BSM_PF_TIPC 531 /* Linux-specific. */104#define BSM_PF_IUCV 532 /* Linux-specific. */105#define BSM_PF_RXRPC 533 /* Linux-specific. */106#define BSM_PF_PHONET 534 /* Linux-specific. */107108/*109* Used when there is no mapping from a local to BSM protocol domain.110*/111#define BSM_PF_UNKNOWN 700 /* OpenBSM-specific. */112113#endif /* !_BSM_AUDIT_DOMAIN_H_ */114115116