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

import (
	"fmt"

	"dim13.org/asn1/ber/new"
)

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