1*8a2af0b4SBaptiste Daroussin /*- 2*8a2af0b4SBaptiste Daroussin * SPDX-License-Identifier: BSD-2-Clause 3*8a2af0b4SBaptiste Daroussin * 4*8a2af0b4SBaptiste Daroussin * Copyright (c) 2023 Baptiste Daroussin <bapt@FreeBSD.org> 5*8a2af0b4SBaptiste Daroussin * 6*8a2af0b4SBaptiste Daroussin * Redistribution and use in source and binary forms, with or without 7*8a2af0b4SBaptiste Daroussin * modification, are permitted provided that the following conditions 8*8a2af0b4SBaptiste Daroussin * are met: 9*8a2af0b4SBaptiste Daroussin * 1. Redistributions of source code must retain the above copyright 10*8a2af0b4SBaptiste Daroussin * notice, this list of conditions and the following disclaimer. 11*8a2af0b4SBaptiste Daroussin * 2. Redistributions in binary form must reproduce the above copyright 12*8a2af0b4SBaptiste Daroussin * notice, this list of conditions and the following disclaimer in the 13*8a2af0b4SBaptiste Daroussin * documentation and/or other materials provided with the distribution. 14*8a2af0b4SBaptiste Daroussin * 15*8a2af0b4SBaptiste Daroussin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16*8a2af0b4SBaptiste Daroussin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17*8a2af0b4SBaptiste Daroussin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18*8a2af0b4SBaptiste Daroussin * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19*8a2af0b4SBaptiste Daroussin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20*8a2af0b4SBaptiste Daroussin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21*8a2af0b4SBaptiste Daroussin * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22*8a2af0b4SBaptiste Daroussin * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23*8a2af0b4SBaptiste Daroussin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24*8a2af0b4SBaptiste Daroussin * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25*8a2af0b4SBaptiste Daroussin * SUCH DAMAGE. 26*8a2af0b4SBaptiste Daroussin */ 27*8a2af0b4SBaptiste Daroussin 28*8a2af0b4SBaptiste Daroussin #ifndef _NETLINK_SYSEVENT_H_ 29*8a2af0b4SBaptiste Daroussin #define _NETLINK_SYSEVENT_H_ 30*8a2af0b4SBaptiste Daroussin 31*8a2af0b4SBaptiste Daroussin enum { 32*8a2af0b4SBaptiste Daroussin NLSE_ATTR_UNSPEC = 0, 33*8a2af0b4SBaptiste Daroussin NLSE_ATTR_SYSTEM = 1, 34*8a2af0b4SBaptiste Daroussin NLSE_ATTR_SUBSYSTEM = 2, 35*8a2af0b4SBaptiste Daroussin NLSE_ATTR_TYPE = 3, 36*8a2af0b4SBaptiste Daroussin NLSE_ATTR_DATA = 4, 37*8a2af0b4SBaptiste Daroussin __NLSE_ATTR_MAX, 38*8a2af0b4SBaptiste Daroussin }; 39*8a2af0b4SBaptiste Daroussin #define NLSE_ATTR_MAX (__NLSE_ATTR_MAX -1) 40*8a2af0b4SBaptiste Daroussin #endif 41