10Sstevel@tonic-gate /* 20Sstevel@tonic-gate * CDDL HEADER START 30Sstevel@tonic-gate * 40Sstevel@tonic-gate * The contents of this file are subject to the terms of the 51907Sedp * Common Development and Distribution License (the "License"). 61907Sedp * You may not use this file except in compliance with the License. 70Sstevel@tonic-gate * 80Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 90Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 100Sstevel@tonic-gate * See the License for the specific language governing permissions 110Sstevel@tonic-gate * and limitations under the License. 120Sstevel@tonic-gate * 130Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 140Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 150Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 160Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 170Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 180Sstevel@tonic-gate * 190Sstevel@tonic-gate * CDDL HEADER END 200Sstevel@tonic-gate */ 211907Sedp 220Sstevel@tonic-gate /* 231907Sedp * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 241907Sedp * Use is subject to license terms. 250Sstevel@tonic-gate */ 260Sstevel@tonic-gate 270Sstevel@tonic-gate #ifndef _SYS_STRREDIR_H 280Sstevel@tonic-gate #define _SYS_STRREDIR_H 290Sstevel@tonic-gate 300Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 310Sstevel@tonic-gate 320Sstevel@tonic-gate #ifdef __cplusplus 330Sstevel@tonic-gate extern "C" { 340Sstevel@tonic-gate #endif 350Sstevel@tonic-gate 360Sstevel@tonic-gate /* 370Sstevel@tonic-gate * strredir.h: Declarations for the redirection driver and its matching 380Sstevel@tonic-gate * STREAMS module. 390Sstevel@tonic-gate */ 400Sstevel@tonic-gate 410Sstevel@tonic-gate /* 420Sstevel@tonic-gate * The module's module id. 430Sstevel@tonic-gate * 440Sstevel@tonic-gate * XXX: Since there's no authority responsible for administering this name 450Sstevel@tonic-gate * space, there's no guarantee that this value is unique. That wouldn't 460Sstevel@tonic-gate * be so bad except that the DKI now suggests that ioctl cookie values 470Sstevel@tonic-gate * should be based on module id to make them unique... 480Sstevel@tonic-gate */ 491907Sedp #define STRREDIR_MODID 7326 500Sstevel@tonic-gate 510Sstevel@tonic-gate /* 520Sstevel@tonic-gate * Redirection ioctls: 530Sstevel@tonic-gate */ 541907Sedp #define SRIOCSREDIR ((STRREDIR_MODID<<16) | 1) /* set redir target */ 551907Sedp #define SRIOCISREDIR ((STRREDIR_MODID<<16) | 2) /* is redir target? */ 560Sstevel@tonic-gate 570Sstevel@tonic-gate 580Sstevel@tonic-gate /* 590Sstevel@tonic-gate * Everything from here on is of interest only to the kernel. 600Sstevel@tonic-gate */ 610Sstevel@tonic-gate #ifdef _KERNEL 620Sstevel@tonic-gate 631907Sedp /* name of the module used to detect closes on redirected streams */ 641907Sedp #define STRREDIR_MOD "redirmod" 650Sstevel@tonic-gate 66*2485Sns92644 extern void srpop(vnode_t *, boolean_t); 670Sstevel@tonic-gate 680Sstevel@tonic-gate #endif /* _KERNEL */ 690Sstevel@tonic-gate 700Sstevel@tonic-gate #ifdef __cplusplus 710Sstevel@tonic-gate } 720Sstevel@tonic-gate #endif 730Sstevel@tonic-gate 740Sstevel@tonic-gate #endif /* _SYS_STRREDIR_H */ 75