Google
 

Trailing-Edge - PDP-10 Archives - BB-FB49A-RM - sources/nspt20.mac
There are no other files named nspt20.mac in the archive.
	Title MSGTBL - Table of DECnet disconnect/abort reason text
	Subttl	Dennis W. Brannon

;+
;
; Copyright (c) 1985
; by DIGITAL Equipment Corporation, Maynard, Mass.
;
; This software is furnished under a license and may be used and  copied
; only  in  accordance  with  the  terms  of  such  license and with the
; inclusion of the above copyright notice.  This software or  any  other
; copies  thereof may not be provided or otherwise made available to any
; other person.  No title to and ownership of  the  software  is  hereby
; transferred.
;
; The information in this software is subject to change  without  notice
; and  should  not  be  construed  as  a commitment by DIGITAL Equipment
; Corporation.
;
; DIGITAL assumes no responsibility for the use or  reliability  of  its
; software on equipment which is not supplied by DIGITAL.
;
;
; MODIFIED BY
;	Dennis Brannon, 3-Feb-85 : VERSION 1.00
;

	Sall			;Pretty listings

	Search	MONSYM

;
; This table is used by the NETERR routine to provide an english
; text translation for the DECnet error codes which indicate why
; the network logical link connection was broken
;

;MACRO TO MAKE ENTRIES IN NSP ERROR TABLE

	MAXMSG==^D50		; Maximum number of NSP error messages

DEFINE NSPERR (CODE,TEXT,BASE<NSPT20>),<
	.ORG BASE+CODE
	POINT 7,[ASCIZ\ TEXT\]
	.ORG
>

NSPT20::			;DECNET ERROR TEXT TABLE

REPEAT MAXMSG,<POINT 7,[ASCIZ\ Undefined NSP error\]> ;MAKE TABLE SPACE
				; & UNDEFINED ENTRIES

	NSPERR (.DCX0,<No special error>)
	NSPERR (.DCX1,<Resource allocation failure>)
	NSPERR (.DCX2,<Destination node does not exist>)
	NSPERR (.DCX3,<Node shutting down>)
	NSPERR (.DCX4,<Destination process does not exist>)
	NSPERR (.DCX5,<Invalid name field>)
	NSPERR (.DCX6,<Destination process queue overflow>)
	NSPERR (.DCX7,<Unspecified error>)
	NSPERR (.DCX8,<Third party aborted link>)
	NSPERR (.DCX9,<Gateway SNA Trace server aborted link>)
	NSPERR (.DCX11,<Undefined error>)
	NSPERR (.DCX21,<Connect initiate with illegal destination address>)
	NSPERR (.DCX22,<Connect confirm wiht illegal destination address>)
	NSPERR (.DCX23,<Connect confirm with zero source address>)
	NSPERR (.DCX24,<Flow control violation>)
	NSPERR (.DCX32,<Too many connections to node>)
	NSPERR (.DCX33,<Too many connections to destination process>)
	NSPERR (.DCX34,<Access not permitted>)
	NSPERR (.DCX35,<Logical link services mismatch>)
	NSPERR (.DCX36,<Invalid account>)
	NSPERR (.DCX37,<Segment size too small>)
	NSPERR (.DCX38,<Process aborted>)
	NSPERR (.DCX39,<No path to destination node>)
	NSPERR (.DCX40,<Link aborted due to data loss>)
	NSPERR (.DCX41,<Destination logical link address does not exist>)
	NSPERR (.DCX42,<Confirmation of disconnect initiate>)
	NSPERR (.DCX43,<Image data field too long>)

NSPLEN=.-NSPT20

        END