summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-07-11 10:49:04 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-07-11 10:49:04 +0000
commit3fda35a73997a7e0fe7765c305bc5ff81c86508f (patch)
tree1f786088678f89eed5087fbaf09a9f1db4437768
parenta20b2f1e28440942dfc6e39d38abc68a0f9b7a8a (diff)
downloadATCD-3fda35a73997a7e0fe7765c305bc5ff81c86508f.tar.gz
ChangeLogTag:Tue Jul 10 19:26:15 2001 Ossama Othman <ossama@uci.edu>
-rw-r--r--THANKS2
-rw-r--r--ace/Addr.h11
-rw-r--r--ace/INET_Addr.h3
-rw-r--r--ace/SOCK.h7
4 files changed, 9 insertions, 14 deletions
diff --git a/THANKS b/THANKS
index 77dab45c167..68797a492a4 100644
--- a/THANKS
+++ b/THANKS
@@ -402,7 +402,7 @@ Maximilian Hoferer <mhoferer@krones.de>
Kevin Stanley <kstanley1@mdc.com>
Jeff Greif <jmg@trivida.com>
Jeff McDaniel <jsmpcdani@gte.net>
-Andreas Geisler <andreas.geisler@erls.siemens.de>
+Andreas Geisler <Andreas.Geisler@erl9.siemens.de>
Bob McWhirter <bob@werken.com>
Daniel Winder <Daniel.Winder@cern.ch>
Zheng Han <zhan@glenvan.glenayre.com>
diff --git a/ace/Addr.h b/ace/Addr.h
index 6db4eaa14eb..140e0cdce21 100644
--- a/ace/Addr.h
+++ b/ace/Addr.h
@@ -6,11 +6,10 @@
*
* $Id$
*
- * @author Doug Schmidt
+ * @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
//=============================================================================
-
#ifndef ACE_ADDR_H
#define ACE_ADDR_H
#include "ace/pre.h"
@@ -58,8 +57,7 @@ public:
virtual void *get_addr (void) const;
/// Set a pointer to the address.
- virtual void set_addr (void *,
- int len);
+ virtual void set_addr (void *, int len);
// = Equality/inequality tests
/// Check for address equality.
@@ -69,8 +67,7 @@ public:
int operator != (const ACE_Addr &sap) const;
/// Initializes instance variables.
- void base_set (int type,
- int size);
+ void base_set (int type,[ int size);
#if defined (ACE_HAS_BROKEN_SAP_ANY)
/// Wild-card address.
@@ -84,7 +81,7 @@ public:
#endif /* ACE_HAS_BROKEN_SAP_ANY */
/// Returns a hash value. This should be overwritten by a subclass
- /// which can produce a better hash value.
+ /// that can produce a better hash value.
virtual u_long hash (void) const;
/// Dump the state of an object.
diff --git a/ace/INET_Addr.h b/ace/INET_Addr.h
index 3f6e6e12a3c..0d4ec10b6f4 100644
--- a/ace/INET_Addr.h
+++ b/ace/INET_Addr.h
@@ -6,11 +6,10 @@
*
* $Id$
*
- * @author Doug Schmidt
+ * @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
//=============================================================================
-
#ifndef ACE_INET_ADDR_H
#define ACE_INET_ADDR_H
#include "ace/pre.h"
diff --git a/ace/SOCK.h b/ace/SOCK.h
index 2cc10c3ec2d..71cc8b4df4a 100644
--- a/ace/SOCK.h
+++ b/ace/SOCK.h
@@ -6,11 +6,10 @@
*
* $Id$
*
- * @author Doug Schmidt
+ * @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
//=============================================================================
-
#ifndef ACE_SOCK_H
#define ACE_SOCK_H
#include "ace/pre.h"
@@ -34,7 +33,7 @@
* This class provides functions that are common to all of the
* <ACE_SOCK_*> classes. <ACE_SOCK> provides the ability to get
* and set socket options, get the local and remote addresses,
- * and close the socket.
+ * and open and close a socket handle.
*/
class ACE_Export ACE_SOCK : public ACE_IPC_SAP
{
@@ -54,7 +53,7 @@ public:
void *optval,
int *optlen) const;
- /// Close down the socket.
+ /// Close down the socket handle.
int close (void);
/// Return the local endpoint address in the referenced <ACE_Addr>.