Deleted Added
full compact
ieee80211_proto.h (248069) ieee80211_proto.h (249925)
1/*-
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 9 unchanged lines hidden (view full) ---

18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 9 unchanged lines hidden (view full) ---

18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/net80211/ieee80211_proto.h 248069 2013-03-08 20:23:55Z adrian $
26 * $FreeBSD: head/sys/net80211/ieee80211_proto.h 249925 2013-04-26 12:50:32Z glebius $
27 */
28#ifndef _NET80211_IEEE80211_PROTO_H_
29#define _NET80211_IEEE80211_PROTO_H_
30
31/*
32 * 802.11 protocol implementation definitions.
33 */
34

--- 57 unchanged lines hidden (view full) ---

92 struct ieee80211_rx_stats *);
93
94struct ieee80211_bpf_params;
95int ieee80211_mgmt_output(struct ieee80211_node *, struct mbuf *, int,
96 struct ieee80211_bpf_params *);
97int ieee80211_raw_xmit(struct ieee80211_node *, struct mbuf *,
98 const struct ieee80211_bpf_params *);
99int ieee80211_output(struct ifnet *, struct mbuf *,
27 */
28#ifndef _NET80211_IEEE80211_PROTO_H_
29#define _NET80211_IEEE80211_PROTO_H_
30
31/*
32 * 802.11 protocol implementation definitions.
33 */
34

--- 57 unchanged lines hidden (view full) ---

92 struct ieee80211_rx_stats *);
93
94struct ieee80211_bpf_params;
95int ieee80211_mgmt_output(struct ieee80211_node *, struct mbuf *, int,
96 struct ieee80211_bpf_params *);
97int ieee80211_raw_xmit(struct ieee80211_node *, struct mbuf *,
98 const struct ieee80211_bpf_params *);
99int ieee80211_output(struct ifnet *, struct mbuf *,
100 struct sockaddr *, struct route *ro);
100 const struct sockaddr *, struct route *ro);
101int ieee80211_raw_output(struct ieee80211vap *, struct ieee80211_node *,
102 struct mbuf *, const struct ieee80211_bpf_params *);
103void ieee80211_send_setup(struct ieee80211_node *, struct mbuf *, int, int,
104 const uint8_t [IEEE80211_ADDR_LEN], const uint8_t [IEEE80211_ADDR_LEN],
105 const uint8_t [IEEE80211_ADDR_LEN]);
106void ieee80211_start(struct ifnet *ifp);
107int ieee80211_send_nulldata(struct ieee80211_node *);
108int ieee80211_classify(struct ieee80211_node *, struct mbuf *m);

--- 309 unchanged lines hidden ---
101int ieee80211_raw_output(struct ieee80211vap *, struct ieee80211_node *,
102 struct mbuf *, const struct ieee80211_bpf_params *);
103void ieee80211_send_setup(struct ieee80211_node *, struct mbuf *, int, int,
104 const uint8_t [IEEE80211_ADDR_LEN], const uint8_t [IEEE80211_ADDR_LEN],
105 const uint8_t [IEEE80211_ADDR_LEN]);
106void ieee80211_start(struct ifnet *ifp);
107int ieee80211_send_nulldata(struct ieee80211_node *);
108int ieee80211_classify(struct ieee80211_node *, struct mbuf *m);

--- 309 unchanged lines hidden ---