sing-box/log/id.go

16 lines
203 B
Go
Raw Normal View History

2022-06-30 21:27:56 +08:00
package log
import (
"context"
"math/rand"
)
type idContext struct {
context.Context
id uint32
}
func ContextWithID(ctx context.Context) context.Context {
return &idContext{ctx, rand.Uint32()}
}