mirror of
https://github.com/schollz/croc.git
synced 2024-11-28 09:35:14 +03:00
exit on EOF
This commit is contained in:
parent
d0c2dc1be8
commit
b9b3995f02
@ -282,6 +282,8 @@ func (c *Client) transferOverLocalRelay(options TransferOptions, errchan chan<-
|
|||||||
data, _ := conn.Receive()
|
data, _ := conn.Receive()
|
||||||
if bytes.Equal(data, []byte("handshake")) {
|
if bytes.Equal(data, []byte("handshake")) {
|
||||||
break
|
break
|
||||||
|
} else if bytes.Equal(data, []byte{1}) {
|
||||||
|
log.Debug("got ping")
|
||||||
} else {
|
} else {
|
||||||
log.Debugf("instead of handshake got: %s", data)
|
log.Debugf("instead of handshake got: %s", data)
|
||||||
}
|
}
|
||||||
@ -393,7 +395,7 @@ func (c *Client) Send(options TransferOptions) (err error) {
|
|||||||
log.Debugf("error from errchan: %s", err.Error())
|
log.Debugf("error from errchan: %s", err.Error())
|
||||||
}
|
}
|
||||||
if !c.Options.DisableLocal {
|
if !c.Options.DisableLocal {
|
||||||
if strings.Contains(err.Error(), "refusing files") {
|
if strings.Contains(err.Error(), "refusing files") || strings.Contains(err.Error(), "EOF") {
|
||||||
errchan <- err
|
errchan <- err
|
||||||
}
|
}
|
||||||
err = <-errchan
|
err = <-errchan
|
||||||
|
Loading…
Reference in New Issue
Block a user