dissertation-2-code/udp/packet.go

12 lines
118 B
Go
Raw Normal View History

2020-11-25 19:35:31 +00:00
package udp
import "mpbl3p/proxy"
type Packet struct {
ack uint64
nack uint64
seq uint64
data proxy.Packet
}