Msg File src/inet/linklayer/ieee802154/Ieee802154MacHeader.msg
Name | Type | Description |
---|---|---|
Ieee802154MacHeader | class |
A CSMA mac header format definition |
Source code
//************************************************************************** // * file: Ieee802154MacHeader.msg // * // * author: Daniel Willkomm // * // * copyright: (C) 2004 Telecommunication Networks Group (TKN) at // * Technische Universitaet Berlin, Germany. // * // * This program is free software; you can redistribute it // * and/or modify it under the terms of the GNU General Public // * License as published by the Free Software Foundation; either // * version 2 of the License, or (at your option) any later // * version. // * For further information see file COPYING // * in the top level directory // ************************************************************************** // * part of: framework implementation developed by tkn // * description: - base class for MAC layer packets // * - subclass to create your own MAC layer packets // **************************************************************************/ import inet.common.INETDefs; import inet.common.packet.chunk.Chunk; import inet.linklayer.common.MacAddress; namespace inet; // // A CSMA mac header format definition // // @author Daniel Willkomm // class Ieee802154MacHeader extends FieldsChunk { MacAddress srcAddr; MacAddress destAddr; int networkProtocol = -1; long sequenceId; // Sequence Number to detect duplicate messages }