aboutsummaryrefslogtreecommitdiff
path: root/parse/parse.go
blob: ec137cf749133a38e6c3cd467e22b9533286f09e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package main

import (
	"fmt"

	"dim13.org/asn1/ber"
)

func main() {
	for n, s := range session {
		fmt.Println(">>> packet", n)
		ber.Dump(s)
		fmt.Println("")
	}
}