mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Rewrite netstats polling As modern module Don't use snmpgetnext as it can result in extra data returned * remove copyrights on interfaces * typehints * fix silly backslashes
9 lines
146 B
PHP
9 lines
146 B
PHP
<?php
|
|
|
|
namespace LibreNMS\Interfaces\Polling\Netstats;
|
|
|
|
interface TcpNetstatsPolling
|
|
{
|
|
public function pollTcpNetstats(array $oids): array;
|
|
}
|