Signed-off-by: Yuichi Ito <[email protected]>
---
ryu/lib/packet/sctp.py | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/ryu/lib/packet/sctp.py b/ryu/lib/packet/sctp.py
index 258dd18..bf6bd09 100644
--- a/ryu/lib/packet/sctp.py
+++ b/ryu/lib/packet/sctp.py
@@ -1383,9 +1383,6 @@ class cause_unresolvable_addr(cause_with_value):
def cause_code(cls):
return CCODE_UNRESOLVABLE_ADDR
- def __init__(self, length, value):
- super(cause_unresolvable_addr, self).__init__(length, value)
-
@classmethod
def parser(cls, buf):
(_, length) = struct.unpack_from(cls._PACK_STR, buf)
@@ -1459,9 +1456,6 @@ class cause_invalid_param(cause):
def cause_code(cls):
return CCODE_INVALID_PARAM
- def __init__(self, length):
- super(cause_invalid_param, self).__init__(length)
-
@classmethod
def parser(cls, buf):
(_, length) = struct.unpack_from(cls._PACK_STR, buf)
@@ -1557,9 +1551,6 @@ class cause_cookie_while_shutdown(cause):
def cause_code(cls):
return CCODE_COOKIE_WHILE_SHUTDOWN
- def __init__(self, length):
- super(cause_cookie_while_shutdown, self).__init__(length)
-
@classmethod
def parser(cls, buf):
(_, length) = struct.unpack_from(cls._PACK_STR, buf)
--
1.7.10.4
------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135991&iu=/4140/ostg.clktrk
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel