diff options
author | Yuichi Ito <ito.yuichi0@gmail.com> | 2013-10-23 19:39:32 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-10-24 07:48:27 +0900 |
commit | 5c8a59b13ae24ef6d71e49e63c4702d4f78f63c3 (patch) | |
tree | c1e4db6971b811750254cfa8cb4830fdc71301ec | |
parent | e1e22073fb88fcb8d83c905361b2f23b94eba570 (diff) |
packet lib: sctp: fill up lack of decolators
Signed-off-by: Yuichi Ito <ito.yuichi0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/lib/packet/sctp.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ryu/lib/packet/sctp.py b/ryu/lib/packet/sctp.py index bf6bd094..6a6e89bc 100644 --- a/ryu/lib/packet/sctp.py +++ b/ryu/lib/packet/sctp.py @@ -1977,6 +1977,7 @@ class param_supported_addr(param): @chunk_init.register_param_type @chunk_init_ack.register_param_type +@cause_unresolvable_addr.register_param_type @cause_restart_with_new_addr.register_param_type class param_ipv4(param): """Stream Control Transmission Protocol (SCTP) @@ -2024,6 +2025,7 @@ class param_ipv4(param): @chunk_init.register_param_type @chunk_init_ack.register_param_type +@cause_unresolvable_addr.register_param_type @cause_restart_with_new_addr.register_param_type class param_ipv6(param): """Stream Control Transmission Protocol (SCTP) |