Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
310 B
Go
26 lines
310 B
Go
package ber
|
|
|
|
func encodeUnsignedInteger(i uint64) []byte {
|
|
n := uint64Length(i)
|
|
out := make([]byte, n)
|
|
|
|
var j int
|
|
for ; n > 0; n-- {
|
|
out[j] = byte(i >> uint((n-1)*8))
|
|
j++
|
|
}
|
|
|
|
return out
|
|
}
|
|
|
|
func uint64Length(i uint64) (numBytes int) {
|
|
numBytes = 1
|
|
|
|
for i > 255 {
|
|
numBytes++
|
|
i >>= 8
|
|
}
|
|
|
|
return
|
|
}
|