src/internet-stack/ipv6-raw-socket-impl.cc
changeset 6357 2e15529e2402
parent 6333 c461f7a25895
equal deleted inserted replaced
6356:1b8a736858cc 6357:2e15529e2402
   335       return true;
   335       return true;
   336     }
   336     }
   337   return false;
   337   return false;
   338 }
   338 }
   339 
   339 
       
   340 void
       
   341 Ipv6RawSocketImpl::SetAllowBroadcast (bool allowBroadcast)
       
   342 {
       
   343   if (!allowBroadcast) 
       
   344     {
       
   345       NS_FATAL_ERROR ("not implemented");
       
   346     }
       
   347 }
       
   348 
       
   349 bool
       
   350 Ipv6RawSocketImpl::GetAllowBroadcast () const
       
   351 {
       
   352   return true;
       
   353 }
       
   354 
   340 } /* namespace ns3 */
   355 } /* namespace ns3 */
   341 
   356