diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-12-16 19:37:22 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-12-16 19:40:53 +0900 |
commit | 95e585d7f09413fe5fc89397f8b4d50ac41556b8 (patch) | |
tree | d8df20d14dce6dffff90a24c8f23c7a505e181e4 /table/temporary_structs.go | |
parent | 504bd6f749224c493f3aa49197674ec08e7c0efe (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.go | 21 |
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 -} |