blob: d7ffb89a94cf40e495fcece68868bff2a448a67b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package main
/* copied from hst and must never be changed */
const (
userOffset = 100000
rangeSize = userOffset / 10
identityStart = 0
identityEnd = appEnd - appStart
appStart = rangeSize * 1
appEnd = appStart + rangeSize - 1
)
func toUser(userid, appid uint32) uint32 { return userid*userOffset + appStart + appid }
|