initial commit

This commit is contained in:
Marcel Gebhardt
2018-09-18 08:39:46 +02:00
committed by Marcel Gebhardt
commit 428a29c33a
4 changed files with 178 additions and 0 deletions

8
debug.go Normal file
View File

@@ -0,0 +1,8 @@
package ntlm
var debugf = func(format string, a ...interface{}) {} // discard debug
// SetDebugf sets a debugf function for debug output
func SetDebugf(f func(format string, a ...interface{})) {
debugf = f
}