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>
29 lines
557 B
Go
29 lines
557 B
Go
package ldap
|
|
|
|
import (
|
|
ber "github.com/go-asn1-ber/asn1-ber"
|
|
)
|
|
|
|
// debugging type
|
|
// - has a Printf method to write the debug output
|
|
type debugging bool
|
|
|
|
// Enable controls debugging mode.
|
|
func (debug *debugging) Enable(b bool) {
|
|
*debug = debugging(b)
|
|
}
|
|
|
|
// Printf writes debug output.
|
|
func (debug debugging) Printf(format string, args ...interface{}) {
|
|
if debug {
|
|
logger.Printf(format, args...)
|
|
}
|
|
}
|
|
|
|
// PrintPacket dumps a packet.
|
|
func (debug debugging) PrintPacket(packet *ber.Packet) {
|
|
if debug {
|
|
ber.WritePacket(logger.Writer(), packet)
|
|
}
|
|
}
|