comparison src/share/vm/services/diagnosticCommand.hpp @ 7979:8f696cf1a0fb

8002048: Protocol to discovery of manageable Java processes on a network Summary: Introduce a protocol to discover manageble Java instances across a network subnet, JDP Reviewed-by: sla, dfuchs
author dsamersoff
date Sun, 03 Feb 2013 22:28:08 +0400
parents 16fb9f942703
children 3c9bc17b9403
comparison
equal deleted inserted replaced
7978:a7f9a1195d86 7979:8f696cf1a0fb
255 DCmdArgument<char *> _jmxremote_ssl_enabled_cipher_suites; 255 DCmdArgument<char *> _jmxremote_ssl_enabled_cipher_suites;
256 DCmdArgument<char *> _jmxremote_ssl_enabled_protocols; 256 DCmdArgument<char *> _jmxremote_ssl_enabled_protocols;
257 DCmdArgument<char *> _jmxremote_ssl_need_client_auth; 257 DCmdArgument<char *> _jmxremote_ssl_need_client_auth;
258 DCmdArgument<char *> _jmxremote_ssl_config_file; 258 DCmdArgument<char *> _jmxremote_ssl_config_file;
259 259
260 // JDP support
261 // Keep autodiscovery char* not bool to pass true/false
262 // as property value to java level.
263 DCmdArgument<char *> _jmxremote_autodiscovery;
264 DCmdArgument<jlong> _jdp_port;
265 DCmdArgument<char *> _jdp_address;
266 DCmdArgument<char *> _jdp_source_addr;
267 DCmdArgument<jlong> _jdp_ttl;
268 DCmdArgument<jlong> _jdp_pause;
269
260 public: 270 public:
261 JMXStartRemoteDCmd(outputStream *output, bool heap_allocated); 271 JMXStartRemoteDCmd(outputStream *output, bool heap_allocated);
262 272
263 static const char *name() { 273 static const char *name() {
264 return "ManagementAgent.start"; 274 return "ManagementAgent.start";