1*4960Swillf /* 2*4960Swillf * kadmin/ldap_util/kdb5_ldap_policy.h 3*4960Swillf */ 4*4960Swillf 5*4960Swillf /* Copyright (c) 2004-2005, Novell, Inc. 6*4960Swillf * All rights reserved. 7*4960Swillf * 8*4960Swillf * Redistribution and use in source and binary forms, with or without 9*4960Swillf * modification, are permitted provided that the following conditions are met: 10*4960Swillf * 11*4960Swillf * * Redistributions of source code must retain the above copyright notice, 12*4960Swillf * this list of conditions and the following disclaimer. 13*4960Swillf * * Redistributions in binary form must reproduce the above copyright 14*4960Swillf * notice, this list of conditions and the following disclaimer in the 15*4960Swillf * documentation and/or other materials provided with the distribution. 16*4960Swillf * * The copyright holder's name is not used to endorse or promote products 17*4960Swillf * derived from this software without specific prior written permission. 18*4960Swillf * 19*4960Swillf * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 20*4960Swillf * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21*4960Swillf * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22*4960Swillf * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 23*4960Swillf * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24*4960Swillf * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25*4960Swillf * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26*4960Swillf * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27*4960Swillf * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28*4960Swillf * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29*4960Swillf * POSSIBILITY OF SUCH DAMAGE. 30*4960Swillf */ 31*4960Swillf 32*4960Swillf #ifndef _KDB5_LDAP_POLICY_H_ 33*4960Swillf #define _KDB5_LDAP_POLICY_H_ 34*4960Swillf 35*4960Swillf #pragma ident "%Z%%M% %I% %E% SMI" 36*4960Swillf 37*4960Swillf extern void kdb5_ldap_create_policy(int argc, char **argv); 38*4960Swillf extern void kdb5_ldap_destroy_policy(int argc, char **argv); 39*4960Swillf extern void kdb5_ldap_modify_policy(int argc, char **argv); 40*4960Swillf extern void kdb5_ldap_view_policy(int argc, char **argv); 41*4960Swillf extern void kdb5_ldap_list_policies(int argc, char **argv); 42*4960Swillf 43*4960Swillf #endif /* _KDB5_LDAP_POLICY_H_ */ 44