< prev index next >

src/java.base/share/native/libjava/java_props.h

Print this page




  85     // These are for proxy-related information.
  86     // Note that if these platform-specific extensions get out of hand we should make a new
  87     // structure for them and #include it here.
  88     int httpProxyEnabled;
  89     char *httpHost;
  90     char *httpPort;
  91 
  92     int httpsProxyEnabled;
  93     char *httpsHost;
  94     char *httpsPort;
  95 
  96     int ftpProxyEnabled;
  97     char *ftpHost;
  98     char *ftpPort;
  99 
 100     int socksProxyEnabled;
 101     char *socksHost;
 102     char *socksPort;
 103 
 104     char *exceptionList;
 105 
 106     char *awt_headless;  /* java.awt.headless setting, if NULL (default) will not be set */
 107 #endif
 108 
 109 } java_props_t;
 110 
 111 java_props_t *GetJavaProperties(JNIEnv *env);
 112 jstring GetStringPlatform(JNIEnv *env, nchar* str);
 113 
 114 #endif /* _JAVA_PROPS_H */


  85     // These are for proxy-related information.
  86     // Note that if these platform-specific extensions get out of hand we should make a new
  87     // structure for them and #include it here.
  88     int httpProxyEnabled;
  89     char *httpHost;
  90     char *httpPort;
  91 
  92     int httpsProxyEnabled;
  93     char *httpsHost;
  94     char *httpsPort;
  95 
  96     int ftpProxyEnabled;
  97     char *ftpHost;
  98     char *ftpPort;
  99 
 100     int socksProxyEnabled;
 101     char *socksHost;
 102     char *socksPort;
 103 
 104     char *exceptionList;


 105 #endif
 106 
 107 } java_props_t;
 108 
 109 java_props_t *GetJavaProperties(JNIEnv *env);
 110 jstring GetStringPlatform(JNIEnv *env, nchar* str);
 111 
 112 #endif /* _JAVA_PROPS_H */
< prev index next >