/* This file is part of PacketDotNet PacketDotNet is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. PacketDotNet is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with PacketDotNet. If not, see . */ /* * Copyright 2012 Alan Rushforth */ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PacketDotNet { namespace Ieee80211 { /// /// The potential results of authentication or association operations. /// public enum AuthenticationStatusCode { /// /// Constant success. /// Success = 0, /// /// Constant unspecified failure. /// UnspecifiedFailure = 1, /// /// Constant requested capability unsupportable. /// RequestedCapabilityUnsupportable = 10, /// /// Constant unidentifiable prior association. /// UnidentifiablePriorAssociation = 11, /// /// Constant non standard unspecified denial. /// NonStandardUnspecifiedDenial = 12, /// /// Constant authentication algorithm not supported. /// AuthenticationAlgorithmNotSupported = 13, /// /// Constant unexpected sequenec number. /// UnexpectedSequenecNumber = 14, /// /// Constant response to challenge failed. /// ResponseToChallengeFailed = 15, /// /// Constant next frame outside expected window. /// NextFrameOutsideExpectedWindow = 16, /// /// Constant access point resource constrained. /// AccessPointResourceConstrained = 17, /// /// Constant station doesnt support data rates. /// StationDoesntSupportDataRates = 18, /// /// Constant station doesnt support preamble. /// StationDoesntSupportPreamble = 19, /// /// Constant station doesnt support pbcc modulation. /// StationDoesntSupportPbccModulation = 20, /// /// Constant station doesnt support channel agility. /// StationDoesntSupportChannelAgility = 21, /// /// Constant spectrum management required. /// SpectrumManagementRequired = 22, /// /// Constant unacceptable power capability value. /// UnacceptablePowerCapabilityValue = 23, /// /// Constant unacceptable supported channels value. /// UnacceptableSupportedChannelsValue = 24, /// /// Constant station doesnt support short time slot. /// StationDoesntSupportShortTimeSlot = 25, /// /// Constant station doesnt support dsss ofdm. /// StationDoesntSupportDsssOfdm = 26, /// /// Constant invalid information element. /// InvalidInformationElement = 40, /// /// Constant invalid group cipher. /// InvalidGroupCipher = 41, /// /// Constant invalid pairwise cipher. /// InvalidPairwiseCipher = 42, /// /// Constant invalid authentication and key management protocol. /// InvalidAuthenticationAndKeyManagementProtocol = 43, /// /// Constant unsupported rsn information element version. /// UnsupportedRsnInformationElementVersion = 44, /// /// Constant unsupported rsn ie capabilities. /// UnsupportedRsnIeCapabilities = 45, /// /// Constant cipher suite policy rejection. /// CipherSuitePolicyRejection = 46 } } }