ibcs2_stropts.h revision 139799
117574Sache/*-
218950Sache * ibcs2_stropts.h
312031Sache * Copyright (c) 1995 Scott Bartram
412031Sache * All rights reserved.
518950Sache *
612031Sache * Redistribution and use in source and binary forms, with or without
718950Sache * modification, are permitted provided that the following conditions
818950Sache * are met:
918950Sache * 1. Redistributions of source code must retain the above copyright
1018950Sache *    notice, this list of conditions and the following disclaimer.
1117574Sache * 2. The name of the author may not be used to endorse or promote products
1218950Sache *    derived from this software without specific prior written permission
1312031Sache *
1418950Sache * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1517574Sache * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1618950Sache * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
1718950Sache * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
1818950Sache * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
1918950Sache * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2018950Sache * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2118950Sache * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2218950Sache * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2317574Sache * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2418950Sache *
2518950Sache * $FreeBSD: head/sys/i386/ibcs2/ibcs2_stropts.h 139799 2005-01-06 23:22:04Z imp $
2618950Sache */
2718950Sache
2818950Sache#ifndef _IBCS2_STROPTS_H
2918950Sache#define _IBCS2_STROPTS_H
3018950Sache
3112031Sache#define IBCS2_STR		('S'<<8)
3218950Sache#define IBCS2_I_NREAD		(IBCS2_STR|01)
33#define IBCS2_I_PUSH		(IBCS2_STR|02)
34#define IBCS2_I_POP		(IBCS2_STR|03)
35#define IBCS2_I_LOOK		(IBCS2_STR|04)
36#define IBCS2_I_FLUSH		(IBCS2_STR|05)
37#define IBCS2_I_SRDOPT		(IBCS2_STR|06)
38#define IBCS2_I_GRDOPT		(IBCS2_STR|07)
39#define IBCS2_I_STR		(IBCS2_STR|010)
40#define IBCS2_I_SETSIG		(IBCS2_STR|011)
41#define IBCS2_I_GETSIG		(IBCS2_STR|012)
42#define IBCS2_I_FIND		(IBCS2_STR|013)
43#define IBCS2_I_LINK		(IBCS2_STR|014)
44#define IBCS2_I_UNLINK		(IBCS2_STR|015)
45#define IBCS2_I_PEEK		(IBCS2_STR|017)
46#define IBCS2_I_FDINSERT	(IBCS2_STR|020)
47#define IBCS2_I_SENDFD		(IBCS2_STR|021)
48#define IBCS2_I_RECVFD		(IBCS2_STR|022)
49
50#endif /* _IBCS2_STROPTS_H */
51