diff --git a/peer/listen/peer_listen_channel.go b/peer/listen/peer_listen_channel.go index 56c7d61..b92c280 100644 --- a/peer/listen/peer_listen_channel.go +++ b/peer/listen/peer_listen_channel.go @@ -78,9 +78,8 @@ func (cplc *CwtchPeerListenChannel) Packet(data []byte) { if err == nil { if csp.GetGroupMessage() != nil { gm := csp.GetGroupMessage() - // We create a new profile here to avoid leaking any information about processing - // times. - // TODO Is this necessary / sufficient? + // We create a new go routine here to avoid leaking any information about processing time + // TODO Server can probably try to use this to DoS a peer go cplc.Handler.HandleGroupMessage(gm) } }