This is an automated email from the ASF dual-hosted git repository. pengzheng pushed a commit to branch feature/rsa_doc_improvement in repository https://gitbox.apache.org/repos/asf/celix.git
commit 3cbd18044ec0c95ce71eb26efd5f1c4c35756713 Author: PengZheng <[email protected]> AuthorDate: Wed Apr 6 15:00:41 2022 +0800 Minor doxygen document improvement. --- bundles/remote_services/discovery_common/include/discovery.h | 5 +++-- .../src/remote_service_admin_dfi_constants.h | 6 ++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/bundles/remote_services/discovery_common/include/discovery.h b/bundles/remote_services/discovery_common/include/discovery.h index 3bb0f0f2..ee9f298c 100644 --- a/bundles/remote_services/discovery_common/include/discovery.h +++ b/bundles/remote_services/discovery_common/include/discovery.h @@ -47,9 +47,10 @@ #define DISCOVERY_SERVER_MAX_EP "DISCOVERY_CFG_SERVER_MAX_EP" /** - * @brief It indicate that is discovery server reach-able from all network interfaces. + * @brief Remote Service Admin Discovery environment property (named "CELIX_DISCOVERY_BIND_ON_ALL_INTERFACES") which specifies + * whether the RSA discovery server is reachable from all network interfaces. * @details If set false, discovery server bind to the IP address configured by the user. - * If set true, discovery server bind to 0.0.0.0. + * Otherwise, discovery server bind to 0.0.0.0. * The property is of the type boolean and the default is true */ #define CELIX_DISCOVERY_BIND_ON_ALL_INTERFACES "CELIX_DISCOVERY_BIND_ON_ALL_INTERFACES" diff --git a/bundles/remote_services/remote_service_admin_dfi/src/remote_service_admin_dfi_constants.h b/bundles/remote_services/remote_service_admin_dfi/src/remote_service_admin_dfi_constants.h index d7efe03a..e10a6d66 100644 --- a/bundles/remote_services/remote_service_admin_dfi/src/remote_service_admin_dfi_constants.h +++ b/bundles/remote_services/remote_service_admin_dfi/src/remote_service_admin_dfi_constants.h @@ -53,9 +53,11 @@ #define RSA_DFI_USE_CURL_SHARE_HANDLE_DEFAULT false /** - * @brief It indicate that is RSA server reach-able from all network interfaces. + * @brief Remote Service Admin DFI environment property (named "CELIX_RSA_BIND_ON_ALL_INTERFACES") which specifies + * whether the RSA server is reachable from all network interfaces. * @details If set false, RSA server bind to the IP address configured by the user. - * If set true, RSA server bind to 0.0.0.0. + * Otherwise, RSA server bind to 0.0.0.0. + * * The property is of the type boolean and the default is true */ #define CELIX_RSA_BIND_ON_ALL_INTERFACES "CELIX_RSA_BIND_ON_ALL_INTERFACES"
