Displaying 1 result from an estimated 1 matches for "graceful_shutdown_request".
2010 Nov 02
0
[Bug 1831] New: Repeatable crash of softflowd on high PPS collector?
...wn on user request
I've traced this through the softflowd code, and it appears to be
softflowd.c:1870 at "fault":
} else if (r == 0) {
logit(LOG_NOTICE, "Shutting down after
pcap EOF");
graceful_shutdown_request = 1;*/
break;
}
r is the return value from pcap_dispatch, according to the
pcap_dispatch man page during live capture a return of 0 can mean
simply that there is no data for the pcap consumer to use. Commenting
out this section results in a c...