This is an automated email from the ASF dual-hosted git repository. mssun pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/incubator-teaclave.git
commit 00c70999bb3fc085b3c797bdd0c004060a61b8e6 Author: Mingshen Sun <[email protected]> AuthorDate: Wed Feb 26 17:39:56 2020 -0800 [rpc] Update visibility of SgxTrustedTlsServerConfig fields --- rpc/src/config.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rpc/src/config.rs b/rpc/src/config.rs index 82c934c..cfdb4fb 100644 --- a/rpc/src/config.rs +++ b/rpc/src/config.rs @@ -12,10 +12,10 @@ use teaclave_types::EnclaveAttr; #[derive(Clone)] pub struct SgxTrustedTlsServerConfig { - pub server_config: rustls::ServerConfig, - pub attested_tls_config: Option<Arc<RwLock<AttestedTlsConfig>>>, - pub time: std::time::SystemTime, - pub validity: std::time::Duration, + server_config: rustls::ServerConfig, + attested_tls_config: Option<Arc<RwLock<AttestedTlsConfig>>>, + time: std::time::SystemTime, + validity: std::time::Duration, } impl Default for SgxTrustedTlsServerConfig { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
