A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
point-to-point-remote-channel.cc
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2007, 2008 University of Washington
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
* Author: George Riley <riley@ece.gatech.edu>
19
*/
20
21
#include <iostream>
22
23
#include "
point-to-point-remote-channel.h
"
24
#include "
point-to-point-net-device.h
"
25
#include "ns3/packet.h"
26
#include "ns3/simulator.h"
27
#include "ns3/log.h"
28
#include "ns3/mpi-interface.h"
29
30
NS_LOG_COMPONENT_DEFINE
(
"PointToPointRemoteChannel"
);
31
32
namespace
ns3 {
33
34
NS_OBJECT_ENSURE_REGISTERED
(PointToPointRemoteChannel);
35
36
TypeId
37
PointToPointRemoteChannel::GetTypeId
(
void
)
38
{
39
static
TypeId
tid =
TypeId
(
"ns3::PointToPointRemoteChannel"
)
40
.
SetParent
<
PointToPointChannel
> ()
41
.AddConstructor<PointToPointRemoteChannel> ()
42
;
43
return
tid;
44
}
45
46
PointToPointRemoteChannel::PointToPointRemoteChannel
()
47
{
48
}
49
50
PointToPointRemoteChannel::~PointToPointRemoteChannel
()
51
{
52
}
53
54
bool
55
PointToPointRemoteChannel::TransmitStart
(
56
Ptr<Packet>
p,
57
Ptr<PointToPointNetDevice>
src,
58
Time
txTime)
59
{
60
NS_LOG_FUNCTION
(
this
<< p << src);
61
NS_LOG_LOGIC
(
"UID is "
<< p->
GetUid
() <<
")"
);
62
63
IsInitialized
();
64
65
uint32_t wire = src ==
GetSource
(0) ? 0 : 1;
66
Ptr<PointToPointNetDevice>
dst =
GetDestination
(wire);
67
68
#ifdef NS3_MPI
69
// Calculate the rxTime (absolute)
70
Time
rxTime =
Simulator::Now
() + txTime +
GetDelay
();
71
MpiInterface::SendPacket
(p, rxTime, dst->
GetNode
()->
GetId
(), dst->
GetIfIndex
());
72
#else
73
NS_FATAL_ERROR
(
"Can't use distributed simulator without MPI compiled in"
);
74
#endif
75
return
true
;
76
}
77
78
}
// namespace ns3
src
point-to-point
model
point-to-point-remote-channel.cc
Generated on Tue May 14 2013 11:08:32 for ns-3 by
1.8.1.2