aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-10-06 13:27:48 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-10-06 13:27:48 +0200
commit54a338c2597a814c8758482ce3c4f2f4b7213d78 (patch)
tree48a97f7219e7fd3cec0ca7f7413547a60b74f354
parent3d9786f40e6037ef5c5a27355df7fba9628b9c67 (diff)
Drop old stuff
-rw-r--r--unmarshal/main.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/unmarshal/main.go b/unmarshal/main.go
deleted file mode 100644
index 7f4de58..0000000
--- a/unmarshal/main.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "dim13.org/asn1/ber"
- rose "dim13.org/asn1/ROSE"
-)
-
-func main() {
- pdu := rose.Invoke{
- InvokeId: 2,
- Opcode: 511,
- Argument: nil,
- }
- b, err := ber.Marshal(pdu)
- fmt.Println(err, b)
- fmt.Println(ber.Dump(b))
-}