aboutsummaryrefslogtreecommitdiff
path: root/osp/go/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'osp/go/server.go')
-rw-r--r--osp/go/server.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/osp/go/server.go b/osp/go/server.go
index e7770576..8f325fd4 100644
--- a/osp/go/server.go
+++ b/osp/go/server.go
@@ -4,7 +4,7 @@
package osp
-// TODO(pthatcher):
+// TODO(jophba):
// - Write messages as well
import (
@@ -14,7 +14,7 @@ import (
)
func ReadMessagesAsServer(ctx context.Context, instanceName string, port int, cert tls.Certificate, messages chan<- interface{}) error {
- // TODO(pthatcher): log error if it fails
+ // TODO(jophba): log error if it fails
go RunMdnsServer(ctx, instanceName, port)
streams := make(chan io.ReadWriteCloser)
go RunQuicServer(ctx, port, cert, streams)