PConnectTest.cpp
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // PConnectTest.cpp: implementation of the PConnectTest class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "PConnectTest.h"
  5. //////////////////////////////////////////////////////////////////////
  6. // Construction/Destruction
  7. //////////////////////////////////////////////////////////////////////
  8. PConnectTest::PConnectTest()
  9. {
  10. this->Tag = PConnectTestTAG;
  11. this->id = 0;
  12. }
  13. PConnectTest::~PConnectTest()
  14. {
  15. }
  16. bool PConnectTest::assembleData( int id )
  17. {
  18. this->buffer.Resize( 3 * INT_SIZE );
  19. char * now = this->buffer.GetBuffer( );
  20. *( int * )now = this->buffer.GetSize( ); now += INT_SIZE;
  21. *( int * )now = this->Tag; now += INT_SIZE;
  22. *( int * )now = id;
  23. return true;
  24. }
  25. bool PConnectTest::parseData( CBuffer & buffer )
  26. {
  27. if( ! buffer.GetSize( ) ) return false;
  28. this->id = *( int * )( buffer.GetBuffer( ) + 2 * INT_SIZE );
  29. return true;
  30. }