#ifndef _DEV_WTAP_WTAPVAR_H
#define _DEV_WTAP_WTAPVAR_H
#include <sys/param.h>
#include <sys/conf.h>
#include <sys/malloc.h>
#include <sys/sockio.h>
#include <sys/socket.h>
#include <net/if.h>
#include <net/if_media.h>
#include <net/ethernet.h>
#include <net80211/ieee80211_var.h>
#include <net80211/ieee80211_regdomain.h>
#if 0
#define DWTAP_PRINTF(...) printf(__VA_ARGS__)
#else
#define DWTAP_PRINTF(...)
#endif
#include "if_wtapioctl.h"
#define MAX_NBR_WTAP (64)
#define BEACON_INTRERVAL (1000)
MALLOC_DECLARE(M_WTAP);
MALLOC_DECLARE(M_WTAP_PACKET);
MALLOC_DECLARE(M_WTAP_BEACON);
MALLOC_DECLARE(M_WTAP_RXBUF);
MALLOC_DECLARE(M_WTAP_PLUGIN);
struct wtap_node {
struct ieee80211_node an_node;
};
#define WTAP_NODE(ni) ((struct ath_node *)(ni))
#define WTAP_NODE_CONST(ni) ((const struct ath_node *)(ni))
struct wtap_buf {
STAILQ_ENTRY(wtap_buf) bf_list;
struct mbuf *m;
};
typedef STAILQ_HEAD(, wtap_buf) wtap_bufhead;
#define WTAP_BUF_BUSY 0x00000002
struct wtap_vap {
struct ieee80211vap av_vap;
int32_t id;
struct cdev *av_dev;
struct wtap_medium *av_md;
struct mbuf *beacon;
struct ieee80211_node *bf_node;
struct callout av_swba;
uint32_t av_bcinterval;
void (*av_recv_mgmt)(struct ieee80211_node *,
struct mbuf *, int, const struct ieee80211_rx_stats *, int, int);
int (*av_newstate)(struct ieee80211vap *,
enum ieee80211_state, int);
void (*av_bmiss)(struct ieee80211vap *);
};
#define WTAP_VAP(vap) ((struct wtap_vap *)(vap))
struct taskqueue;
struct wtap_softc {
struct ieee80211com sc_ic;
char name[7];
int32_t id;
int32_t up;
struct wtap_medium *sc_md;
struct wtap_hal *hal;
struct ieee80211_node* (* sc_node_alloc)
(struct ieee80211vap *, const uint8_t [IEEE80211_ADDR_LEN]);
void (*sc_node_free)(struct ieee80211_node *);
struct mtx sc_mtx;
struct taskqueue *sc_tq;
wtap_bufhead sc_rxbuf;
struct task sc_rxtask;
struct wtap_tx_radiotap_header sc_tx_th;
int sc_tx_th_len;
struct wtap_rx_radiotap_header sc_rx_th;
int sc_rx_th_len;
};
int32_t wtap_attach(struct wtap_softc *, const uint8_t *macaddr);
int32_t wtap_detach(struct wtap_softc *);
void wtap_resume(struct wtap_softc *);
void wtap_suspend(struct wtap_softc *);
void wtap_shutdown(struct wtap_softc *);
void wtap_intr(struct wtap_softc *);
void wtap_inject(struct wtap_softc *, struct mbuf *);
#endif