mirror of
https://github.com/jwetzell/psn-go.git
synced 2026-08-11 10:23:56 +00:00
15 lines
252 B
Go
15 lines
252 B
Go
package chunks
|
|
|
|
type PacketHeaderChunkData struct {
|
|
PacketTimestamp uint64
|
|
VersionHigh uint8
|
|
VersionLow uint8
|
|
FrameId uint8
|
|
FramePacketCount uint8
|
|
}
|
|
|
|
type PacketHeaderChunk struct {
|
|
Chunk Chunk
|
|
Data PacketHeaderChunkData
|
|
}
|