2009-10-22 15:46:01 +00:00
|
|
|
#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>
|
2009-10-27 20:13:20 +00:00
|
|
|
#include <pcap.h>
|
2009-10-22 15:46:01 +00:00
|
|
|
|
|
|
|
struct rldev {
|
|
|
|
struct lorcon *context;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rlpack {
|
|
|
|
struct lorcon_packet *packet;
|
|
|
|
|
|
|
|
/* dot3 construction via multiple elements */
|
|
|
|
u_char *bssid, *dot3;
|
|
|
|
int dir, len;
|
|
|
|
};
|
|
|
|
|
2009-10-27 20:13:20 +00:00
|
|
|
|
|
|
|
typedef struct rblorconjob {
|
|
|
|
struct pcap_pkthdr hdr;
|
|
|
|
unsigned char *pkt;
|
|
|
|
} rblorconjob_t;
|
|
|
|
|
2009-10-22 15:46:01 +00:00
|
|
|
#endif
|