blob: 7de746368e0a2f952cc64d32e5c8be001fe3dacf (
plain)
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
|
/*
* Copyright (c) 2011-2012 Espressif System.
*/
#ifndef _ESP_UTILS_H_
#define _ESP_UTILS_H_
#include "linux/types.h"
#include <linux/version.h>
#ifndef BIT
#define BIT(x) (0x1 << (x))
#endif
u32 esp_ieee2mhz(u8 chan);
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 39))
enum ieee80211_key_alg {
ALG_WEP,
ALG_TKIP,
ALG_CCMP,
ALG_AES_CMAC
};
int esp_cipher2alg(int cipher);
void esp_rx_checksum_test(struct sk_buff *skb);
void esp_gen_err_checksum(struct sk_buff *skb);
#endif /* NEW_KERNEL */
bool esp_is_ip_pkt(struct sk_buff *skb);
#endif
|