通过管道或流读取snort日志

时间:2012-01-01 09:53:15

标签: stream logging pipe snort

如何通过管道或流读取snort日志? 像这样的东西:

snort -l | myApplication

1 个答案:

答案 0 :(得分:0)

管道使用标准输入 - “stdin”,例如键盘输入。 然后你可以使用相同的功能:

int x;

std::cin << x;
scanf("%d", &x);

等等。