plamas/peer: just use net.Conn for generality

This commit is contained in:
Olaoluwa Osuntokun 2015-12-20 17:10:09 -06:00
parent 093bbf40ad
commit f52f2fd26c

@ -1,6 +1,7 @@
package main package main
import ( import (
"net"
"sync" "sync"
"time" "time"
@ -34,7 +35,8 @@ type peer struct {
started int32 started int32
connected int32 connected int32
disconnect int32 // only to be used atomically disconnect int32 // only to be used atomically
// conn *ETcpConn or w/e it is in strux // *ETcpConn or w/e it is in strux
conn net.Conn
// TODO(rosabeef): one for now, may need more granularity // TODO(rosabeef): one for now, may need more granularity
sync.RWMutex sync.RWMutex