Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(980)

Unified Diff: src/dsdvipv6/helper/dsdv-helper-ipv6.h

Issue 310910043: NS3.25 DSDV_IPv6 Module
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/dsdvipv6/doc/dsdv.rst ('k') | src/dsdvipv6/helper/dsdv-helper-ipv6.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/dsdvipv6/helper/dsdv-helper-ipv6.h
===================================================================
new file mode 100644
--- /dev/null
+++ b/src/dsdvipv6/helper/dsdv-helper-ipv6.h
@@ -0,0 +1,81 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+/*
+ * Copyright (c) 2010 Hemanth Narra
+ *
+ * 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
+ *
+ * Authors: Hemanth Narra <hemanth@ittc.ku.com>, written after OlsrHelper by Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
+ *
+ * James P.G. Sterbenz <jpgs@ittc.ku.edu>, director
+ * ResiliNets Research Group http://wiki.ittc.ku.edu/resilinets
+ * Information and Telecommunication Technology Center (ITTC)
+ * and Department of Electrical Engineering and Computer Science
+ * The University of Kansas Lawrence, KS USA.
+ *
+ * Work supported in part by NSF FIND (Future Internet Design) Program
+ * under grant CNS-0626918 (Postmodern Internet Architecture),
+ * NSF grant CNS-1050226 (Multilayer Network Resilience Analysis and Experimentation on GENI),
+ * US Department of Defense (DoD), and ITTC at The University of Kansas.
+ * Modifíed by: Gonçalo Atanásio <goncalo.atanasio@tecnico.ulisboa.pt>
+ */
+
+#ifndef DSDVIPV6_HELPER_H
+#define DSDVIPV6_HELPER_H
+
+#include "ns3/object-factory.h"
+#include "ns3/node.h"
+#include "ns3/node-container.h"
+#include "ns3/ipv6-routing-helper.h"
+
+namespace ns3 {
+/**
+ * \ingroup dsdv
+ * \brief Helper class that adds DSDV routing to nodes.
+ */
+class Dsdvipv6Helper : public Ipv6RoutingHelper
+{
+public:
+ Dsdvipv6Helper ();
+ ~Dsdvipv6Helper ();
+ /**
+ * \returns pointer to clone of this Dsdvipv6Helper
+ *
+ * This method is mainly for internal use by the other helpers;
+ * clients are expected to free the dynamic memory allocated by this method
+ */
+ Dsdvipv6Helper* Copy (void) const;
+
+ /**
+ * \param node the node on which the routing protocol will run
+ * \returns a newly-created routing protocol
+ *
+ * This method will be called by ns3::InternetStackHelper::Install
+ *
+ */
+ virtual Ptr<Ipv6RoutingProtocol> Create (Ptr<Node> node) const;
+ /**
+ * \param name the name of the attribute to set
+ * \param value the value of the attribute to set.
+ *
+ * This method controls the attributes of ns3::dsdvipv6::RoutingProtocolIpv6
+ */
+ void Set (std::string name, const AttributeValue &value);
+
+private:
+ ObjectFactory m_agentFactory; //!< Object factory
+};
+
+}
+
+#endif /* Dsdvipv6_HELPER_H */
« no previous file with comments | « src/dsdvipv6/doc/dsdv.rst ('k') | src/dsdvipv6/helper/dsdv-helper-ipv6.cc » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b