summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-04-14 10:32:53 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-04-14 10:32:53 +0000
commitd3a353f7a0195a4a467199b37645ce226486085a (patch)
treeedcc5e408e4eab1e7369fcde3c933c773ded7992
parent1efad51474f69330cc6c5c7b516072cb4221ebb5 (diff)
downloadATCD-d3a353f7a0195a4a467199b37645ce226486085a.tar.gz
ChangeLogTag: Sun Apr 14 12:31:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ChangeLog2
-rw-r--r--ChangeLogs/ChangeLog-02a2
-rw-r--r--ChangeLogs/ChangeLog-03a2
-rw-r--r--ace/TLI.h3
-rw-r--r--ace/Time_Request_Reply.h28
5 files changed, 26 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index 20753c4e820..4f828497c3b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@ Sun Apr 14 11:59:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/SPIPE_Addr.h:
* ace/Filecache.h:
+ * ace/Time_Request_Reply.h:
+ * ace/TLI.h:
Doxygen-ized some of the comments
Sat Apr 13 19:28:40 UTC 2002 Don Hinton <dhinton@ieee.org>
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 20753c4e820..4f828497c3b 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -2,6 +2,8 @@ Sun Apr 14 11:59:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/SPIPE_Addr.h:
* ace/Filecache.h:
+ * ace/Time_Request_Reply.h:
+ * ace/TLI.h:
Doxygen-ized some of the comments
Sat Apr 13 19:28:40 UTC 2002 Don Hinton <dhinton@ieee.org>
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 20753c4e820..4f828497c3b 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -2,6 +2,8 @@ Sun Apr 14 11:59:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/SPIPE_Addr.h:
* ace/Filecache.h:
+ * ace/Time_Request_Reply.h:
+ * ace/TLI.h:
Doxygen-ized some of the comments
Sat Apr 13 19:28:40 UTC 2002 Don Hinton <dhinton@ieee.org>
diff --git a/ace/TLI.h b/ace/TLI.h
index f00e22f48fa..4bce35bd78a 100644
--- a/ace/TLI.h
+++ b/ace/TLI.h
@@ -83,8 +83,9 @@ public:
protected:
// = Ensure we are an abstract class.
/// Default constructor.
- /// Destructor.
ACE_TLI (void);
+
+ /// Destructor.
~ACE_TLI (void);
/// Initialize a TLI endpoint.
diff --git a/ace/Time_Request_Reply.h b/ace/Time_Request_Reply.h
index e50f96b0182..a88d1b1106a 100644
--- a/ace/Time_Request_Reply.h
+++ b/ace/Time_Request_Reply.h
@@ -60,20 +60,28 @@ public:
// Get the fixed size of message
ssize_t size (void) const;
- // = Set/get the type of the message.
+ /// Get the type of the message.
ACE_INT32 msg_type (void) const;
+
+ /// Set the type of the message.
void msg_type (ACE_INT32);
- // = Set/get the time
+ /// Get the time
ACE_UINT32 time (void) const;
+
+ // Set the time
void time (ACE_UINT32 t);
- // = Set/get the blocking semantics.
+ /// Get the blocking semantics.
ACE_UINT32 block_forever (void) const;
+
+ /// Set the blocking semantics.
void block_forever (ACE_UINT32);
- // = Set/get the timeout.
+ /// Get the timeout.
ACE_Time_Value timeout (void) const;
+
+ /// Set the timeout.
void timeout (const ACE_Time_Value timeout);
/// Encode the message before transmission.
@@ -92,21 +100,21 @@ private:
struct Transfer
{
+ /// Type of the request (i.e., <TIME_UPDATE>)
ACE_INT32 msg_type_;
- // Type of the request (i.e., <TIME_UPDATE>)
+ /// Indicates if we should block forever. If 0, then <secTimeout_>
+ /// and <usecTimeout_> indicates how long we should wait.
ACE_UINT32 block_forever_;
- // Indicates if we should block forever. If 0, then <secTimeout_>
- // and <usecTimeout_> indicates how long we should wait.
+ /// Max seconds willing to wait for name if not blocking forever.
ACE_UINT32 sec_timeout_;
- // Max seconds willing to wait for name if not blocking forever.
+ /// Max micro seconds to wait for name if not blocking forever.
ACE_UINT32 usec_timeout_;
- // Max micro seconds to wait for name if not blocking forever.
+ /// The data portion contains <time_>
ACE_UINT32 time_;
- // The data portion contains <time_>
};
/// Transfer buffer.