libwifi 0.0.3
An 802.11 Frame Parsing and Generation library in C
assoc_request.c File Reference
#include "assoc_request.h"
#include "common.h"
#include <errno.h>
#include <stdlib.h>
#include <string.h>

Go to the source code of this file.

Functions

size_t libwifi_get_assoc_req_length (struct libwifi_assoc_req *assoc_req)
 The length of an association request frame is the sum of the header length, the fixed parameters length, and the tagged parameters length. More...
 
int libwifi_create_assoc_req (struct libwifi_assoc_req *assoc_req, const unsigned char receiver[6], const unsigned char transmitter[6], const unsigned char address3[6], const char *ssid, uint8_t channel)
 The generated association request frame is made with sane defaults defined in common.h. More...
 
size_t libwifi_dump_assoc_req (struct libwifi_assoc_req *assoc_req, unsigned char *buf, size_t buf_len)
 Copy a libwifi_assoc_req into a regular unsigned char buffer. More...
 
void libwifi_free_assoc_req (struct libwifi_assoc_req *assoc_req)
 Because the tagged parameters memory is managed inside of the library, the library must be the one to free it, too. More...
 

Function Documentation

◆ libwifi_create_assoc_req()

int libwifi_create_assoc_req ( struct libwifi_assoc_req assoc_req,
const unsigned char  receiver[6],
const unsigned char  transmitter[6],
const unsigned char  address3[6],
const char *  ssid,
uint8_t  channel 
)

The generated association request frame is made with sane defaults defined in common.h.

Create a new association request.

Two tagged parameters are also added to the association request: SSID and Channel.

Definition at line 36 of file assoc_request.c.

◆ libwifi_dump_assoc_req()

size_t libwifi_dump_assoc_req ( struct libwifi_assoc_req assoc_req,
unsigned char *  buf,
size_t  buf_len 
)

Copy a libwifi_assoc_req into a regular unsigned char buffer.

Dump a libwifi_assoc_req into a raw format for packet injection.

This is useful when injecting generated libwifi frames.

Definition at line 71 of file assoc_request.c.

◆ libwifi_free_assoc_req()

void libwifi_free_assoc_req ( struct libwifi_assoc_req assoc_req)

Because the tagged parameters memory is managed inside of the library, the library must be the one to free it, too.

Free any memory claimed by a libwifi_assoc_req back to the system.

Definition at line 94 of file assoc_request.c.

◆ libwifi_get_assoc_req_length()

size_t libwifi_get_assoc_req_length ( struct libwifi_assoc_req assoc_req)

The length of an association request frame is the sum of the header length, the fixed parameters length, and the tagged parameters length.

Get the length of a given libwifi_assoc_req.

Definition at line 27 of file assoc_request.c.