Prepare ND cache for ground space networks

This commit is contained in:
Tim Schubert 2020-07-02 20:17:31 +02:00
parent ed80214449
commit 227ae70a1d
5 changed files with 110 additions and 56 deletions

23
helper/nd-cache-helper.h Normal file
View file

@ -0,0 +1,23 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
#include "ns3/core-module.h"
#include "ns3/network-module.h"
#include "ns3/internet-module.h"
#include "ns3/applications-module.h"
#include "ns3/node-container.h"
#ifndef NDS_CACHE_HELPER_
#define NDS_CACHE_HELPER_
namespace ns3 {
class NdCacheHelper
{
public:
void Install (NetDeviceContainer &devices, Ipv6InterfaceContainer &interfaces) const;
void Install (NetDeviceContainer &devicesSrc, NetDeviceContainer &devicesDst, Ipv6InterfaceContainer &interfaces) const;
};
}; /* namespace ns3 */
#endif /* NDS_CACHE_HELPER */