rawip_impl.h revision 222c5bce8762079550e5ccd485a12de1fff5a82e
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1990 Mentat Inc. */
#ifndef _RAWIP_IMPL_H
#define _RAWIP_IMPL_H
#pragma ident "%Z%%M% %I% %E% SMI"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _KERNEL
#include <sys/netstack.h>
/* Named Dispatch Parameter Management Structure */
typedef struct icmpparam_s {
char *icmp_param_name;
} icmpparam_t;
/*
* ICMP stack instances
*/
struct icmp_stack {
void *is_head; /* Head for list of open icmps */
};
typedef struct icmp_stack icmp_stack_t;
/* Internal icmp control structure, one per open stream */
typedef struct icmp_s {
/*
* Following fields up to icmp_ipversion protected by conn_lock.
*/
/*
* IP format that packets transmitted from this struct should use.
* Value can be IP4_VERSION or IPV6_VERSION.
*/
/* Written to only once at the time of opening the endpoint */
/* Following protected by icmp_rwlock */
int icmp_bound_if; /* IP*_BOUND_IF option */
/* Written to only once at the time of opening the endpoint */
/* Following protected by icmp_rwlock */
icmp_pad_to_bit_31: 11;
} icmp_t;
/*
* Object to represent database of options to search passed to
* {sock,tpi}optcom_req() interface routine to take care of option
* management and associated methods.
*/
extern optdb_obj_t icmp_opt_obj;
extern uint_t icmp_max_optsize;
extern void icmp_ddi_init(void);
extern void icmp_ddi_destroy(void);
#endif /* _KERNEL */
#ifdef __cplusplus
}
#endif
#endif /* _RAWIP_IMPL_H */