aboutsummaryrefslogtreecommitdiff
path: root/parse/parse.go
diff options
context:
space:
mode:
Diffstat (limited to 'parse/parse.go')
-rw-r--r--parse/parse.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/parse/parse.go b/parse/parse.go
index f8ad251..e7ba10b 100644
--- a/parse/parse.go
+++ b/parse/parse.go
@@ -56,9 +56,10 @@ func main() {
}
fmt.Printf("%x\n", s)
fmt.Printf("%x\n", res)
- case csta.EscapeServiceOpcode:
- fmt.Println("Escape")
- fallthrough
+ case csta.MonitorStartOpcode:
+ ms := &csta.MonitorStartArg{}
+ asn1.Unmarshal(buf, ms)
+ pretty.Println(ms)
default:
unmarshal(s, &rose.Invoke{})
}