2
0
mirror of synced 2025-02-24 14:48:27 +00:00
torrent/tracker/udp.go
2013-11-05 00:04:14 +11:00

28 lines
422 B
Go

package tracker
type UDPConnectionRequest struct {
ConnectionId int64
Action int32
TransctionId int32
}
type UDPAnnounceResponseHeader struct {
Action int32
TransactionId int32
Interval int32
Leechers int32
Seeders int32
}
type UDPAnnounceResponse struct {
UDPAnnounceResponseHeader
PeerAddrSlice
}
type PeerAddr struct {
IP int32
Port int16
}
type PeerAddrSlice []PeerAddr