DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: Q T

⟦e22d9d653⟧ TextFile

    Length: 1097 (0x449)
    Types: TextFile
    Names: »QmgrP1.py«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« 
        └─⟦e5a54fb17⟧ 
            └─⟦this⟧ »pp-5.0/Lib/qmgr/QmgrP1.py« 

TextFile

-- P1.py: The P1 elements required by the qmgr protocol


-- @(#) $Header: /cs/research/pp/hubris/pp-beta/Lib/qmgr/RCS/QmgrP1.py,v 5.0 90/09/20 16:22:34 pp Exp Locker: pp $
--
-- $Log:	QmgrP1.py,v $
-- Revision 5.0  90/09/20  16:22:34  pp
-- rcsforce : 5.0 public release
-- 
--



QmgrP1 DEFINITIONS ::=
%{
#ifndef	lint
static char *Rcsid = "@(#)$Header: /cs/research/pp/hubris/pp-beta/Lib/qmgr/RCS/QmgrP1.py,v 5.0 90/09/20 16:22:34 pp Exp Locker: pp $";
#endif	lint
%}

BEGIN

MPDUIdentifier ::=
	[APPLICATION 4] IMPLICIT SEQUENCE {
		global	GlobalDomainIdentifier,
		local	IA5String
	}
GlobalDomainIdentifier ::=
	[APPLICATION 3]
	    IMPLICIT SEQUENCE {
		country	CountryName,
		admd AdministrationDomainName,
		prmd PrivateDomainIdentifier OPTIONAL
	    }

CountryName ::=
	[APPLICATION 1]
	    CHOICE {
		numeric NumericString,
		printable PrintableString
	    }

AdministrationDomainName ::=
	[APPLICATION 2]
	    CHOICE {
		numeric NumericString,
		printable PrintableString
	    }

PrivateDomainIdentifier ::=
	CHOICE {
	    numeric NumericString,

	    printable PrintableString
	}

END