]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/netncp/ncp_nls.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / netncp / ncp_nls.h
1 /*-
2  * Copyright (c) 1999 Boris Popov
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28 #ifndef _NETNCP_NCP_NLS_H_
29 #define _NETNCP_NCP_NLS_H_
30
31 /* options for handle path & caseopt in mount struct */
32 #define NWHP_HDB        0x01    /* have dir base */
33 #define NWHP_UPPER      0x02    /* local names has upper case */
34 #define NWHP_LOWER      0x04    /* --"-- lower case */
35 #define NWHP_DOS        0x08    /* using dos name space */
36 #define NWHP_NLS        0x10    /* do name translation via tables, any nmspc */
37 #define NWHP_NOSTRICT   0x20    /* pretend to be a case insensitive */
38
39 struct ncp_nlstables {
40         u_char  *to_lower;      /* local charset to lower case */
41         u_char  *to_upper;      /* local charset to upper case */
42         u_char  *n2u;           /* NetWare to Unix */
43         u_char  *u2n;
44         int     opt;            /* may depend on context */
45 };
46
47 #ifndef _KERNEL
48 /*
49  * NLS, supported character conversion schemes.
50  * NCP_NLS_UNIXCHARSET_NETWARECHARSET
51  */
52 #define NCP_NLS_AS_IS           1
53 #define NCP_NLS_AS_IS_NAME      "asis"
54 #define NCP_NLS_KOI_866         2
55 #define NCP_NLS_KOI_866_NAME    "koi2cp866"
56 #define NCP_NLS_SE              3
57 #define NCP_NLS_SE_NAME         "se"
58 #define NCP_NLS_DE              4
59 #define NCP_NLS_DE_NAME         "de"
60
61 extern struct ncp_nlstables ncp_nls;    /* active nls */
62
63 __BEGIN_DECLS
64
65 int   ncp_nls_setrecode(int scheme);
66 int   ncp_nls_setrecodebyname(char *name);
67 int   ncp_nls_setlocale(char *name);
68 char* ncp_nls_str_n2u(char *dst, const char *src);
69 char* ncp_nls_str_u2n(char *dst, const char *src);
70 char* ncp_nls_mem_n2u(char *dst, const char *src, int size);
71 char* ncp_nls_mem_u2n(char *dst, const char *src, int size);
72
73 __END_DECLS
74
75 #else /* !_KERNEL */
76
77
78 extern struct ncp_nlstables ncp_defnls;
79
80 void ncp_str_upper(char *name);
81 void ncp_str_lower(char *name);
82 void ncp_pathcopy(const char *src, char *dst, int len, struct ncp_nlstables *nt);
83 int  ncp_pathcheck(char *s, int len, struct ncp_nlstables *nt, int strict);
84 void ncp_path2unix(char *src, char *dst, int len, struct ncp_nlstables *nt);
85
86 #endif /* !_KERNEL */
87
88 #endif /* _NCP_NCP_NLS_H_ */