Updated logging to include the class/method so that it is more obvious where these...
[ACE_TAO.git] / TAO / tao / Protocols_Hooks.cpp
blobad56ce31a3f951565cf45fe33a4ffd368154a7ca
1 #include "tao/Protocols_Hooks.h"
2 #include "ace/Dynamic_Service.h"
4 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
6 TAO_IIOP_Protocol_Properties::TAO_IIOP_Protocol_Properties ()
7 : send_buffer_size_ (0),
8 recv_buffer_size_ (0),
9 keep_alive_ (0),
10 dont_route_ (0),
11 no_delay_ (0),
12 enable_network_priority_ (0),
13 hop_limit_ (-1)
17 TAO_UIOP_Protocol_Properties::TAO_UIOP_Protocol_Properties ()
18 : send_buffer_size_ (0),
19 recv_buffer_size_ (0)
23 TAO_SHMIOP_Protocol_Properties::TAO_SHMIOP_Protocol_Properties ()
24 : send_buffer_size_ (0),
25 recv_buffer_size_ (0),
26 keep_alive_ (0),
27 dont_route_ (0),
28 no_delay_ (0),
29 preallocate_buffer_size_ (0),
30 mmap_filename_ (),
31 mmap_lockname_ ()
35 TAO_DIOP_Protocol_Properties::TAO_DIOP_Protocol_Properties ()
36 : send_buffer_size_ (0),
37 recv_buffer_size_ (0),
38 enable_network_priority_ (0),
39 hop_limit_ (-1),
40 enable_multicast_loop_ (1)
44 TAO_SCIOP_Protocol_Properties::TAO_SCIOP_Protocol_Properties ()
45 : send_buffer_size_ (0),
46 recv_buffer_size_ (0),
47 keep_alive_ (0),
48 dont_route_ (0),
49 no_delay_ (0),
50 enable_network_priority_ (0),
51 hop_limit_ (-1)
55 TAO_Protocols_Hooks::~TAO_Protocols_Hooks ()
59 TAO_END_VERSIONED_NAMESPACE_DECL