ussd.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. *
  3. * oFono - Open Source Telephony
  4. *
  5. * Copyright (C) 2008-2011 Intel Corporation. All rights reserved.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. *
  20. */
  21. #ifndef __OFONO_USSD_H
  22. #define __OFONO_USSD_H
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. #include <ofono/types.h>
  27. /* 3GPP TS 27.007 section 7.15, values for <m> */
  28. enum ofono_ussd_status {
  29. OFONO_USSD_STATUS_NOTIFY = 0,
  30. OFONO_USSD_STATUS_ACTION_REQUIRED = 1,
  31. OFONO_USSD_STATUS_TERMINATED = 2,
  32. OFONO_USSD_STATUS_LOCAL_CLIENT_RESPONDED = 3,
  33. OFONO_USSD_STATUS_NOT_SUPPORTED = 4,
  34. OFONO_USSD_STATUS_TIMED_OUT = 5,
  35. };
  36. struct ofono_ussd;
  37. typedef void (*ofono_ussd_cb_t)(const struct ofono_error *error, void *data);
  38. struct ofono_ussd_driver {
  39. const char *name;
  40. int (*probe)(struct ofono_ussd *ussd, unsigned int vendor, void *data);
  41. void (*remove)(struct ofono_ussd *ussd);
  42. void (*request)(struct ofono_ussd *ussd, int dcs,
  43. const unsigned char *pdu, int len,
  44. ofono_ussd_cb_t, void *data);
  45. void (*cancel)(struct ofono_ussd *ussd,
  46. ofono_ussd_cb_t cb, void *data);
  47. };
  48. void ofono_ussd_notify(struct ofono_ussd *ussd, int status, int dcs,
  49. const unsigned char *data, int data_len);
  50. int ofono_ussd_driver_register(const struct ofono_ussd_driver *d);
  51. void ofono_ussd_driver_unregister(const struct ofono_ussd_driver *d);
  52. struct ofono_ussd *ofono_ussd_create(struct ofono_modem *modem,
  53. unsigned int vendor,
  54. const char *driver, void *data);
  55. void ofono_ussd_register(struct ofono_ussd *ussd);
  56. void ofono_ussd_remove(struct ofono_ussd *ussd);
  57. void ofono_ussd_set_data(struct ofono_ussd *ussd, void *data);
  58. void *ofono_ussd_get_data(struct ofono_ussd *ussd);
  59. #ifdef __cplusplus
  60. }
  61. #endif
  62. #endif /* __OFONO_USSD_H */