-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbcm43xxinject.h
More file actions
48 lines (35 loc) · 832 Bytes
/
Copy pathbcm43xxinject.h
File metadata and controls
48 lines (35 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef __BCM43XXINJECT_H__
#define __BCM43XXINJECT_H__
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef SYS_LINUX
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <net/if_arp.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <netinet/if_ether.h>
#include <arpa/inet.h>
#include <sys/poll.h>
#include <sys/types.h>
#ifdef HAVE_LINUX_WIRELESS
#include <linux/types.h>
#include <linux/if.h>
#include <linux/wireless.h>
#else
#include <net/if.h>
#endif
#include <net/ethernet.h>
#include <netpacket/packet.h>
#include "wtinject.h"
int tx80211_bcm43xx_init(struct tx80211 *in_tx);
int tx80211_bcm43xx_capabilities();
int bcm43xx_open(struct tx80211 *in_tx);
int bcm43xx_close(struct tx80211 *in_tx);
#endif /* linux */
#endif