/*
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 2010 Chris Morgan
*/
using System;
namespace PacketDotNet
{
namespace Ieee80211
{
///
/// Radio tap flags
///
[Flags]
public enum RadioTapFlags
{
///
/// sent/received during cfp
///
CFP = 0x01,
///
/// sent/received with short preamble
///
ShortPreamble = 0x02,
///
/// sent/received with WEP encryption
///
WepEncrypted = 0x04,
///
/// sent/received with fragmentation
///
Fragmentation = 0x08,
///
/// frame includes FCS
///
FcsIncludedInFrame = 0x10,
///
/// frame includes padding to the 32 bit boundary between the 802.11 header and the payload
///
PostFramePadding = 0x20,
///
///fFrame failed the fcs check
///
FailedFcsCheck = 0x40
};
}
}