/*1* ng_ip_input.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* Copyright (c) 1996-1999 Whistle Communications, Inc.34* All rights reserved.35*36* Subject to the following obligations and disclaimer of warranty, use and37* redistribution of this software, in source or object code forms, with or38* without modifications are expressly permitted by Whistle Communications;39* provided, however, that:40* 1. Any and all reproductions of the source or object code must include the41* copyright notice above and the following disclaimer of warranties; and42* 2. No rights are granted, in any manner or form, to use Whistle43* Communications, Inc. trademarks, including the mark "WHISTLE44* COMMUNICATIONS" on advertising, endorsements, or otherwise except as45* such appears in the above copyright notice or in the software.46*47* THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND48* TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO49* REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,50* INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF51* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.52* WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY53* REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS54* SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.55* IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES56* RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING57* WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,58* PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR59* SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY60* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT61* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF62* THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY63* OF SUCH DAMAGE.64*65* Author: Brooks Davis <[email protected]>66* Derived from: ng_hole.h67*/6869#ifndef _NETGRAPH_NG_IP_INPUT_H_70#define _NETGRAPH_NG_IP_INPUT_H_7172/* Node type name and magic cookie */73#define NG_IP_INPUT_NODE_TYPE "ip_input"74#define NGM_IP_INPUT_COOKIE 9948749077576#endif /* _NETGRAPH_NG_IP_INPUT_H_ */777879