00001 // -*- C++ -*- 00002 00003 //============================================================================= 00004 /** 00005 * @file default_ports.h 00006 * 00007 * $Id: default_ports.h 51175 2003-07-21 23:51:40Z dhinton $ 00008 * 00009 * Port reservation details for all the services. 00010 * 00011 * @author Copyright 1995 by Sun Microsystems, Inc. 00012 * @author Chris Cleeland 00013 * @author Douglas C. Schmidt 00014 */ 00015 //============================================================================= 00016 00017 #ifndef TAO_DEFAULT_PORTS_H 00018 #define TAO_DEFAULT_PORTS_H 00019 #include /**/ "ace/pre.h" 00020 00021 #include "ace/config-all.h" 00022 00023 #if !defined (ACE_LACKS_PRAGMA_ONCE) 00024 # pragma once 00025 #endif /* ACE_LACKS_PRAGMA_ONCE */ 00026 00027 00028 // The default UDP multicast port number for locating the TAO Naming 00029 // Service. 00030 #if !defined (TAO_DEFAULT_NAME_SERVER_REQUEST_PORT) 00031 #define TAO_DEFAULT_NAME_SERVER_REQUEST_PORT 10013 00032 #endif /* TAO_DEFAULT_NAME_SERVER_REQUEST_PORT */ 00033 00034 // The default UDP port number for replying to a location request to 00035 // the TAO Naming Service. 00036 #if !defined (TAO_DEFAULT_NAME_SERVER_REPLY_PORT) 00037 #define TAO_DEFAULT_NAME_SERVER_REPLY_PORT 10014 00038 #endif /* TAO_DEFAULT_NAME_SERVER_REPLY_PORT */ 00039 00040 // The default UDP multicast port number for locating the TAO Trading 00041 // Service. 00042 #if !defined (TAO_DEFAULT_TRADING_SERVER_REQUEST_PORT) 00043 #define TAO_DEFAULT_TRADING_SERVER_REQUEST_PORT 10016 00044 #endif /* TAO_DEFAULT_TRADING_SERVER_REQUEST_PORT */ 00045 00046 // The default UDP port number for replying to a location request to 00047 // the TAO Trading Service. 00048 #if !defined (TAO_DEFAULT_TRADING_SERVER_REPLY_PORT) 00049 #define TAO_DEFAULT_TRADING_SERVER_REPLY_PORT 10017 00050 #endif /* TAO_DEFAULT_TRADING_SERVER_REPLY_PORT */ 00051 00052 // The default UDP multicast port number for locating the TAO 00053 // Implementation Repository Service. 00054 #if !defined (TAO_DEFAULT_IMPLREPO_SERVER_REQUEST_PORT) 00055 #define TAO_DEFAULT_IMPLREPO_SERVER_REQUEST_PORT 10018 00056 #endif /* TAO_DEFAULT_IMPLREPO_SERVER_REQUEST_PORT */ 00057 00058 // The default UDP port number for replying to a location request to 00059 // the TAO Implementation Repository Service. 00060 #if !defined (TAO_DEFAULT_IMPLREPO_SERVER_REPLY_PORT) 00061 #define TAO_DEFAULT_IMPLREPO_SERVER_REPLY_PORT 10019 00062 #endif /* TAO_DEFAULT_IMPLREPO_SERVER_REPLY_PORT */ 00063 00064 // The default UDP multicast port number for locating the TAO 00065 // Interface Repository Service. 00066 #if !defined (TAO_DEFAULT_INTERFACEREPO_SERVER_REQUEST_PORT) 00067 #define TAO_DEFAULT_INTERFACEREPO_SERVER_REQUEST_PORT 10020 00068 #endif /* TAO_DEFAULT_INTERFACEREPO_SERVER_REQUEST_PORT */ 00069 00070 // The default UDP port number for replying to a location request to 00071 // the TAO Interface Repository Service. 00072 #if !defined (TAO_DEFAULT_INTERFACEREPO_SERVER_REPLY_PORT) 00073 #define TAO_DEFAULT_INTERFACEREPO_SERVER_REPLY_PORT 10021 00074 #endif /* TAO_DEFAULT_INTERFACEREPO_SERVER_REPLY_PORT */ 00075 00076 #include /**/ "ace/post.h" 00077 #endif /*TAO_DEFAULT_PORTS_H*/