|
libwifi 0.0.3
An 802.11 Frame Parsing and Generation library in C
|
#include <stdint.h>#include <sys/types.h>#include "../../core/frame/frame.h"#include "../../core/frame/management/common.h"#include "../../core/misc/security.h"Go to the source code of this file.
Functions | |
| int | libwifi_parse_reassoc_resp (struct libwifi_bss *bss, struct libwifi_frame *frame) |
| Parse a reassociation response frame into a libwifi_bss. More... | |
| int libwifi_parse_reassoc_resp | ( | struct libwifi_bss * | bss, |
| struct libwifi_frame * | frame | ||
| ) |
Parse a reassociation response frame into a libwifi_bss.
| bss | A libwifi_bss |
| frame | A libwifi_frame |
Parse a reassociation response frame into a libwifi_bss.
┌─────────────────────────────────────────────┐ │ Header (Ordered or Unordered) │ ── Reassocation Response Header ├─────────────────────────────────────────────┤ │ Fixed Parameters │ ─┐ ├─────────────────────────────────────────────┤ ├── Reassociation Response Body │ Tagged Parameters │ ─┘ └─────────────────────────────────────────────┘
Definition at line 41 of file reassoc_response.c.