mirror of
https://github.com/jwetzell/psn-go.git
synced 2026-08-14 20:03:55 +00:00
8 lines
163 B
Go
8 lines
163 B
Go
package encoders
|
|
|
|
func EncodeInfoTrackerNameChunk(trackerName string) []byte {
|
|
nameBytes := []uint8(trackerName)
|
|
|
|
return EncodeChunk(0x0000, nameBytes, false)
|
|
}
|