xref: /freebsd/include/rpc/raw.h (revision 2321c474185e657ad1bdb4ef0a323cb10ba09cfc)
18360efbdSAlfred Perlstein /*	$NetBSD: raw.h,v 1.1 2000/06/02 22:57:56 fvdl Exp $	*/
28360efbdSAlfred Perlstein /*	$FreeBSD$ */
38360efbdSAlfred Perlstein 
42e322d37SHiroki Sato /*-
5*2321c474SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
6*2321c474SPedro F. Giffuni  *
72e322d37SHiroki Sato  * Copyright (c) 2009, Sun Microsystems, Inc.
82e322d37SHiroki Sato  * All rights reserved.
98360efbdSAlfred Perlstein  *
102e322d37SHiroki Sato  * Redistribution and use in source and binary forms, with or without
112e322d37SHiroki Sato  * modification, are permitted provided that the following conditions are met:
122e322d37SHiroki Sato  * - Redistributions of source code must retain the above copyright notice,
132e322d37SHiroki Sato  *   this list of conditions and the following disclaimer.
142e322d37SHiroki Sato  * - Redistributions in binary form must reproduce the above copyright notice,
152e322d37SHiroki Sato  *   this list of conditions and the following disclaimer in the documentation
162e322d37SHiroki Sato  *   and/or other materials provided with the distribution.
172e322d37SHiroki Sato  * - Neither the name of Sun Microsystems, Inc. nor the names of its
182e322d37SHiroki Sato  *   contributors may be used to endorse or promote products derived
192e322d37SHiroki Sato  *   from this software without specific prior written permission.
208360efbdSAlfred Perlstein  *
212e322d37SHiroki Sato  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
222e322d37SHiroki Sato  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
232e322d37SHiroki Sato  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
242e322d37SHiroki Sato  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
252e322d37SHiroki Sato  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
262e322d37SHiroki Sato  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
272e322d37SHiroki Sato  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
282e322d37SHiroki Sato  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
292e322d37SHiroki Sato  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
302e322d37SHiroki Sato  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
312e322d37SHiroki Sato  * POSSIBILITY OF SUCH DAMAGE.
328360efbdSAlfred Perlstein  */
338360efbdSAlfred Perlstein /*
348360efbdSAlfred Perlstein  * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc.
358360efbdSAlfred Perlstein  */
368360efbdSAlfred Perlstein 
378360efbdSAlfred Perlstein #ifndef _RPC_RAW_H
388360efbdSAlfred Perlstein #define	_RPC_RAW_H
398360efbdSAlfred Perlstein 
408360efbdSAlfred Perlstein /* 	from: @(#)raw.h	1.11	94/04/25 SMI */
418360efbdSAlfred Perlstein /*	from: @(#)raw.h 1.2 88/10/25 SMI	*/
428360efbdSAlfred Perlstein 
438360efbdSAlfred Perlstein #ifdef	__cplusplus
448360efbdSAlfred Perlstein extern "C" {
458360efbdSAlfred Perlstein #endif
468360efbdSAlfred Perlstein 
478360efbdSAlfred Perlstein /*
488360efbdSAlfred Perlstein  * raw.h
498360efbdSAlfred Perlstein  *
508360efbdSAlfred Perlstein  * Raw interface
518360efbdSAlfred Perlstein  * The common memory area over which they will communicate
528360efbdSAlfred Perlstein  */
538360efbdSAlfred Perlstein extern char *__rpc_rawcombuf;
548360efbdSAlfred Perlstein 
558360efbdSAlfred Perlstein #ifdef	__cplusplus
568360efbdSAlfred Perlstein }
578360efbdSAlfred Perlstein #endif
588360efbdSAlfred Perlstein 
598360efbdSAlfred Perlstein #endif	/* _RPC_RAW_H */
60