/*1* ng_gif.h2*/34/*-5* SPDX-License-Identifier: BSD-3-Clause AND BSD-2-Clause6*7* Copyright 2001 The Aerospace Corporation. All rights reserved.8*9* Redistribution and use in source and binary forms, with or without10* modification, are permitted provided that the following conditions11* are met:12*13* 1. Redistributions of source code must retain the above copyright14* notice, this list of conditions, and the following disclaimer.15* 2. Redistributions in binary form must reproduce the above copyright16* notice, this list of conditions, and the following disclaimer in the17* documentation and/or other materials provided with the distribution.18* 3. The name of The Aerospace Corporation may not be used to endorse or19* promote products derived from this software.20*21* THIS SOFTWARE IS PROVIDED BY THE AEROSPACE CORPORATION ``AS IS'' AND22* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE23* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE24* ARE DISCLAIMED. IN NO EVENT SHALL THE AEROSPACE CORPORATION BE LIABLE25* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL26* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS27* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)28* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT29* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY30* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF31* SUCH DAMAGE.32*33*34* Copyright (c) 1996-1999 Whistle Communications, Inc.35* All rights reserved.36*37* Subject to the following obligations and disclaimer of warranty, use and38* redistribution of this software, in source or object code forms, with or39* without modifications are expressly permitted by Whistle Communications;40* provided, however, that:41* 1. Any and all reproductions of the source or object code must include the42* copyright notice above and the following disclaimer of warranties; and43* 2. No rights are granted, in any manner or form, to use Whistle44* Communications, Inc. trademarks, including the mark "WHISTLE45* COMMUNICATIONS" on advertising, endorsements, or otherwise except as46* such appears in the above copyright notice or in the software.47*48* THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND49* TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO50* REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,51* INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF52* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.53* WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY54* REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS55* SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.56* IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES57* RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING58* WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,59* PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR60* SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY61* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT62* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF63* THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY64* OF SUCH DAMAGE.65*/6667#ifndef _NETGRAPH_NG_GIF_H_68#define _NETGRAPH_NG_GIF_H_6970/* Node type name and magic cookie */71#define NG_GIF_NODE_TYPE "gif"72#define NGM_GIF_COOKIE 9941157277374/* Hook names */75#define NG_GIF_HOOK_LOWER "lower" /* connection to raw device */76#define NG_GIF_HOOK_DIVERT "divert" /* alias for lower */77#define NG_GIF_HOOK_ORPHAN "orphans" /* like lower, unknowns only */7879/* Netgraph control messages */80enum {81NGM_GIF_GET_IFNAME = 1, /* get the interface name */82NGM_GIF_GET_IFINDEX /* get the interface global index # */83};8485#endif /* _NETGRAPH_NG_GIF_H_ */868788