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

IP电话/视频会议

开发平台:

Visual C++

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