yanic/respond/respond.go

23 lines
348 B
Go
Raw Permalink Normal View History

2016-03-09 02:49:27 +00:00
package respond
import (
"net"
)
const (
// default multicast group used by announced
multicastAddressDefault = "ff05:0:0:0:0:0:2:1001"
2016-03-09 02:49:27 +00:00
// default udp port used by announced
port = 1001
2016-03-09 02:49:27 +00:00
// maximum receivable size
2016-10-03 23:08:07 +00:00
maxDataGramSize = 8192
2016-03-09 02:49:27 +00:00
)
// Response of the respond request
2016-03-09 02:49:27 +00:00
type Response struct {
Address *net.UDPAddr
2016-03-09 02:49:27 +00:00
Raw []byte
}