We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 293f5ea + fce884e commit ed22245Copy full SHA for ed22245
src/pyshark/capture/live_capture.py
@@ -74,6 +74,8 @@ def _verify_capture_parameters(self):
74
all_interfaces_names = tshark.get_all_tshark_interfaces_names(self.tshark_path)
75
all_interfaces_lowercase = [interface.lower() for interface in all_interfaces_names]
76
for each_interface in self.interfaces:
77
+ if each_interface.startswith("rpcap://"):
78
+ continue
79
if each_interface.isnumeric():
80
continue
81
if each_interface.lower() not in all_interfaces_lowercase:
0 commit comments