1
1
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 13:21:00 +02:00
This commit is contained in:
Zack Scholl 2019-05-01 11:39:14 -06:00
parent 5bffeabbba
commit 29dceee8f4

View file

@ -393,6 +393,7 @@ func (c *Client) processMessage(payload []byte) (done bool, err error) {
done = true
return
case "pake":
log.Debug("received pake payload")
// if // c.spinner.Suffix != " performing PAKE..." {
// // c.spinner.Stop()
// // c.spinner.Suffix = " performing PAKE..."
@ -439,6 +440,7 @@ func (c *Client) processMessage(payload []byte) (done bool, err error) {
if err != nil {
panic(err)
}
log.Debugf("connected to %s", server)
if !c.Options.IsSender {
go c.receiveData(j)
}