Ieee80211SubtypeTag.msg

Msg File src/inet/linklayer/ieee80211/mac/Ieee80211SubtypeTag.msg

Name Type Description
Ieee80211SubtypeTagBase class (no description)
Ieee80211SubtypeReq class

Determines the MAC header subtype for an outgoing packet.

Ieee80211SubtypeInd class

Specifies the MAC header subtype for an incoming packet.

Source code

//
// Copyright (C) 2020 OpenSim Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
//

import inet.common.INETDefs;
import inet.common.TagBase;

namespace inet;

class Ieee80211SubtypeTagBase extends TagBase
{
    int subtype;
}

//
// Determines the MAC header subtype for an outgoing packet.
//
class Ieee80211SubtypeReq extends Ieee80211SubtypeTagBase
{
}

//
// Specifies the MAC header subtype for an incoming packet.
//
class Ieee80211SubtypeInd extends Ieee80211SubtypeTagBase
{
}