e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth/*
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * CDDL HEADER START
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth *
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * The contents of this file are subject to the terms of the
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * Common Development and Distribution License (the "License").
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * You may not use this file except in compliance with the License.
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth *
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * or http://www.opensolaris.org/os/licensing.
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * See the License for the specific language governing permissions
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * and limitations under the License.
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth *
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * When distributing Covered Code, include this CDDL HEADER in each
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * If applicable, add the following below this CDDL HEADER, with the
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * fields enclosed by brackets "[]" replaced with your own identifying
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * information: Portions Copyright [yyyy] [name of copyright owner]
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth *
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * CDDL HEADER END
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth */
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth/*
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth * Use is subject to license terms.
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth */
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth#pragma ident "%Z%%M% %I% %E% SMI"
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth#ifndef _STANDALONE_H
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth#define _STANDALONE_H
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth#ifdef __cplusplus
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57ethextern "C" {
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth#endif
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth#include <strings.h>
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth#include <stdio.h>
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth#include "ns_sldap.h"
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth#include "ns_internal.h"
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57ethns_standalone_conf_t standaloneDefaults;
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57ethint separatePort(char *peer, char **name, uint16_t *port);
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57ethchar *readPwd(char *pwd_file);
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth#ifdef __cplusplus
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth}
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth#endif
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth
e1dd0a2f3a26050d1f183c1cafae42c4e3a0b57eth#endif /* _STANDALONE_H */