Chris Nelson
2006-07-19 20:53:15 UTC
Is the processing done by the pppd idle_time_hook done _in_ _addition_
_to_ counting packets (with consideration for the active-filter) or
_instead_ _of_ that processing? That is, does it do:
if I've been idle for a while
or (idle_time_hook != NULL && idle_time_hook() < 0)
disconnect
or
if idle_time_hook != NULL
if idle_time_hook() < 0
disconnect
else if I've been idle for a while
disconnect
?
_to_ counting packets (with consideration for the active-filter) or
_instead_ _of_ that processing? That is, does it do:
if I've been idle for a while
or (idle_time_hook != NULL && idle_time_hook() < 0)
disconnect
or
if idle_time_hook != NULL
if idle_time_hook() < 0
disconnect
else if I've been idle for a while
disconnect
?