wap_push_ota.h
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * Push OTA header
  3.  *
  4.  * By Aarno Syv鋘en for Wapit Ltd.
  5.  */
  6. #ifndef WAP_PUSH_OTA_H
  7. #define WAP_PUSH_OTA_H
  8. #include "wap/wap_events.h"
  9. #include "wap/wap.h"
  10. #define CURRENT_VERSION 0;
  11. #define CONNECTED_PORT 9201;
  12. /*
  13.  * Type of bearers (see WDP, Appendix C. pp. 78-79). Only one supported
  14.  */
  15. enum {
  16.     GSM_CSD_IPV4 = 0x0A
  17. };
  18. void wap_push_ota_init(wap_dispatch_func_t *wsp_dispatch,
  19.                        wap_dispatch_func_t *wsp_unit_dispatch);
  20. void wap_push_ota_shutdown(void);
  21. void wap_push_ota_dispatch_event(WAPEvent *e);
  22. void wap_push_ota_bb_address_set(Octstr *ba);
  23. #endif