<> <> <> <<>> <> <<>> DIRECTORY Endian USING [BYTE, HWORD]; XNSErrorTypes: CEDAR DEFINITIONS ~ BEGIN ErrorType: TYPE ~ MACHINE DEPENDENT RECORD [a, b: Endian.BYTE]; ErrorParam: TYPE ~ Endian.HWORD; <<>> <> unspecifiedErr: ErrorType ~ [0, 0]; badChecksumErr: ErrorType ~ [0, 1]; noSocketErr: ErrorType ~ [0, 2]; resourceLimitsErr: ErrorType ~ [0, 3]; listenerRejectErr: ErrorType ~ [0, 4]; invalidPacketTypeErr: ErrorType ~ [0, 5]; protocolViolationErr: ErrorType ~ [0, 6]; <> unspecifiedInRouteErr: ErrorType ~ [2, 0]; inconsistentErr: ErrorType ~ [2, 1]; cantGetThereErr: ErrorType ~ [2, 2]; excessHopsErr: ErrorType ~ [2, 3]; tooBigErr: ErrorType ~ [2, 4]; <> nullParam: ErrorParam ~ 0; END.