Changeset 3302 for code/branches/netp6/src/network/packet
- Timestamp:
- Jul 18, 2009, 5:13:38 PM (15 years ago)
- Location:
- code/branches/netp6/src/network/packet
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/netp6/src/network/packet/ClassID.cc
r3214 r3302 142 142 classname = temp+2*sizeof(uint32_t); 143 143 id=ClassByString( std::string((const char*)classname) ); 144 COUT( 0) << "processing classid: " << networkID << " name: " << classname << " id: " << id << std::endl;144 COUT(3) << "processing classid: " << networkID << " name: " << classname << " id: " << id << std::endl; 145 145 if(id==NULL){ 146 146 COUT(0) << "Recieved a bad classname" << endl; -
code/branches/netp6/src/network/packet/FunctionIDs.cc
r3214 r3302 132 132 stringsize = *(uint32_t*)(temp+sizeof(uint32_t)); 133 133 functionname = temp+2*sizeof(uint32_t); 134 COUT( 0) << "processing functionid: " << networkID << " name: " << functionname << std::endl;134 COUT(3) << "processing functionid: " << networkID << " name: " << functionname << std::endl; 135 135 NetworkFunctionBase::setNetworkID((const char*)functionname, networkID); 136 136 temp += 2*sizeof(uint32_t) + stringsize;
Note: See TracChangeset
for help on using the changeset viewer.