00001 /* 00002 * 00003 * 00004 * Distributed under the OpenDDS License. 00005 * See: http://www.opendds.org/license.html 00006 */ 00007 00008 #include "Udp.h" 00009 #include "UdpLoader.h" 00010 00011 #include "ace/Service_Config.h" 00012 00013 namespace OpenDDS { 00014 namespace DCPS { 00015 00016 UdpInitializer::UdpInitializer() 00017 { 00018 ACE_Service_Config::process_directive(ace_svc_desc_UdpLoader); 00019 00020 #if (OPENDDS_UDP_HAS_DLL == 0) 00021 ACE_Service_Config::process_directive(ACE_TEXT("static OpenDDS_Udp")); 00022 #endif /* OPENDDS_UDP_HAS_DLL */ 00023 } 00024 00025 } // namespace DCPS 00026 } // namespace OpenDDS