This commit is contained in:
crusader 2017-10-31 20:15:57 +09:00
parent 41d269f268
commit e1f57d373a

View File

@ -45,8 +45,7 @@ func (c *client) Start() {
c.ch.OnStart()
c.stopWg.Add(1)
go runClient(c)
runClient(c)
}
func (c *client) Stop() {
@ -66,7 +65,6 @@ func runClient(c *client) {
var err error
var stopping atomic.Value
for {
dialChan := make(chan struct{})
go func() {
if conn, err = c.ch.Dial(); err != nil {
@ -93,17 +91,17 @@ func runClient(c *client) {
return
case <-time.After(time.Second):
}
continue
return
}
handleClientConnection(c, conn)
go handleClientConnection(c, conn)
select {
case <-c.stopChan:
return
default:
}
}
}
func handleClientConnection(c *client, conn io.ReadWriteCloser) {