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

Method _add_pipes

scapy/pipetool.py:116–124  ·  view source on GitHub ↗
(self, *pipes)

Source from the content-addressed store, hash-verified

114 return pl
115
116 def _add_pipes(self, *pipes):
117 # type: (*Pipe) -> Set[Pipe]
118 pl = set()
119 for p in pipes:
120 pl |= self.get_pipe_list(p)
121 pl -= self.active_pipes
122 for q in pl:
123 self.add_one_pipe(q)
124 return pl
125
126 def run(self):
127 # type: () -> None

Callers 2

__init__Method · 0.95
addMethod · 0.95

Calls 2

get_pipe_listMethod · 0.95
add_one_pipeMethod · 0.95

Tested by

no test coverage detected