A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
traffic-control
model
mq-queue-disc.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2016 Universita' degli Studi di Napoli Federico II
4
*
5
* This program is free software; you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License version 2 as
7
* published by the Free Software Foundation;
8
*
9
* This program is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
* GNU General Public License for more details.
13
*
14
* You should have received a copy of the GNU General Public License
15
* along with this program; if not, write to the Free Software
16
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
*
18
* Authors: Pasquale Imputato <p.imputato@gmail.com>
19
* Stefano Avallone <stavallo@unina.it>
20
*/
21
22
#ifndef MQ_QUEUE_DISC_H
23
#define MQ_QUEUE_DISC_H
24
25
#include "ns3/queue-disc.h"
26
27
namespace
ns3
{
28
36
class
MqQueueDisc
:
public
QueueDisc
{
37
public
:
42
static
TypeId
GetTypeId
(
void
);
46
MqQueueDisc
();
47
48
virtual
~MqQueueDisc
();
49
54
WakeMode
GetWakeMode
(
void
)
const
;
55
56
private
:
57
virtual
bool
DoEnqueue
(
Ptr<QueueDiscItem>
item);
58
virtual
Ptr<QueueDiscItem>
DoDequeue
(
void
);
59
virtual
Ptr<const QueueDiscItem>
DoPeek
(
void
);
60
virtual
bool
CheckConfig
(
void
);
61
virtual
void
InitializeParams
(
void
);
62
};
63
64
}
// namespace ns3
65
66
#endif
/* MQ_QUEUE_DISC_H */
ns3::MqQueueDisc
mq is a classful multi-queue aware dummy scheduler.
Definition:
mq-queue-disc.h:36
ns3::Ptr
Smart pointer class similar to boost::intrusive_ptr.
Definition:
ptr.h:73
ns3::MqQueueDisc::DoEnqueue
virtual bool DoEnqueue(Ptr< QueueDiscItem > item)
This function actually enqueues a packet into the queue disc.
Definition:
mq-queue-disc.cc:59
ns3::MqQueueDisc::DoDequeue
virtual Ptr< QueueDiscItem > DoDequeue(void)
This function actually extracts a packet from the queue disc.
Definition:
mq-queue-disc.cc:65
ns3::MqQueueDisc::MqQueueDisc
MqQueueDisc()
MqQueueDisc constructor.
Definition:
mq-queue-disc.cc:41
ns3::MqQueueDisc::DoPeek
virtual Ptr< const QueueDiscItem > DoPeek(void)
Return a copy of the next packet the queue disc will extract.
Definition:
mq-queue-disc.cc:71
ns3::QueueDisc
QueueDisc is an abstract base class providing the interface and implementing the operations common to...
Definition:
queue-disc.h:182
ns3::MqQueueDisc::CheckConfig
virtual bool CheckConfig(void)
Check whether the current configuration is correct.
Definition:
mq-queue-disc.cc:77
ns3::MqQueueDisc::GetWakeMode
WakeMode GetWakeMode(void) const
Return the wake mode adopted by this queue disc.
Definition:
mq-queue-disc.cc:53
ns3::MqQueueDisc::InitializeParams
virtual void InitializeParams(void)
Initialize parameters (if any) before the first packet is enqueued.
Definition:
mq-queue-disc.cc:97
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::MqQueueDisc::~MqQueueDisc
virtual ~MqQueueDisc()
Definition:
mq-queue-disc.cc:47
ns3::QueueDisc::WakeMode
WakeMode
Used to determine whether the queue disc itself or its children must be activated when a netdevice wa...
Definition:
queue-disc.h:474
ns3::MqQueueDisc::GetTypeId
static TypeId GetTypeId(void)
Get the type ID.
Definition:
mq-queue-disc.cc:31
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:58
Generated on Wed Nov 7 2018 10:02:11 for ns-3 by
1.8.14