summaryrefslogtreecommitdiff
path: root/apps/JAWS/server/HTTP_Server_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/JAWS/server/HTTP_Server_T.h')
-rw-r--r--apps/JAWS/server/HTTP_Server_T.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/apps/JAWS/server/HTTP_Server_T.h b/apps/JAWS/server/HTTP_Server_T.h
index 733d88274ad..9b981f97a1f 100644
--- a/apps/JAWS/server/HTTP_Server_T.h
+++ b/apps/JAWS/server/HTTP_Server_T.h
@@ -1,13 +1,27 @@
// $Id$
+// ============================================================================
+//
+// = LIBRARY
+// jaws
+//
+// = FILENAME
+// HTTP_Server_T.h
+//
+// = AUTHOR
+// James Hu
+//
+// ============================================================================
+
#if !defined (HTTP_SERVER_T_H)
#define HTTP_SERVER_T_H
#include "ace/SOCK_Acceptor.h"
-// Specialize ACE_SOCK_Acceptor to lock around accept();
template <class LOCK>
class LOCK_SOCK_Acceptor : public ACE_SOCK_Acceptor
+ // = TITLE
+ // Specialize ACE_SOCK_Acceptor to lock around <accept>;
{
public:
int accept (ACE_SOCK_Stream &new_stream,
@@ -17,6 +31,7 @@ public:
private:
LOCK lock_;
+ // Type of locking mechanism.
};
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)