仿真平台内核初版 -tlib库 包含<sparc arm riscv powerPC>

This commit is contained in:
liuwb
2026-02-07 20:43:43 +08:00
parent de61f9e2b0
commit b3117648be
9748 changed files with 4309137 additions and 0 deletions

View File

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