add net_interface_stat.speed

This commit is contained in:
Doug MacEachern 2006-03-07 01:26:27 +00:00
parent ce71b968c6
commit 335756bdb3
1 changed files with 1 additions and 1 deletions

View File

@ -1840,7 +1840,7 @@ int sigar_net_interface_stat_get(sigar_t *sigar, const char *name,
ifstat->tx_overruns = SIGAR_FIELD_NOTIMPL;
ifstat->tx_carrier = SIGAR_FIELD_NOTIMPL;
ifstat->speed = SIGAR_FIELD_NOTIMPL;
ifstat->speed = ifm->ifm_data.ifi_baudrate;
return SIGAR_OK;
}