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

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * ota_prov.h: OTA settings and bookmarks provisioning routines
  3.  *
  4.  * This module contains routines for the SMS OTA (auto configuration) message 
  5.  * creation and manipulation for the sendota HTTP interface.
  6.  *
  7.  * Official Nokia and Ericsson WAP OTA configuration settings coded 
  8.  * by Stipe Tolj <tolj@wapme-systems.de>, Wapme Systems AG.
  9.  * 
  10.  * XML compiler by Aarno Syv鋘en <aarno@wiral.com>, Wiral Ltd.
  11.  */
  12. #ifndef OTA_PROV_H
  13. #define OTA_PROV_H
  14. #include "gwlib/gwlib.h"
  15. /*
  16.  * Our WSP data: a compiled OTA document
  17.  * Return -2 when header error, -1 when compile error, 0 when no error
  18.  */
  19. int ota_pack_message(Msg **msg, Octstr *ota_doc, Octstr *doc_type, 
  20.                      Octstr *from, Octstr *phone_number);
  21. /*
  22.  * Tokenizes a given 'ota-setting' group (without using the xml compiler) to
  23.  * a binary message and returns the whole message including sender and 
  24.  * receiver numbers.
  25.  */
  26. Msg *ota_tokenize_settings(CfgGroup *grp, Octstr *from, Octstr *receiver);
  27. /*
  28.  * Tokenizes a given 'ota-bookmark' group (without using the xml compiler) to
  29.  * a binary message and returns the whole message including sender and 
  30.  * receiver numbers.
  31.  */
  32. Msg *ota_tokenize_bookmarks(CfgGroup *grp, Octstr *from, Octstr *receiver);
  33. #endif /* OTA_PROV_H */