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

Method __init__

scapy/pipetool.py:255–265  ·  view source on GitHub ↗
(self, name=None)

Source from the content-addressed store, hash-verified

253
254class Pipe(metaclass=_PipeMeta):
255 def __init__(self, name=None):
256 # type: (Optional[str]) -> None
257 self.sources = set() # type: Set['Pipe']
258 self.sinks = set() # type: Set['Sink']
259 self.high_sources = set() # type: Set['Pipe']
260 self.high_sinks = set() # type: Set['Sink']
261 self.trigger_sources = set() # type: Set['Pipe']
262 self.trigger_sinks = set() # type: Set['TriggerSink']
263 if name is None:
264 name = "%s" % (self.__class__.__name__)
265 self.name = name
266
267 def _send(self, msg):
268 # type: (Any) -> None

Callers 9

__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected