SmppConnection.cpp
上传用户:hkcoast
上传日期:2007-01-12
资源大小:979k
文件大小:1k
源码类别:

手机短信编程

开发平台:

Visual C++

  1. // SmppConnection.cpp: implementation of the CSmppConnection class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. //#include "SMPPAPI.h"
  6. #include "SmppConnection.h"
  7. #include "smpppacket.h"
  8. #ifdef _DEBUG
  9. #undef THIS_FILE
  10. static char THIS_FILE[]=__FILE__;
  11. #define new DEBUG_NEW
  12. #endif
  13. //////////////////////////////////////////////////////////////////////
  14. // Construction/Destruction
  15. //////////////////////////////////////////////////////////////////////
  16. CSmppConnection::CSmppConnection()
  17. {
  18. m_system_id = "";
  19. m_password = "";
  20. m_system_type = "";
  21. }
  22. CSmppConnection::~CSmppConnection()
  23. {
  24. }
  25. int CSmppConnection::bind(CString sysid, CString passwd, CString systype, CString addrrange)
  26. {
  27. CSmppAddress adrrng;
  28. adrrng.setAddrTon(0);
  29. adrrng.setAddrNpi(0);
  30. adrrng.setAddr(addrrange);
  31. return bind(sysid, passwd, systype, adrrng);
  32. }
  33. int CSmppConnection::unbind()
  34. {
  35. CUnbind pak;
  36. sendPacket(pak);
  37. return 0;
  38. }
  39. int CSmppConnection::enquireLink()
  40. {
  41. CEnquireLink pak;
  42. sendPacket(pak);
  43. return 0;
  44. }