diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2005-01-29 05:41:11 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2005-01-29 05:41:11 +0000 |
commit | 58797934e16becbb49d066a9eec9e318c7d1aaa6 (patch) | |
tree | b94598994a9c6eb5307c49565d417c91c91c9937 | |
parent | f2943eb5ea4e174f2f110474a746d5c42535d889 (diff) | |
download | ATCD-58797934e16becbb49d066a9eec9e318c7d1aaa6.tar.gz |
ChangeLogTag:Fri Jan 28 21:39:09 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
-rw-r--r-- | TAO/ChangeLog | 11 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/AV/RTP.h | 3 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/AV/TCP.h | 3 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/AV/UDP.h | 15 |
4 files changed, 24 insertions, 8 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index c142517ae9e..1f4bd481efc 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,6 +1,17 @@ +Fri Jan 28 21:39:09 2005 Ossama Othman <ossama@dre.vanderbilt.edu> + + * orbsvcs/orbsvcs/AV/RTP.h: + * orbsvcs/orbsvcs/AV/TCP.h: + * orbsvcs/orbsvcs/AV/UDP.h: + + Include "ace/Service_Config.h" to pull in + complete ACE_Static_Svc_Descriptor class declaration. + Necessitated by interheader dependency reductions in ACE. + Fri Jan 28 21:07:07 2005 Ossama Othman <ossama@dre.vanderbilt.edu> * tao/CORBANAME_Parser.cpp: + * tao/DynamicInterface/Request.h: Include "ace/SString.h" since to pull in complete ACE string class declarations. Necessitated by include directive diff --git a/TAO/orbsvcs/orbsvcs/AV/RTP.h b/TAO/orbsvcs/orbsvcs/AV/RTP.h index 1af28588edd..14e17886ab0 100644 --- a/TAO/orbsvcs/orbsvcs/AV/RTP.h +++ b/TAO/orbsvcs/orbsvcs/AV/RTP.h @@ -53,6 +53,9 @@ #include "orbsvcs/AV/AV_export.h" #include "orbsvcs/AV/Protocol_Factory.h" +#include "ace/Service_Config.h" + + #define RTP_PT_BVC 22 /* Berkeley video codec */ /* RTP standard content encodings for video */ diff --git a/TAO/orbsvcs/orbsvcs/AV/TCP.h b/TAO/orbsvcs/orbsvcs/AV/TCP.h index 6d43733501b..51bb5235fd6 100644 --- a/TAO/orbsvcs/orbsvcs/AV/TCP.h +++ b/TAO/orbsvcs/orbsvcs/AV/TCP.h @@ -15,10 +15,11 @@ #define TAO_AV_TCP_H #include /**/ "ace/pre.h" -#include "ace/OS.h" #include "Protocol_Factory.h" #include "FlowSpec_Entry.h" +#include "ace/Service_Config.h" + /** * @class TAO_AV_TCP_Factory * @brief diff --git a/TAO/orbsvcs/orbsvcs/AV/UDP.h b/TAO/orbsvcs/orbsvcs/AV/UDP.h index fc608667404..1c228004bcf 100644 --- a/TAO/orbsvcs/orbsvcs/AV/UDP.h +++ b/TAO/orbsvcs/orbsvcs/AV/UDP.h @@ -15,9 +15,10 @@ #define TAO_AV_UDP_H #include /**/ "ace/pre.h" -#include "ace/OS.h" #include "Protocol_Factory.h" +#include "ace/Service_Config.h" + /** * @class TAO_AV_UDP_Factory * @brief @@ -38,7 +39,7 @@ class TAO_AV_UDP_Flow_Handler; /** * @class TAO_AV_UDP_Transport - * @brief A transport abstraction for udp sockets. + * @brief A transport abstraction for udp sockets. * Uses the ACE_SOCK_Dgram to send the data. */ class TAO_AV_Export TAO_AV_UDP_Transport @@ -92,7 +93,7 @@ public: ACE_Time_Value *s = 0); TAO_AV_UDP_Flow_Handler *handler (void) { return this->handler_; } - + protected: TAO_AV_UDP_Flow_Handler *handler_; ACE_Addr *addr_; @@ -101,7 +102,7 @@ protected: /** * @class TAO_AV_UDP_Flow_Handler - * @brief Flow Handler for UDP flows. + * @brief Flow Handler for UDP flows. */ class TAO_AV_Export TAO_AV_UDP_Flow_Handler :public virtual TAO_AV_Flow_Handler, @@ -132,7 +133,7 @@ protected: /** * @class TAO_AV_UDP_Acceptor - * @brief + * @brief */ class TAO_AV_Export TAO_AV_UDP_Acceptor :public TAO_AV_Acceptor @@ -173,7 +174,7 @@ protected: /** * @class TAO_AV_UDP_Connector - * @brief + * @brief */ class TAO_AV_Export TAO_AV_UDP_Connector :public TAO_AV_Connector @@ -247,7 +248,7 @@ public: virtual int send_frame (const char*buf, size_t len); - + /// end the stream. virtual int destroy (void); |