| 
									
										
										
										
											2021-03-19 12:59:26 +01:00
										 |  |  | package vars
 | 
					
						
							| 
									
										
										
										
											2021-01-28 10:37:17 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var monitorType = map[uint16]struct{}{
 | 
					
						
							|  |  |  | 	dns.TypeAAAA:   {},
 | 
					
						
							|  |  |  | 	dns.TypeA:      {},
 | 
					
						
							|  |  |  | 	dns.TypeCNAME:  {},
 | 
					
						
							|  |  |  | 	dns.TypeDNSKEY: {},
 | 
					
						
							|  |  |  | 	dns.TypeDS:     {},
 | 
					
						
							|  |  |  | 	dns.TypeMX:     {},
 | 
					
						
							|  |  |  | 	dns.TypeNSEC3:  {},
 | 
					
						
							|  |  |  | 	dns.TypeNSEC:   {},
 | 
					
						
							|  |  |  | 	dns.TypeNS:     {},
 | 
					
						
							|  |  |  | 	dns.TypePTR:    {},
 | 
					
						
							|  |  |  | 	dns.TypeRRSIG:  {},
 | 
					
						
							|  |  |  | 	dns.TypeSOA:    {},
 | 
					
						
							|  |  |  | 	dns.TypeSRV:    {},
 | 
					
						
							|  |  |  | 	dns.TypeTXT:    {},
 | 
					
						
							| 
									
										
										
										
											2021-10-28 10:50:23 +02:00
										 |  |  | 	dns.TypeHTTPS:  {},
 | 
					
						
							| 
									
										
										
										
											2021-01-28 10:37:17 -05:00
										 |  |  | 	// Meta Qtypes
 | 
					
						
							|  |  |  | 	dns.TypeIXFR: {},
 | 
					
						
							|  |  |  | 	dns.TypeAXFR: {},
 | 
					
						
							|  |  |  | 	dns.TypeANY:  {},
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-19 12:59:26 +01:00
										 |  |  | // qTypeString returns the RR type based on monitorType. It returns the text representation
 | 
					
						
							| 
									
										
										
										
											2021-10-28 10:50:23 +02:00
										 |  |  | // of those types. RR types not in that list will have "other" returned.
 | 
					
						
							| 
									
										
										
										
											2021-03-19 12:59:26 +01:00
										 |  |  | func qTypeString(qtype uint16) string {
 | 
					
						
							| 
									
										
										
										
											2021-01-28 10:37:17 -05:00
										 |  |  | 	if _, known := monitorType[qtype]; known {
 | 
					
						
							|  |  |  | 		return dns.Type(qtype).String()
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2021-03-19 12:59:26 +01:00
										 |  |  | 	return "other"
 | 
					
						
							| 
									
										
										
										
											2021-01-28 10:37:17 -05:00
										 |  |  | }
 |