yanic/respond/respond.go

23 lines
354 B
Go
Raw Normal View History

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