We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5bcf38 commit b66cfb4Copy full SHA for b66cfb4
src/croc/croc.go
@@ -367,7 +367,9 @@ func (c *Client) Send(options TransferOptions) (err error) {
367
// add two things to the error channel
368
errchan = make(chan error, 2)
369
c.setupLocalRelay()
370
- go c.broadcastOnLocalNetwork(true)
+ // broadcast on ipv6
371
+ //go c.broadcastOnLocalNetwork(true)
372
+ // broadcast on ipv4
373
go c.broadcastOnLocalNetwork(false)
374
go c.transferOverLocalRelay(options, errchan)
375
}
0 commit comments