-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Wi-Fi/802.11 related radiotap fields: MCS, HE, VHT #207
base: master
Are you sure you want to change the base?
Conversation
jerkerolofsson
commented
Mar 6, 2024
- Support for Wi-Fi/802.11 related radiotap fields: MCS, HE, VHT. Reference: https://www.radiotap.org/fields/defined
- Added file header
- Add parsing of VeryHighThroughput radio tap field
} | ||
|
||
[Test] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Format
/* | ||
* Copyright 2010 Chris Morgan <[email protected]> | ||
*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can remove this bit from all files you've added.
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Formatting
public override ushort Length => 12; | ||
|
||
/// <summary> | ||
/// |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix comments throughout file please.
/// </summary> | ||
public RadioTapMcsFlags Flags { get; set; } | ||
|
||
public byte Mcs { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment?
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Formatting, best reformat this entire file.
…ield by adding more enumerations
Commands and formatting added. Please provide additional feedback if further changes are needed. |
/* | ||
This file is part of PacketDotNet. | ||
|
||
This Source Code Form is subject to the terms of the Mozilla Public | ||
License, v. 2.0. If a copy of the MPL was not distributed with this | ||
file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This bit still needs to exists, the lower copyright block doesn't.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some misc left.
Anything more I need to do? |