add back ipv6 broadcast

This commit is contained in:
Zack Scholl 2020-10-21 08:17:39 -07:00
parent de03a5167a
commit ea0e334feb
1 changed files with 2 additions and 2 deletions

View File

@ -365,10 +365,10 @@ func (c *Client) Send(options TransferOptions) (err error) {
// add two things to the error channel
errchan = make(chan error, 2)
c.setupLocalRelay()
// broadcast on ipv6
//go c.broadcastOnLocalNetwork(true)
// broadcast on ipv4
go c.broadcastOnLocalNetwork(false)
// broadcast on ipv6
go c.broadcastOnLocalNetwork(true)
go c.transferOverLocalRelay(options, errchan)
}