Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 5, 2007, 6:23:10 PM (16 years ago)
Author:
scheusso
Message:

errorless

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/network/PacketDecoder.cc

    r405 r415  
    137137        cid->length = ((classid*)(packet->data))->length;
    138138        cid->id = ((classid *)(packet->data))->id;
    139         cid->classid = ((classid *)(packet->data))->classid;
     139        cid->clid = ((classid *)(packet->data))->clid;
    140140        cid->message = (const char *)malloc(cid->length);
    141141        enet_packet_destroy( packet );
     
    193193        cout << "id of classid:    " << cid->id << endl;
    194194        cout << "size of classid:  " << cid->length << endl;
    195         cout << "ID of classid:    " << cid->classid <<endl;
     195        cout << "ID of classid:    " << cid->clid <<endl;
    196196        cout << "data of classid:  " << cid->message <<endl;
    197197}
Note: See TracChangeset for help on using the changeset viewer.