mirror of
https://github.com/maride/pancap.git
synced 2024-11-22 00:44:26 +00:00
Add colorful headlines
This commit is contained in:
parent
62c11bd3ac
commit
b13350eac7
@ -2,6 +2,7 @@ package ethernet
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/fatih/color"
|
||||||
"github.com/google/gopacket"
|
"github.com/google/gopacket"
|
||||||
"github.com/google/gopacket/layers"
|
"github.com/google/gopacket/layers"
|
||||||
publicsuffix2 "golang.org/x/net/publicsuffix"
|
publicsuffix2 "golang.org/x/net/publicsuffix"
|
||||||
@ -166,7 +167,10 @@ func ipIsPrivate(ip net.IP) bool {
|
|||||||
|
|
||||||
// Print a summary after all DNS packets were processed
|
// Print a summary after all DNS packets were processed
|
||||||
func printDNSSummary() {
|
func printDNSSummary() {
|
||||||
|
headline := color.New(color.FgRed, color.Bold)
|
||||||
|
headline.Println("DNS Request Summary")
|
||||||
printDNSQuestionSummary()
|
printDNSQuestionSummary()
|
||||||
|
headline.Println("DNS Response Summary")
|
||||||
printDNSAnswerSummary()
|
printDNSAnswerSummary()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user