summaryrefslogtreecommitdiff
path: root/TAO/tao/params.h
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-09-12 01:42:49 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-09-12 01:42:49 +0000
commit036cca5a7496b4c3a25bd29292a5500f35dea423 (patch)
tree876c63f2632a9943dd49cf14cae506f9a17d4fd0 /TAO/tao/params.h
parenta473eba439fabfa4c24f80192aeb2d74784f5df2 (diff)
downloadATCD-036cca5a7496b4c3a25bd29292a5500f35dea423.tar.gz
ChangeLogTag:Mon Sep 11 12:56:11 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO/tao/params.h')
-rw-r--r--TAO/tao/params.h25
1 files changed, 5 insertions, 20 deletions
diff --git a/TAO/tao/params.h b/TAO/tao/params.h
index 7455a254ad9..8223f5b39dc 100644
--- a/TAO/tao/params.h
+++ b/TAO/tao/params.h
@@ -20,7 +20,6 @@
#include "ace/pre.h"
#include "tao/corbafwd.h"
-#include "tao/IOR_LookupTable.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
@@ -30,7 +29,6 @@
class TAO_Active_Object_Map_Impl;
class TAO_Reverse_Active_Object_Map_Impl;
-class TAO_IOR_LookupTable;
// This is a quick hack to avoid having to unravel the intricacies of
// the all the hairy order interdepencies that currently exist in TAO.
@@ -81,16 +79,16 @@ public:
void add_endpoint (ACE_CString &endpoint);
// Specifies the endpoints on which this server is willing to
// listen for requests.
-
+
CORBA::UShort service_port (MCAST_SERVICEID service_id) const;
void service_port (MCAST_SERVICEID service_id, CORBA::UShort port);
// Set/Get the port of services locatable through multicast.
-
+
const char *mcast_discovery_endpoint (void) const;
void mcast_discovery_endpoint (const ACE_CString &mde);
- // Set/Get address:port for Multicast Discovery Protocol for
+ // Set/Get address:port for Multicast Discovery Protocol for
// the Naming Service.
-
+
int sock_rcvbuf_size (void) const;
void sock_rcvbuf_size (int);
// Set/Get the size to be used for a socket's receive buffer.
@@ -121,14 +119,6 @@ public:
// The ORB will use the dotted decimal notation for addresses. By
// default we use the full ascii names.
- TAO_IOR_LookupTable * ior_lookup_table (void);
- // The table used by the ORB for looking up the ObjectID:IOR mappings
- // specified on the commandline through the -ORBInitRef and
- // -ORBDefaultInitRef parameters.
-
- int add_to_ior_table (ACE_CString init_ref);
- // Add the init_ref (objectID->IOR) to the Lookup Table
-
char *default_init_ref (void) const;
void default_init_ref (const ACE_CString &default_init_ref);
// Set/Get the Init Reference of an arbitrary ObjectID.
@@ -170,17 +160,12 @@ private:
// Port numbers of the configured services.
ACE_CString mcast_discovery_endpoint_;
- // address:port for Multicast Discovery Protocol for the Naming
+ // address:port for Multicast Discovery Protocol for the Naming
// Service.
ACE_CString init_ref_;
// Initial Reference supplied as <ObjectID>:<IOR>
- TAO_IOR_LookupTable ior_lookup_table_;
- // Table that has the mapping <ObjectID>:<IOR>
- // The IOR could be in any of the following formats :
- // IOR: ... / iiop: ... / iioploc: ... / iiopname: ...
-
ACE_CString default_init_ref_;
// List of comma separated prefixes from ORBDefaultInitRef.