Attempt to decrease the time interval between two pollings of the network adapter to 1/10 of what it was.

This commit is contained in:
OBattler
2017-01-03 07:17:52 +01:00
parent 55635654de
commit b44f86a625

View File

@@ -87,7 +87,7 @@ void vlan_poller(void *priv)
{
int c;
vlan_poller_time += (int)((double)TIMER_USEC * (1000000.0 / 8.0 / 1500.0));
vlan_poller_time += (int)((double)TIMER_USEC * (1000000.0 / 8.0 / 15000.0));
for (c = 0; c < vlan_handlers_num; c++)
vlan_handlers[c].poller(vlan_handlers[c].priv);