diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-04-12 09:12:30 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-04-12 09:12:30 +0900 |
commit | 8daa5116576b3e3582e6c8e05ae1b64f56197ec6 (patch) | |
tree | 6fc1a336ba08c51cfac99da9127fa3117b517037 /packet | |
parent | 1151436f137e32ac5d5ce9592cada872f47f312b (diff) |
packet: create rtr package
move rtr stuff from bgp to rtr package.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'packet')
-rw-r--r-- | packet/rtr/rtr.go (renamed from packet/bgp/rtr.go) | 2 | ||||
-rw-r--r-- | packet/rtr/rtr_test.go (renamed from packet/bgp/rtr_test.go) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packet/bgp/rtr.go b/packet/rtr/rtr.go index 30657e15..902f1e62 100644 --- a/packet/bgp/rtr.go +++ b/packet/rtr/rtr.go @@ -13,7 +13,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package bgp +package rtr import ( "encoding/binary" diff --git a/packet/bgp/rtr_test.go b/packet/rtr/rtr_test.go index 0f9b9527..961805d5 100644 --- a/packet/bgp/rtr_test.go +++ b/packet/rtr/rtr_test.go @@ -13,7 +13,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package bgp +package rtr import ( "encoding/hex" |