From cd42ef6603dc8b6703ff261e628b31ee07ef0165 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Thu, 8 Oct 2015 18:49:29 +0200 Subject: work in progress --- rose/rose.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'rose/rose.go') diff --git a/rose/rose.go b/rose/rose.go index f5cafbb..4500f01 100644 --- a/rose/rose.go +++ b/rose/rose.go @@ -8,10 +8,10 @@ import "github.com/dim13/asn1" type Invoke struct { asn1.Tag `asn1:"tag:1"` InvokeId int - Opcode int + Opcode int `asn1:"optional"` Payload struct { asn1.RawContent - } + } `asn1:"optional"` } // ReturnResult it Context-specific Constructed 2 @@ -19,7 +19,7 @@ type ReturnResult struct { asn1.Tag `asn1:"tag:2"` InvokeId int Result struct { - asn1.RawContent - Opcode int + asn1.RawContent `asn1:"optional"` + Opcode int `asn1:"optional"` } } -- cgit v1.2.3