/////////////////////////////////////////////////////////////////////////////// // // Jail // A chrooted login shell implementation // Released under GNU Public License v.2.0 // See LICENSE file for details // // Juan M. Casillas // 3/April/ 2001 09:22 // /////////////////////////////////////////////////////////////////////////////// // // $Id: helpers.h,v 1.1.1.1 2001/10/26 09:36:09 assman Exp $ // // $Log: helpers.h,v $ // Revision 1.1.1.1 2001/10/26 09:36:09 assman // Added support for new platforms: FreeBSD, Solaris, IRIX. Now some options // can be selected from the Makefile script: DEBUG on/off, install path, // install permissions, etc. The perl scripts have been rewritten so they // support platform-specific code, so port Jail to another platform should // be an easy task. // // /////////////////////////////////////////////////////////////////////////////// #ifndef __JAIL_HELPERS_H__ #define __JAIL_HELPERS_H__ #include "generic_helpers.h" #include "passwd_helpers.h" #include "terminal_helpers.h" #endif