summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryamuna <yamuna@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-09-19 00:28:50 +0000
committeryamuna <yamuna@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-09-19 00:28:50 +0000
commita4f7eef461b4d725280903b752db0a22aa8c2857 (patch)
treef7896eb8bb6202497a63364cc872f8f79ded2f19
parent40ad7e3cc33cf029cde7f8df27367e02eec47225 (diff)
downloadATCD-a4f7eef461b4d725280903b752db0a22aa8c2857.tar.gz
*** empty log message ***
-rw-r--r--TAO/ChangeLog19
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/SCTP_SEQ.h22
2 files changed, 19 insertions, 22 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 8847c7aee15..0787774f384 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,22 @@
+Thu Sep 18 20:12:45 2003 Yamuna Krishnamurthy <yamuna@oomworks.com>
+
+ * orbsvcs/orbsvcs/AV/FlowSpec_Entry.cpp:
+
+ Modified to include support for SCTP transport protocol.
+
+ * orbsvcs/orbsvcs/AV/AV_Core.h:
+
+ Added TAO_AV_SCTP_SEQ flag to the Protocol enum to specify SCTP
+ protocol.
+
+ * orbsvcs/orbsvcs/AV/AV_Core.cpp:
+
+ Added the loading of SCTP SEQ transport and protocol factories
+ to create transport and protocol objects.
+
+ * orbsvcs/orbsvcs/AV/SCTP_SEQ.h:
+ * orbsvcs/orbsvcs/AV/SCTP_SEQ.cpp:
+
Mon Sep 15 12:06:47 2003 George Edwards <g.edwards@vanderbilt.edu>
* tao/Valuetype/ValueBase.cpp:
diff --git a/TAO/orbsvcs/orbsvcs/AV/SCTP_SEQ.h b/TAO/orbsvcs/orbsvcs/AV/SCTP_SEQ.h
index 86e0bade58b..af7619babbb 100644
--- a/TAO/orbsvcs/orbsvcs/AV/SCTP_SEQ.h
+++ b/TAO/orbsvcs/orbsvcs/AV/SCTP_SEQ.h
@@ -227,28 +227,6 @@ protected:
TAO_AV_Flow_Protocol_Factory *flow_protocol_factory_;
};
-
-/**
- * @class TAO_AV_SCTP_SEQ_Connection_Setup
- * @brief This class is a helper for the TAO_AV_SCTP_SEQ_Acceptor and
- * TAO_AV_SCTP_SEQ_Connector. It basically just reduces duplicate code. It takes
- * the address of the peer in the connection, whether or not it is a multicast
- * connection, and whether it is a connector or acceptor; and creates the local
- * address and flow handler associated with the connection.
- */
-class TAO_AV_Export TAO_AV_SCTP_SEQ_Connection_Setup
-{
-public:
- /// Indicates whether this setup is for a Connector or an Acceptor
- enum ConnectionType {CONNECTOR, ACCEPTOR};
-
- static int setup (TAO_AV_Flow_Handler *&flow_handler,
- ACE_INET_Addr *inet_addr,
- ACE_INET_Addr *&local_addr,
- int is_multicast,
- ConnectionType ct);
-};
-
/**
* @class TAO_AV_SCTP_SEQ_Object
* @brief TAO_AV_Protocol_Object for the User Datagram Protocol (SCTP_SEQ)