summaryrefslogtreecommitdiffhomepage
path: root/table/temporary_structs.go
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2014-12-16 19:37:22 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2014-12-16 19:40:53 +0900
commit95e585d7f09413fe5fc89397f8b4d50ac41556b8 (patch)
treed8df20d14dce6dffff90a24c8f23c7a505e181e4 /table/temporary_structs.go
parent504bd6f749224c493f3aa49197674ec08e7c0efe (diff)
table: remove temporary structures
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'table/temporary_structs.go')
-rw-r--r--table/temporary_structs.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/table/temporary_structs.go b/table/temporary_structs.go
deleted file mode 100644
index f892f625..00000000
--- a/table/temporary_structs.go
+++ /dev/null
@@ -1,21 +0,0 @@
-// core.go
-package table
-
-import (
- "github.com/osrg/gobgp/packet"
- "net"
-)
-
-type Peer struct {
- //need to define a structure
- RemoteAs uint32
- VersionNum int
- RemoteAddress net.IP
- protocol *BgpProtocol
-}
-
-type BgpProtocol struct {
- //need to define a structure
- recvOpenMsg *bgp.BGPOpen
- sentOpenMsg *bgp.BGPOpen
-}