summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2000-03-22 04:46:22 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2000-03-22 04:46:22 +0000
commite5798bcd9ace39eb5e639a489bd6d87c2b3a55d3 (patch)
treec2f751d9958b60819638d00c796d1f849ecb80b7
parentbf291d407af235b96a0c0490db2d759b45510bd4 (diff)
downloadATCD-e5798bcd9ace39eb5e639a489bd6d87c2b3a55d3.tar.gz
*** empty log message ***
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a33
1 files changed, 33 insertions, 0 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 6682a9f79f6..d59d2e5374f 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,36 @@
+Tue Mar 21 20:13:01 2000 Ossama Othman <ossama@uci.edu>
+
+ * tao/IIOP_Acceptor.h (TAO_IIOP_Acceptor):
+ * tao/IIOP_Acceptor.cpp (open_default, probe_interfaces):
+
+ Moved network interface probing code into a separate helper
+ function. This makes the code a bit cleaner, and allows both
+ open methods (see below) to use the same probing code.
+
+ (open):
+
+ Open an endpoint with a given port on each network interface for
+ the case where the endpoint only contains a port, i.e. wildcard
+ the hosts/interfaces but use the same port for each interface.
+ For example, given the following network interfaces:
+
+ eth0 foo1.bar.baz
+ eth1 foo2.bar.baz
+
+ and the following "-ORBEndpoint" option:
+
+ -ORBEndpoint iiop://:1234
+
+ The following endpoints will be created (assuming a properly
+ configured host table and/or DNS):
+
+ foo1.bar.baz:1234
+ foo2.bar.baz:1234
+
+ Thanks to Chris Hafey <chris@stentorsoft.com> for motivating
+ this feature. He points out this feature is useful for
+ persistent IORs.
+
Tue Mar 21 21:43:09 2000 Jeff Parsons <parsons@cs.wustl.edu>
* tao/InterfaceC.cpp: