
{ This common deck contains the disconnect reason codes sent and
{ received by the Network Access Agent (NAA). These reason codes
{ are sent as disconnect data.

{ The following are the reason codes for sending a close network sap
{ request to the Network Access Provider in the device.

  CONST
    nlc$na_dr_user_request = 1,
{ The protocol error has been further subdivided into the following sub codes.
    nlc$na_dr_unexpected_event = 4,
    nlc$na_dr_unexpected_length = 5,
    nlc$na_dr_insufficient_data = 6,
    nlc$na_dr_length_mismatch = 7,
    nlc$na_dr_namve_error = 8,
    nlc$na_dr_sme_disconnect = 9,

{ The following are the reason codes for close sap indication
{ received by the NAA.

    nlc$na_dr_invalid_priority = 1,
    nlc$na_dr_user_data_too_big = 2,
    nlc$na_dr_nap_det_protocol_err  = 3,

{ The folowing are the reason codes for an open network sap reject
{ received by the NAA. These reason codes are returned by the network
{ layer in the device.

    nlc$na_dr_sap_already_open = 1;

  TYPE
    nlt$na_disconnect_reason = 0 .. 0ff(16);
