xref: /titanic_41/usr/src/cmd/cmd-inet/usr.sbin/kssl/ksslcfg/ksslcfg.h (revision 2a8d6eba033e4713ab12b61178f0513f1f075482)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #ifndef _KSSLCFG_H
28 #define	_KSSLCFG_H
29 
30 #pragma ident	"%Z%%M%	%I%	%E% SMI"
31 
32 /*
33  * Common routines and variables used by ksslcfg files.
34  */
35 
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
40 #include <sys/types.h>
41 #include <libintl.h>
42 #include <locale.h>
43 
44 #define	MAX_ADRPORT_LEN	128 /* sufficient for host name/IP address + port */
45 
46 #define	SUCCESS			0
47 #define	FAILURE			1
48 #define	ERROR_USAGE		2
49 #define	INSTANCE_ANY_EXISTS	3
50 #define	INSTANCE_OTHER_EXISTS	4
51 
52 extern const char *SERVICE_NAME;
53 extern boolean_t verbose;
54 
55 extern char *create_instance_name(const char *arg, char **inaddr_any_name,
56     boolean_t is_create);
57 int get_portnum(const char *, ushort_t *);
58 extern void KSSL_DEBUG(const char *format, ...);
59 extern int do_create(int argc, char *argv[]);
60 extern int do_delete(int argc, char *argv[]);
61 extern int delete_instance(const char *instance_name);
62 extern void usage_create(boolean_t do_print);
63 extern void usage_delete(boolean_t do_print);
64 
65 #ifdef __cplusplus
66 }
67 #endif
68 
69 #endif /* _KSSLCFG_H */
70