mirror of
https://github.com/jwetzell/psn-go.git
synced 2026-08-18 21:54:14 +00:00
8 lines
214 B
Go
8 lines
214 B
Go
package encoders
|
|
|
|
func EncodeDataPacketChunk(packetHeaderChunk []byte, trackerListChunk []byte) []byte {
|
|
chunkData := append(packetHeaderChunk, trackerListChunk...)
|
|
|
|
return EncodeChunk(0x6755, chunkData, true)
|
|
}
|