summaryrefslogtreecommitdiff
path: root/TAO/tao/default_ports.h
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2002-05-02 04:28:11 +0000
committerbala <balanatarajan@users.noreply.github.com>2002-05-02 04:28:11 +0000
commit0831cbeb78488e238918fe32b6bca6acf0ac8d54 (patch)
tree884c843b124f0b0d12b77e9aaf2f8c259b8a5109 /TAO/tao/default_ports.h
parentad63a38f91a0a239ea0ef51dbce5df461576daa2 (diff)
downloadATCD-0831cbeb78488e238918fe32b6bca6acf0ac8d54.tar.gz
ChangeLogTag: Wed May 1 23:21:00 2002 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/default_ports.h')
-rw-r--r--TAO/tao/default_ports.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/TAO/tao/default_ports.h b/TAO/tao/default_ports.h
new file mode 100644
index 00000000000..bc4a18368d9
--- /dev/null
+++ b/TAO/tao/default_ports.h
@@ -0,0 +1,77 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file default_ports.h
+ *
+ * $Id$
+ *
+ * Port reservation details for all the services.
+ *
+ * @author Copyright 1995 by Sun Microsystems, Inc.
+ * @author Chris Cleeland
+ * @author Douglas C. Schmidt
+ */
+//=============================================================================
+
+#ifndef TAO_DEFAULT_PORTS_H
+#define TAO_DEFAULT_PORTS_H
+#include "ace/pre.h"
+
+#include "ace/config-all.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+
+// The default UDP multicast port number for locating the TAO Naming
+// Service.
+#if !defined (TAO_DEFAULT_NAME_SERVER_REQUEST_PORT)
+#define TAO_DEFAULT_NAME_SERVER_REQUEST_PORT 10013
+#endif /* TAO_DEFAULT_NAME_SERVER_REQUEST_PORT */
+
+// The default UDP port number for replying to a location request to
+// the TAO Naming Service.
+#if !defined (TAO_DEFAULT_NAME_SERVER_REPLY_PORT)
+#define TAO_DEFAULT_NAME_SERVER_REPLY_PORT 10014
+#endif /* TAO_DEFAULT_NAME_SERVER_REPLY_PORT */
+
+// The default UDP multicast port number for locating the TAO Trading
+// Service.
+#if !defined (TAO_DEFAULT_TRADING_SERVER_REQUEST_PORT)
+#define TAO_DEFAULT_TRADING_SERVER_REQUEST_PORT 10016
+#endif /* TAO_DEFAULT_TRADING_SERVER_REQUEST_PORT */
+
+// The default UDP port number for replying to a location request to
+// the TAO Trading Service.
+#if !defined (TAO_DEFAULT_TRADING_SERVER_REPLY_PORT)
+#define TAO_DEFAULT_TRADING_SERVER_REPLY_PORT 10017
+#endif /* TAO_DEFAULT_TRADING_SERVER_REPLY_PORT */
+
+// The default UDP multicast port number for locating the TAO
+// Implementation Repository Service.
+#if !defined (TAO_DEFAULT_IMPLREPO_SERVER_REQUEST_PORT)
+#define TAO_DEFAULT_IMPLREPO_SERVER_REQUEST_PORT 10018
+#endif /* TAO_DEFAULT_IMPLREPO_SERVER_REQUEST_PORT */
+
+// The default UDP port number for replying to a location request to
+// the TAO Implementation Repository Service.
+#if !defined (TAO_DEFAULT_IMPLREPO_SERVER_REPLY_PORT)
+#define TAO_DEFAULT_IMPLREPO_SERVER_REPLY_PORT 10019
+#endif /* TAO_DEFAULT_IMPLREPO_SERVER_REPLY_PORT */
+
+// The default UDP multicast port number for locating the TAO
+// Interface Repository Service.
+#if !defined (TAO_DEFAULT_INTERFACEREPO_SERVER_REQUEST_PORT)
+#define TAO_DEFAULT_INTERFACEREPO_SERVER_REQUEST_PORT 10020
+#endif /* TAO_DEFAULT_INTERFACEREPO_SERVER_REQUEST_PORT */
+
+// The default UDP port number for replying to a location request to
+// the TAO Interface Repository Service.
+#if !defined (TAO_DEFAULT_INTERFACEREPO_SERVER_REPLY_PORT)
+#define TAO_DEFAULT_INTERFACEREPO_SERVER_REPLY_PORT 10021
+#endif /* TAO_DEFAULT_INTERFACEREPO_SERVER_REPLY_PORT */
+
+#include "ace/post.h"
+#endif /*TAO_DEFAULT_PORTS_H*/