We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31fd0cd commit 261a7d8Copy full SHA for 261a7d8
protocols/protocol_factory.py
@@ -4,6 +4,7 @@
4
from protocols.cloud.cloud_protocol import CloudProtocol
5
from protocols.file_protocol.file_protocol import FileProtocol
6
from protocols.memory_protocol import MemoryProtocol
7
+from protocols.pipe_protocol.pipe_protocol import PipeProtocol
8
from protocols.protocol import Protocol
9
from common.exceptions import SmartInspectError
10
from protocols.tcp_protocol import TcpProtocol
@@ -18,6 +19,7 @@ class ProtocolFactory:
18
19
"file": FileProtocol,
20
"text": TextProtocol,
21
"mem": MemoryProtocol,
22
+ "pipe": PipeProtocol,
23
}
24
__PROTOCOL_NOT_FOUND = "The requested protocol is unknown"
25
__lock = threading.Lock()
0 commit comments