/*1* ng_gif_demux.h2*/34/*-5* SPDX-License-Identifier: BSD-3-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*/3334#ifndef _NETGRAPH_NG_GIF_DEMUX_H_35#define _NETGRAPH_NG_GIF_DEMUX_H_3637/* Node type name and magic cookie */38#define NG_GIF_DEMUX_NODE_TYPE "gif_demux"39#define NGM_GIF_DEMUX_COOKIE 9955673294041/* Hook names */42#define NG_GIF_DEMUX_HOOK_GIF "gif"43#define NG_GIF_DEMUX_HOOK_INET "inet"44#define NG_GIF_DEMUX_HOOK_INET6 "inet6"45#define NG_GIF_DEMUX_HOOK_ATALK "atalk"46#define NG_GIF_DEMUX_HOOK_IPX "ipx"47#define NG_GIF_DEMUX_HOOK_ATM "atm"48#define NG_GIF_DEMUX_HOOK_NATM "natm"4950#endif /* _NETGRAPH_NG_GIF_DEMUX_H_ */515253