yanic/respond/respond.go

23 lines
348 B
Go
Raw Normal View History

2016-03-09 03:49:27 +01:00
package respond
import (
"net"
)
const (
// default multicast group used by announced
multicastAddressDefault = "ff05:0:0:0:0:0:2:1001"
2016-03-09 03:49:27 +01:00
// 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
}