mirror of
https://github.com/jwetzell/psn-go.git
synced 2026-08-10 18:03:51 +00:00
12 lines
194 B
Go
12 lines
194 B
Go
package chunks
|
|
|
|
type DataPacketChunkData struct {
|
|
PacketHeader *PacketHeaderChunk
|
|
TrackerList *DataTrackerListChunk
|
|
}
|
|
|
|
type DataPacketChunk struct {
|
|
Data DataPacketChunkData
|
|
Chunk Chunk
|
|
}
|