summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-25 22:51:05 +0000
committerjai <jai@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-25 22:51:05 +0000
commitab462193f63582639ed42024c9a753be92f5d03d (patch)
tree7e6eb5e6b2d24ddadb46f359bbe4c3f8af1f5f65
parenta8ec8a9bc033d330487603a76a36c65ea902a006 (diff)
downloadATCD-ab462193f63582639ed42024c9a753be92f5d03d.tar.gz
refactorng protocols hooks
-rw-r--r--TAO/tao/Network_Priority_Protocols_Hooks.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/TAO/tao/Network_Priority_Protocols_Hooks.h b/TAO/tao/Network_Priority_Protocols_Hooks.h
new file mode 100644
index 00000000000..e4cb8fb7e3d
--- /dev/null
+++ b/TAO/tao/Network_Priority_Protocols_Hooks.h
@@ -0,0 +1,71 @@
+// -*- C++ -*-
+
+// ===================================================================
+/**
+ * @file Network_Priority_Protocols_Hooks.h
+ *
+ * $Id$
+ *
+ * @author Jaiganesh Balasubramanian <jai@dre.vanderbilt.edu>
+ * Johnny Willemsen <jwillemsen@remedy.nl>
+ */
+// ===================================================================
+
+#ifndef TAO_NETWORK_PRIORITY_PROTOCOLS_HOOKS_H
+#define TAO_NETWORK_PRIORITY_PROTOCOLS_HOOKS_H
+
+#include /**/ "ace/pre.h"
+#include "ace/CORBA_macros.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "ace/Service_Object.h"
+#include /**/ "tao/TAO_Export.h"
+#include "tao/Basic_Types.h"
+#include "tao/IOP_IORC.h"
+#include "ace/SString.h"
+
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace CORBA
+{
+ class Policy;
+ class Environment;
+}
+
+class TAO_ORB_Core;
+class TAO_Service_Context;
+class TAO_Connection_Handler;
+class TAO_Stub;
+
+class TAO_Export TAO_Network_Priority_Protocols_Hooks
+ : public ACE_Service_Object
+{
+public:
+ /// destructor
+ virtual ~TAO_Network_Priority_Protocols_Hooks (void);
+
+ virtual CORBA::Long get_dscp_codepoint (void) = 0;
+
+ virtual void set_dscp_codepoint (CORBA::Long &dscp_codepoint
+ ACE_ENV_ARG_DECL) = 0;
+
+ virtual void np_service_context (TAO_Stub *stub,
+ TAO_Service_Context &service_context,
+ CORBA::Boolean restart
+ ACE_ENV_ARG_DECL) = 0;
+
+ virtual void add_rep_np_service_context_hook (
+ TAO_Service_Context &service_context,
+ CORBA::Long &dscp_codepoint
+ ACE_ENV_ARG_DECL) = 0;
+};
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_NETWORK_PRIORITY_PROTOCOLS_HOOKS_H */