From e45a0b2c53a4f02678ba714c9167e9ae1c4f707a Mon Sep 17 00:00:00 2001 From: Steven Dong Date: Wed, 24 May 2023 11:38:25 -0400 Subject: [PATCH] add some comments --- cmd/aasp/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/aasp/main.go b/cmd/aasp/main.go index d02d24d0..81175066 100644 --- a/cmd/aasp/main.go +++ b/cmd/aasp/main.go @@ -464,8 +464,10 @@ func main() { } url := *hostname + ":" + *httpport + //start http server go setupServer(&ServerCertState, &azure_info.Identity, &EncodedUvmInformation, url) + //start grpc server s := grpc.NewServer() keyprovider.RegisterKeyProviderServiceServer(s, &server{}) reflection.Register(s)