security: revalidate rw permissions for sys_splice and sys_vmsplice
[linux-2.6.22.y-op.git] / include / net / cfg80211.h
blob88171f8ce58a1781f9c1664a41229883e406ea4f
1 #ifndef __NET_CFG80211_H
2 #define __NET_CFG80211_H
4 #include <linux/netlink.h>
5 #include <linux/skbuff.h>
6 #include <net/genetlink.h>
8 /*
9 * 802.11 configuration in-kernel interface
11 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
14 /* from net/wireless.h */
15 struct wiphy;
17 /**
18 * struct cfg80211_ops - backend description for wireless configuration
20 * This struct is registered by fullmac card drivers and/or wireless stacks
21 * in order to handle configuration requests on their interfaces.
23 * All callbacks except where otherwise noted should return 0
24 * on success or a negative error code.
26 * All operations are currently invoked under rtnl for consistency with the
27 * wireless extensions but this is subject to reevaluation as soon as this
28 * code is used more widely and we have a first user without wext.
30 * @add_virtual_intf: create a new virtual interface with the given name
32 * @del_virtual_intf: remove the virtual interface determined by ifindex.
34 struct cfg80211_ops {
35 int (*add_virtual_intf)(struct wiphy *wiphy, char *name,
36 unsigned int type);
37 int (*del_virtual_intf)(struct wiphy *wiphy, int ifindex);
40 #endif /* __NET_CFG80211_H */