You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							24 lines
						
					
					
						
							390 B
						
					
					
				
			
		
		
	
	
							24 lines
						
					
					
						
							390 B
						
					
					
				| package ldap
 | |
| 
 | |
| import (
 | |
| 	"log"
 | |
| 
 | |
| 	"gopkg.in/asn1-ber.v1"
 | |
| )
 | |
| 
 | |
| // debugging type
 | |
| //     - has a Printf method to write the debug output
 | |
| type debugging bool
 | |
| 
 | |
| // write debug output
 | |
| func (debug debugging) Printf(format string, args ...interface{}) {
 | |
| 	if debug {
 | |
| 		log.Printf(format, args...)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (debug debugging) PrintPacket(packet *ber.Packet) {
 | |
| 	if debug {
 | |
| 		ber.PrintPacket(packet)
 | |
| 	}
 | |
| }
 | |
| 
 |