• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #ifndef AWS_JNI_CRT_HTTP_PROXY_ENVIRONMENT_VARIABLE_SETTING_H
7 #define AWS_JNI_CRT_HTTP_PROXY_ENVIRONMENT_VARIABLE_SETTING_H
8 
9 #include <jni.h>
10 
11 struct proxy_env_var_settings;
12 struct aws_tls_connection_options;
13 struct aws_tls_ctx;
14 
15 void aws_http_proxy_environment_variable_setting_jni_init(
16     struct proxy_env_var_settings *options,
17     jint environment_variable_proxy_connection_type,
18     jint environment_variable_type,
19     struct aws_tls_connection_options *proxy_tls_connection_options);
20 
21 #endif /* AWS_JNI_CRT_HTTP_PROXY_ENVIRONMENT_VARIABLE_SETTING_H */
22