diff options
author | bala <balanatarajan@users.noreply.github.com> | 2003-01-30 23:15:39 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2003-01-30 23:15:39 +0000 |
commit | 6b547f0966c410d6e0622362f70334f0b837b662 (patch) | |
tree | f15a22662e99299ca3b409a3fc33dbf01ff753db /TAO/tao/IIOP_Connection_Handler.h | |
parent | d2433919025aad6360a305a4be37e8d744327c0c (diff) | |
download | ATCD-6b547f0966c410d6e0622362f70334f0b837b662.tar.gz |
ChangeLogTag: Thu Jan 30 17:30:04 2003 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/IIOP_Connection_Handler.h')
-rw-r--r-- | TAO/tao/IIOP_Connection_Handler.h | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/TAO/tao/IIOP_Connection_Handler.h b/TAO/tao/IIOP_Connection_Handler.h index 2868103c8d8..3750e5441de 100644 --- a/TAO/tao/IIOP_Connection_Handler.h +++ b/TAO/tao/IIOP_Connection_Handler.h @@ -132,15 +132,26 @@ public: int set_dscp_codepoint (int tos); - ///Update the tcp properties of the hanlder to the most recent - ///properties set after the last invocation + /// Update the tcp properties of the hanlder to the most recent + /// properties set after the last invocation virtual void update_protocol_properties (int send_buffer_size, - int recv_buffer_size, - int no_delay, - int enable_network_priority); + int recv_buffer_size, + int no_delay, + int enable_network_priority); protected: + /// Constructor that could be used by the derived classes. + /** + * Sometimes new pluggbale protocols which have similarties with + * IIOP may be tempted to this class for their use. Classical + * example being that of IIOP_SSL_Connection_Handler. This + * constructor just initializes its base class and sets all of its + * contents to the default value, if any + */ + TAO_IIOP_Connection_Handler (TAO_ORB_Core *orb_core, + void *arg); + //@{ /** * @name TAO_Connection Handler overloads |