From f589823ad23a1123e50d9f3aed79707575283e2f Mon Sep 17 00:00:00 2001 From: Ben Grewell Date: Mon, 5 Apr 2021 11:00:18 -0700 Subject: [PATCH] update comments --- .idea/workspace.xml | 7 +------ controller.go | 6 ------ 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index dbdf511..bf78bbd 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,12 +2,7 @@ - - - - - - + diff --git a/controller.go b/controller.go index 22f67d2..6b262a7 100644 --- a/controller.go +++ b/controller.go @@ -26,12 +26,6 @@ func NewController(port int) (controller *Controller, err error) { // server side it listens for new gRPC connections, when a connection is made by a client the client can tell it to // start a new iperf server instance. It will start a instance on an unused port and return the port number to the // client. This allows the entire iperf setup and session to be performed from the client side. -// -// CLIENT SERVER -// connect to grpc ---> accept grpc connection -// call StartServer() ---> find unused port -// start iperf server on port -// get server port info <--- return port information to client type Controller struct { api.UnimplementedCommandServer Port int