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

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * msg-decl.h - message declarations
  3.  *
  4.  * This file contains declarations of the message types. See the
  5.  * architecture document to see how these should be interpreted and
  6.  * modified.
  7.  *
  8.  * This file is included by a number of other files.
  9.  *
  10.  * Lars Wirzenius
  11.  */
  12. MSG(heartbeat,
  13. {
  14. INTEGER(load);
  15. })
  16. MSG(admin,
  17.         {
  18.         INTEGER(command);
  19. })
  20.     
  21. MSG(sms,
  22. {
  23. OCTSTR(sender);
  24. OCTSTR(receiver);
  25. OCTSTR(udhdata);
  26. OCTSTR(msgdata);
  27. INTEGER(time);
  28. OCTSTR(smsc_id);
  29. OCTSTR(service);
  30. OCTSTR(account);
  31. INTEGER(id);
  32. INTEGER(sms_type);
  33. INTEGER(mclass);
  34. INTEGER(mwi);
  35. INTEGER(coding);
  36. INTEGER(compress);
  37. INTEGER(validity);
  38. INTEGER(deferred);
  39. INTEGER(dlr_mask);
  40. OCTSTR(dlr_url);
  41. INTEGER(pid);
  42. INTEGER(alt_dcs);
  43.         INTEGER(rpi);
  44. OCTSTR(charset);
  45. })
  46. MSG(ack,
  47. {
  48. INTEGER(nack);
  49. INTEGER(time);
  50. INTEGER(id);
  51. })
  52.     
  53. MSG(wdp_datagram,
  54. {
  55. OCTSTR(source_address);
  56. INTEGER(source_port);
  57. OCTSTR(destination_address);
  58. INTEGER(destination_port);
  59. OCTSTR(user_data);
  60. })
  61. #undef MSG
  62. #undef INTEGER
  63. #undef OCTSTR