// -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- // // Copyright (c) 2006 Georgia Tech Research Corporation // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation; // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // Author: George F. Riley // #include "ns3/net-device.h" #include "ns3/callback.h" #include "ns3/node.h" #include "ns3/core-config.h" #include "udp-l4-protocol.h" #include "tcp-l4-protocol.h" #include "ipv4-l3-protocol.h" #include "arp-l3-protocol.h" #include "udp-socket-factory-impl.h" #include "tcp-socket-factory-impl.h" #include "ipv4-impl.h" #ifdef NETWORK_SIMULATION_CRADLE #include "nsc-tcp-socket-factory-impl.h" #include "nsc-tcp-l4-protocol.h" #endif namespace ns3 { static void AddArpStack (Ptr node) { Ptr arp = CreateObject (); arp->SetNode (node); node->AggregateObject (arp); } static void AddUdpStack(Ptr node, Ptr ipv4) { Ptr udp = CreateObject (); udp->SetNode (node); ipv4->Insert (udp); Ptr udpFactory = CreateObject (); udpFactory->SetUdp (udp); node->AggregateObject (udpFactory); } static void AddTcpStack(Ptr node, Ptr ipv4) { Ptr tcp = CreateObject (); tcp->SetNode (node); ipv4->Insert (tcp); Ptr tcpFactory = CreateObject (); tcpFactory->SetTcp (tcp); node->AggregateObject (tcpFactory); } static void AddIpv4Impl(Ptr node, Ptr ipv4) { Ptr ipv4Impl = CreateObject (); ipv4Impl->SetIpv4 (ipv4); node->AggregateObject (ipv4Impl); } void AddInternetStack (Ptr node) { AddArpStack(node); Ptr ipv4 = CreateObject (); ipv4->SetNode (node); AddUdpStack (node, ipv4); AddTcpStack (node, ipv4); AddIpv4Impl (node, ipv4); node->AggregateObject (ipv4); } #ifdef NETWORK_SIMULATION_CRADLE static void AddNscStack(Ptr node, Ptr ipv4, const std::string &soname) { Ptr tcp = CreateObject (); tcp->SetNscLibrary(soname); tcp->SetNode (node); ipv4->Insert (tcp); Ptr tcpFactory = CreateObject (); tcpFactory->SetTcp (tcp); node->AggregateObject (tcpFactory); } void AddNscInternetStack (Ptr node, const std::string &soname) { AddArpStack(node); Ptr ipv4 = CreateObject (); ipv4->SetNode (node); AddUdpStack (node, ipv4); AddNscStack (node, ipv4, soname); AddIpv4Impl (node, ipv4); } #else void AddNscInternetStack (Ptr node, const std::string &soname) { NS_ASSERT_MSG(false, "ERROR: ns-3 was compiled without Network Simulation Cradle support"); } #endif }//namespace ns3