MCPcopy Index your code
hub / github.com/secdev/scapy / send

Method send

scapy/utils.py:4110–4117  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

4108 return self._inner.sr(*args, **kargs)
4109
4110 def send(self, x):
4111 # type: (Packet) -> Any
4112 with self._tx_mutex:
4113 try:
4114 return self._inner.send(x)
4115 except (ConnectionError, OSError) as e:
4116 self._inner.close()
4117 raise e

Callers 2

whoisFunction · 0.45
runMethod · 0.45

Calls 1

closeMethod · 0.45

Tested by

no test coverage detected