diff --git a/scapy/automaton.py b/scapy/automaton.py index 854cd816a183166c1e22408d0348c8a403b191c2..332709d31d2fcc3b268d896672177423af6b56d1 100644 --- a/scapy/automaton.py +++ b/scapy/automaton.py @@ -194,14 +194,6 @@ class _ATMT_supersocket(SuperSocket): return r def close(self): pass - def sr(self, *args, **kargs): - return sndrcv(self, *args, **kargs) - def sr1(self, *args, **kargs): - a,b = sndrcv(self, *args, **kargs) - if len(a) > 0: - return a[0][1] - else: - return None class _ATMT_to_supersocket: def __init__(self, name, ioevent, automaton):