diff options
author | elliott_c <ocielliottc@users.noreply.github.com> | 2008-04-28 12:40:23 +0000 |
---|---|---|
committer | elliott_c <ocielliottc@users.noreply.github.com> | 2008-04-28 12:40:23 +0000 |
commit | 991b5be2aadacab5024c310935611843a0e2bfc6 (patch) | |
tree | d15d62b26b959e334abf9fbd1b8f11b00254e47b /TAO/tao/params.h | |
parent | 2378864442e1bad75fcb157f42e0433d3a1036fc (diff) | |
download | ATCD-991b5be2aadacab5024c310935611843a0e2bfc6.tar.gz |
ChangeLogTag: Mon Apr 28 12:42:36 UTC 2008 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/tao/params.h')
-rw-r--r-- | TAO/tao/params.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/TAO/tao/params.h b/TAO/tao/params.h index c6f3e990806..93b4f7dafb8 100644 --- a/TAO/tao/params.h +++ b/TAO/tao/params.h @@ -125,6 +125,11 @@ public: int linger (void) const; void linger (int); + /// The amount of time desired by the user to wait to accept + /// connections after a particular type of accept() error. + time_t accept_error_delay (void) const; + void accept_error_delay (time_t); + /// Set/Get the Init Reference of an arbitrary ObjectID. char *default_init_ref (void) const; void default_init_ref (const char *default_init_ref); @@ -308,6 +313,9 @@ private: /// For setting the SO_LINGER option int linger_; + /// For setting the accept retry delay + time_t accept_error_delay_; + /// If true then the standard OMG components are not generated. int std_profile_components_; |