import { ENUMERATED } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; export declare enum _enum_for_Abort { mistypedPDU = 0, unboundRequest = 1, invalidPDU = 2, resourceLimitation = 3, connectionFailed = 4, invalidProtocol = 5, reasonNotSpecified = 6 } /** * @summary Abort * @description * * ### ASN.1 Definition: * * ```asn1 * Abort ::= ENUMERATED { * mistypedPDU (0), * unboundRequest (1), * invalidPDU (2), * resourceLimitation (3), * connectionFailed (4), * invalidProtocol (5), * reasonNotSpecified (6), * ...} * ``` * * @enum {number} */ export type Abort = _enum_for_Abort | ENUMERATED; /** * @summary Abort_mistypedPDU * @constant * @type {number} */ export declare const Abort_mistypedPDU: Abort; /** * @summary mistypedPDU * @constant * @type {number} */ export declare const mistypedPDU: Abort; /** * @summary Abort_unboundRequest * @constant * @type {number} */ export declare const Abort_unboundRequest: Abort; /** * @summary unboundRequest * @constant * @type {number} */ export declare const unboundRequest: Abort; /** * @summary Abort_invalidPDU * @constant * @type {number} */ export declare const Abort_invalidPDU: Abort; /** * @summary invalidPDU * @constant * @type {number} */ export declare const invalidPDU: Abort; /** * @summary Abort_resourceLimitation * @constant * @type {number} */ export declare const Abort_resourceLimitation: Abort; /** * @summary resourceLimitation * @constant * @type {number} */ export declare const resourceLimitation: Abort; /** * @summary Abort_connectionFailed * @constant * @type {number} */ export declare const Abort_connectionFailed: Abort; /** * @summary connectionFailed * @constant * @type {number} */ export declare const connectionFailed: Abort; /** * @summary Abort_invalidProtocol * @constant * @type {number} */ export declare const Abort_invalidProtocol: Abort; /** * @summary invalidProtocol * @constant * @type {number} */ export declare const invalidProtocol: Abort; /** * @summary Abort_reasonNotSpecified * @constant * @type {number} */ export declare const Abort_reasonNotSpecified: Abort; /** * @summary reasonNotSpecified * @constant * @type {number} */ export declare const reasonNotSpecified: Abort; export declare const _decode_Abort: $.ASN1Decoder; export declare const _encode_Abort: $.ASN1Encoder; //# sourceMappingURL=Abort.ta.d.mts.map