386BSD 0.1 development
[unix-history] / usr / othersrc / contrib / isode / acsap / dse.py
CommitLineData
48435ab0
WJ
1-- dse.py - X.500 PresentationAddress syntax
2
3-- $Header: /f/osi/acsap/RCS/dse.py,v 7.4 91/02/22 09:14:37 mrose Interim $
4--
5--
6-- $Log: dse.py,v $
7-- Revision 7.4 91/02/22 09:14:37 mrose
8-- Interim 6.8
9--
10-- Revision 7.3 90/08/08 14:02:00 mrose
11-- stuff
12--
13-- Revision 7.2 90/07/09 14:31:05 mrose
14-- sync
15--
16-- Revision 7.1 89/12/04 08:44:12 mrose
17-- touch-up
18--
19-- Revision 7.0 89/11/23 21:22:09 mrose
20-- Release 6.0
21--
22
23--
24-- NOTICE
25--
26-- Acquisition, use, and distribution of this module and related
27-- materials are subject to the restrictions of a license agreement.
28-- Consult the Preface in the User's Manual for the full terms of
29-- this agreement.
30--
31--
32
33
34DSE DEFINITIONS ::=
35
36%{
37#ifndef lint
38static char *rcsid = "$Header: /f/osi/acsap/RCS/dse.py,v 7.4 91/02/22 09:14:37 mrose Interim $";
39#endif
40%}
41
42BEGIN
43
44PSAPaddr ::=
45 SEQUENCE {
46 pSelector[0]
47 OCTET STRING
48 OPTIONAL,
49
50 sSelector[1]
51 OCTET STRING
52 OPTIONAL,
53
54 tSelector[2]
55 OCTET STRING
56 OPTIONAL,
57
58 nAddress[3]
59 SET OF
60 OCTET STRING
61 }
62
63END