model/linux/ipv6-linux.cc
changeset 546 d7753e122d06
parent 541 de7335a01743
child 586 f6626666ce8e
--- a/model/linux/ipv6-linux.cc	Thu Jan 09 00:39:11 2014 +0900
+++ b/model/linux/ipv6-linux.cc	Thu Jan 09 19:58:10 2014 +0900
@@ -30,6 +30,7 @@
 #include "linux-udp6-socket-factory-impl.h"
 #include "linux-tcp6-socket-factory-impl.h"
 #include "linux-dccp6-socket-factory-impl.h"
+#include "linux-sctp6-socket-factory-impl.h"
 
 NS_LOG_COMPONENT_DEFINE ("Ipv6Linux");
 
@@ -416,6 +417,8 @@
   node->AggregateObject (tcp6Factory);
   Ptr<LinuxDccp6SocketFactoryImpl> dccp6Factory = CreateObject<LinuxDccp6SocketFactoryImpl> ();
   node->AggregateObject (dccp6Factory);
+  Ptr<LinuxSctp6SocketFactoryImpl> sctp6Factory = CreateObject<LinuxSctp6SocketFactoryImpl> ();
+  node->AggregateObject (sctp6Factory);
 }
 Ptr<Ipv6Interface>
 Ipv6Linux::GetInterface (uint32_t index) const