oid_mgt.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (C) 2003 Aurelien Alleaume <slts@free.fr>
  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 as published by
  6. * the Free Software Foundation; either version 2 of the License
  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
  14. * along with this program; if not, see <http://www.gnu.org/licenses/>.
  15. *
  16. */
  17. #if !defined(_OID_MGT_H)
  18. #define _OID_MGT_H
  19. #include "isl_oid.h"
  20. #include "islpci_dev.h"
  21. extern struct oid_t isl_oid[];
  22. int mgt_init(islpci_private *);
  23. void mgt_clean(islpci_private *);
  24. /* I don't know where to put these 2 */
  25. extern const int frequency_list_a[];
  26. int channel_of_freq(int);
  27. void mgt_le_to_cpu(int, void *);
  28. int mgt_set_request(islpci_private *, enum oid_num_t, int, void *);
  29. int mgt_set_varlen(islpci_private *, enum oid_num_t, void *, int);
  30. int mgt_get_request(islpci_private *, enum oid_num_t, int, void *,
  31. union oid_res_t *);
  32. int mgt_commit_list(islpci_private *, enum oid_num_t *, int);
  33. void mgt_set(islpci_private *, enum oid_num_t, void *);
  34. void mgt_get(islpci_private *, enum oid_num_t, void *);
  35. int mgt_commit(islpci_private *);
  36. int mgt_mlme_answer(islpci_private *);
  37. enum oid_num_t mgt_oidtonum(u32 oid);
  38. int mgt_response_to_str(enum oid_num_t, union oid_res_t *, char *);
  39. #endif /* !defined(_OID_MGT_H) */
  40. /* EOF */