Msg File src/inet/linklayer/lmac/LMacFrame.msg

Name Type Description
LMacFrame packet (no description)

Source code:

// A LMAC packet format definition
//
// @author Anna Foerster

cplusplus {{
    #include "inet/linklayer/base/MACFrameBase_m.h"
}}

namespace inet;

class noncobject MACAddress;
class MACFrameBase;

packet LMacFrame extends MACFrameBase
{
    int        mySlot; // the node's current slot number
    MACAddress occupiedSlots[]; // currently known occupied slots
}