mirror of
https://github.com/jwetzell/psn-go.git
synced 2026-08-13 19:33:49 +00:00
13 lines
229 B
Go
13 lines
229 B
Go
package chunks
|
|
|
|
type InfoPacketChunkData struct {
|
|
PacketHeader *PacketHeaderChunk
|
|
SystemName *InfoSystemNameChunk
|
|
TrackerList *InfoTrackerListChunk
|
|
}
|
|
|
|
type InfoPacketChunk struct {
|
|
Data InfoPacketChunkData
|
|
Chunk Chunk
|
|
}
|