DEPRECATED Use the write function of the PCAPOutput class
(self, *args, **kwargs)
| 240 | self.write(*args, **kwargs) |
| 241 | |
| 242 | def dump(self, *args, **kwargs): |
| 243 | """ |
| 244 | DEPRECATED |
| 245 | Use the write function of the PCAPOutput class |
| 246 | """ |
| 247 | warnings.warn("Use the write function of the PCAPOutput class", DeprecationWarning) |
| 248 | self.write(*args, **kwargs) |
| 249 | |
| 250 | |
| 251 | class QueueOutputWrapper(object): |