3 //=============================================================================
5 * @file default_ports.h
7 * Port reservation details for all the services.
9 * @author Copyright 1995 by Sun Microsystems, Inc.
10 * @author Chris Cleeland
11 * @author Douglas C. Schmidt
13 //=============================================================================
15 #ifndef TAO_DEFAULT_PORTS_H
16 #define TAO_DEFAULT_PORTS_H
17 #include /**/ "ace/pre.h"
19 #include "ace/config-all.h"
21 #if !defined (ACE_LACKS_PRAGMA_ONCE)
23 #endif /* ACE_LACKS_PRAGMA_ONCE */
26 // The default UDP multicast port number for locating the TAO Naming
28 #if !defined (TAO_DEFAULT_NAME_SERVER_REQUEST_PORT)
29 #define TAO_DEFAULT_NAME_SERVER_REQUEST_PORT 10013
30 #endif /* TAO_DEFAULT_NAME_SERVER_REQUEST_PORT */
32 // The default UDP port number for replying to a location request to
33 // the TAO Naming Service.
34 #if !defined (TAO_DEFAULT_NAME_SERVER_REPLY_PORT)
35 #define TAO_DEFAULT_NAME_SERVER_REPLY_PORT 10014
36 #endif /* TAO_DEFAULT_NAME_SERVER_REPLY_PORT */
38 // The default UDP multicast port number for locating the TAO Trading
40 #if !defined (TAO_DEFAULT_TRADING_SERVER_REQUEST_PORT)
41 #define TAO_DEFAULT_TRADING_SERVER_REQUEST_PORT 10016
42 #endif /* TAO_DEFAULT_TRADING_SERVER_REQUEST_PORT */
44 // The default UDP port number for replying to a location request to
45 // the TAO Trading Service.
46 #if !defined (TAO_DEFAULT_TRADING_SERVER_REPLY_PORT)
47 #define TAO_DEFAULT_TRADING_SERVER_REPLY_PORT 10017
48 #endif /* TAO_DEFAULT_TRADING_SERVER_REPLY_PORT */
50 // The default UDP multicast port number for locating the TAO
51 // Implementation Repository Service.
52 #if !defined (TAO_DEFAULT_IMPLREPO_SERVER_REQUEST_PORT)
53 #define TAO_DEFAULT_IMPLREPO_SERVER_REQUEST_PORT 10018
54 #endif /* TAO_DEFAULT_IMPLREPO_SERVER_REQUEST_PORT */
56 // The default UDP port number for replying to a location request to
57 // the TAO Implementation Repository Service.
58 #if !defined (TAO_DEFAULT_IMPLREPO_SERVER_REPLY_PORT)
59 #define TAO_DEFAULT_IMPLREPO_SERVER_REPLY_PORT 10019
60 #endif /* TAO_DEFAULT_IMPLREPO_SERVER_REPLY_PORT */
62 // The default UDP multicast port number for locating the TAO
63 // Interface Repository Service.
64 #if !defined (TAO_DEFAULT_INTERFACEREPO_SERVER_REQUEST_PORT)
65 #define TAO_DEFAULT_INTERFACEREPO_SERVER_REQUEST_PORT 10020
66 #endif /* TAO_DEFAULT_INTERFACEREPO_SERVER_REQUEST_PORT */
68 // The default UDP port number for replying to a location request to
69 // the TAO Interface Repository Service.
70 #if !defined (TAO_DEFAULT_INTERFACEREPO_SERVER_REPLY_PORT)
71 #define TAO_DEFAULT_INTERFACEREPO_SERVER_REPLY_PORT 10021
72 #endif /* TAO_DEFAULT_INTERFACEREPO_SERVER_REPLY_PORT */
74 #include /**/ "ace/post.h"
75 #endif /*TAO_DEFAULT_PORTS_H*/