Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 24, 2008, 4:47:30 PM (16 years ago)
Author:
scheusso
Message:

bug fixed in packetdecoder (wrong copying)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/network3/src/network/Synchronisable.cc

    r1176 r1177  
    141141  syncData Synchronisable::getData(unsigned char *mem){
    142142    //std::cout << "inside getData" << std::endl;
     143    classID=this->getIdentifier()->getNetworkID();
    143144    std::list<synchronisableVariable *>::iterator i;
    144145    syncData retVal;
     
    146147    retVal.classID=this->classID;
    147148    retVal.length=getSize();
     149    COUT(4) << "Synchronisable getting data from objectID: " << retVal.objectID << " classID: " << retVal.classID << " length: " << retVal.length << std::endl;
    148150    retVal.data=mem;
    149151    // copy to location
Note: See TracChangeset for help on using the changeset viewer.