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

IP电话/视频会议

开发平台:

Visual C++

  1. // PCreateDataNodeREQ.cpp: implementation of the PCreateDataNodeREQ class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "PCreateDataNodeREQ.h"
  5. //////////////////////////////////////////////////////////////////////
  6. // Construction/Destruction
  7. //////////////////////////////////////////////////////////////////////
  8. PCreateDataNodeREQ::PCreateDataNodeREQ()
  9. {
  10. this->Tag = PCreateDataNodeREQTAG;
  11. this->name = "";
  12. }
  13. PCreateDataNodeREQ::~PCreateDataNodeREQ()
  14. {
  15. }
  16. bool PCreateDataNodeREQ::assembleData( const char * name )
  17. {
  18. this->buffer.Resize( 2 * INT_SIZE + strlen( name ) + CHAR_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. strcpy( now , name );
  23. return true;
  24. }
  25. bool PCreateDataNodeREQ::parseData( CBuffer & buffer )
  26. {
  27. if( ! buffer.GetSize( ) ) return false;
  28. this->name = buffer.GetBuffer( ) + 2 * INT_SIZE;
  29. return true;
  30. }