ieee802154.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright (C) 2007, 2008, 2009 Siemens AG
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2
  6. * as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along
  14. * with this program; if not, write to the Free Software Foundation, Inc.,
  15. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  16. *
  17. */
  18. #ifndef IEEE_802154_LOCAL_H
  19. #define IEEE_802154_LOCAL_H
  20. int __init ieee802154_nl_init(void);
  21. void __exit ieee802154_nl_exit(void);
  22. #define IEEE802154_OP(_cmd, _func) \
  23. { \
  24. .cmd = _cmd, \
  25. .policy = ieee802154_policy, \
  26. .doit = _func, \
  27. .dumpit = NULL, \
  28. .flags = GENL_ADMIN_PERM, \
  29. }
  30. #define IEEE802154_DUMP(_cmd, _func, _dump) \
  31. { \
  32. .cmd = _cmd, \
  33. .policy = ieee802154_policy, \
  34. .doit = _func, \
  35. .dumpit = _dump, \
  36. }
  37. struct genl_info;
  38. struct sk_buff *ieee802154_nl_create(int flags, u8 req);
  39. int ieee802154_nl_mcast(struct sk_buff *msg, unsigned int group);
  40. struct sk_buff *ieee802154_nl_new_reply(struct genl_info *info,
  41. int flags, u8 req);
  42. int ieee802154_nl_reply(struct sk_buff *msg, struct genl_info *info);
  43. extern struct genl_family nl802154_family;
  44. /* genetlink ops/groups */
  45. int ieee802154_list_phy(struct sk_buff *skb, struct genl_info *info);
  46. int ieee802154_dump_phy(struct sk_buff *skb, struct netlink_callback *cb);
  47. int ieee802154_add_iface(struct sk_buff *skb, struct genl_info *info);
  48. int ieee802154_del_iface(struct sk_buff *skb, struct genl_info *info);
  49. enum ieee802154_mcgrp_ids {
  50. IEEE802154_COORD_MCGRP,
  51. IEEE802154_BEACON_MCGRP,
  52. };
  53. int ieee802154_associate_req(struct sk_buff *skb, struct genl_info *info);
  54. int ieee802154_associate_resp(struct sk_buff *skb, struct genl_info *info);
  55. int ieee802154_disassociate_req(struct sk_buff *skb, struct genl_info *info);
  56. int ieee802154_scan_req(struct sk_buff *skb, struct genl_info *info);
  57. int ieee802154_start_req(struct sk_buff *skb, struct genl_info *info);
  58. int ieee802154_list_iface(struct sk_buff *skb, struct genl_info *info);
  59. int ieee802154_dump_iface(struct sk_buff *skb, struct netlink_callback *cb);
  60. #endif