Changeset 5
- Timestamp:
- 03/15/03 19:30:18 (5 years ago)
- Files:
-
- cvs-import/trunk/wlan/if_ieee80211.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cvs-import/trunk/wlan/if_ieee80211.h
r4 r5 591 591 592 592 /* private extensions to netdevice.h's netif_msg* mechanism */ 593 #define NETIF_MSG_DEBUG 0x80000000 /* enable debugging msgs */ 593 #define NETIF_MSG_DEBUG 0x80000000 /* IFF_DEBUG equivalent */ 594 #define NETIF_MSG_LINK2 0x40000000 /* IFF_LINK2 equivalant */ 594 595 #define netif_msg_debug(p) ((p)->msg_enable & NETIF_MSG_DEBUG) 596 #define netif_msg_dumppkts(p) \ 597 ((p)->msg_enable & (NETIF_MSG_DEBUG|NETIF_MSG_LINK2) == \ 598 (NETIF_MSG_DEBUG|NETIF_MSG_LINK2)) 599 600 const char *ether_sprintf(const u_int8_t *); /* XXX */ 595 601 596 602 int ieee80211_ifattach(struct net_device *); … … 598 604 void ieee80211_input(struct net_device *, struct sk_buff *, int, u_int32_t); 599 605 int ieee80211_mgmt_output(struct net_device *, struct ieee80211_node *, 600 struct sk_buff *, int);606 struct sk_buff *, int); 601 607 struct sk_buff *ieee80211_encap(struct net_device *, struct sk_buff *); 602 608 struct sk_buff *ieee80211_decap(struct net_device *, struct sk_buff *); … … 607 613 void ieee80211_next_scan(struct net_device *); 608 614 void ieee80211_end_scan(struct net_device *); 609 struct ieee80211_node *ieee80211_alloc_node(struct ieee80211com *, u_int8_t *,610 int);615 struct ieee80211_node *ieee80211_alloc_node(struct ieee80211com *, 616 u_int8_t *, int); 611 617 struct ieee80211_node *ieee80211_find_node(struct ieee80211com *, u_int8_t *); 612 618 void ieee80211_free_node(struct ieee80211com *, struct ieee80211_node *);
