*** empty log message ***

This commit is contained in:
Martin Baulig
1999-12-25 20:44:04 +00:00
parent addb3101f2
commit de90df6a63
6 changed files with 22 additions and 13 deletions

View File

@@ -32,14 +32,19 @@ static const unsigned long _glibtop_sysdeps_netload = 0;
int
glibtop_init_netload_s (glibtop *server)
{
server->sysdeps.netload = _glibtop_sysdeps_netload;
server->sysdeps.netload = _glibtop_sysdeps_netload;
return 0;
}
/* Provides network statistics. */
int
glibtop_get_netload_s (glibtop *server, glibtop_netload *buf,
const char *interface)
const char *interface, unsigned transport,
unsigned protocol)
{
memset (buf, 0, sizeof (glibtop_netload));
memset (buf, 0, sizeof (glibtop_netload));
return 0;
}