mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-12 11:52:01 +01:00
7b22b2cc04
git-svn-id: file:///home/svn/framework3/trunk@7292 4d416f70-5f16-0410-b530-b9f4589650da
32 lines
478 B
C
32 lines
478 B
C
#ifndef _MSFLORCON_H
|
|
#define _MSFLORCON_H
|
|
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <sys/socket.h>
|
|
|
|
#include <lorcon2/lorcon.h>
|
|
#include <pcap.h>
|
|
|
|
struct rldev {
|
|
struct lorcon *context;
|
|
};
|
|
|
|
struct rlpack {
|
|
struct lorcon_packet *packet;
|
|
|
|
/* dot3 construction via multiple elements */
|
|
u_char *bssid, *dot3;
|
|
int dir, len;
|
|
};
|
|
|
|
|
|
typedef struct rblorconjob {
|
|
struct pcap_pkthdr hdr;
|
|
unsigned char *pkt;
|
|
} rblorconjob_t;
|
|
|
|
#endif
|