| 1 | initial version |
Why bother using a named pipe?
Just call tshark from your C/C++ application, either by using FILE* pipe = popen("tshark ... -w -", "r"); or using the functions pipe, fork and execvp.
| 2 | No.2 Revision |
Why bother using a named pipe?
Just call tshark from your C/C++ application, either by using FILE* pipe = or by using the functions popen("tshark _popen("tshark ... -w -", "r");"rb");pipe, fork and execvp.