BSD 4_3_Net_2 release
[unix-history] / usr / src / contrib / isode / psap / pl_tables.c
CommitLineData
9e8e5516
C
1/* pl_tables.c - tables for presentation lists */
2
3#ifndef lint
4static char *rcsid = "$Header: /f/osi/psap/RCS/pl_tables.c,v 7.1 91/02/22 09:36:19 mrose Interim $";
5#endif
6
7/*
8 * $Header: /f/osi/psap/RCS/pl_tables.c,v 7.1 91/02/22 09:36:19 mrose Interim $
9 *
10 *
11 * $Log: pl_tables.c,v $
12 * Revision 7.1 91/02/22 09:36:19 mrose
13 * Interim 6.8
14 *
15 * Revision 7.0 89/11/23 22:13:08 mrose
16 * Release 6.0
17 *
18 */
19
20/*
21 * NOTICE
22 *
23 * Acquisition, use, and distribution of this module and related
24 * materials are subject to the restrictions of a license agreement.
25 * Consult the Preface in the User's Manual for the full terms of
26 * this agreement.
27 *
28 */
29
30
31/* LINTLIBRARY */
32
33#include <stdio.h>
34#include "psap.h"
35
36/* \f DATA */
37
38char *pe_classlist[] = {
39 "UNIV",
40 "APPL",
41 "CONT",
42 "PRIV"
43};
44
45int pe_maxclass = sizeof pe_classlist / sizeof pe_classlist[0];
46
47
48char *pe_univlist[] = {
49 "EOC",
50 "BOOL",
51 "INT",
52 "BITS",
53 "OCTS",
54 "NULL",
55 "OID",
56 "ODE",
57 "EXTN",
58 "REAL",
59 "ENUM",
60 "ENCR",
61 NULLCP,
62 NULLCP,
63 NULLCP,
64 NULLCP,
65 "SEQ",
66 "SET",
67 "NUMS",
68 "PRTS",
69 "T61S",
70 "VTXS",
71 "IA5S",
72 "UTCT",
73 "GENT",
74 "GFXS",
75 "VISS",
76 "GENS",
77 "CHRS",
78};
79
80int pe_maxuniv = sizeof pe_univlist / sizeof pe_univlist[0];
81
82
83int pe_maxappl = 0;
84char **pe_applist = NULL;
85
86int pe_maxpriv = 0;
87char **pe_privlist = NULL;