00001 /* 00002 * 00003 * 00004 * Distributed under the OpenDDS License. 00005 * See: http://www.opendds.org/license.html 00006 */ 00007 00008 #include "dds/DCPS/transport/framework/EntryExit.h" 00009 00010 ACE_INLINE 00011 OpenDDS::DCPS::TcpInst::TcpInst(const OPENDDS_STRING& name) 00012 : TransportInst("tcp", name), 00013 enable_nagle_algorithm_(false), 00014 conn_retry_initial_delay_(500), 00015 conn_retry_backoff_multiplier_(2.0), 00016 conn_retry_attempts_(3), 00017 max_output_pause_period_(-1), 00018 passive_reconnect_duration_(2000) 00019 { 00020 DBG_ENTRY_LVL("TcpInst", "TcpInst", 6); 00021 }