This adds two new performance data values to check_network, 'network_in'
and 'network_out'.
On systems with multiple network interfaces the 'network_in' value holds
the summarized input bytes and the 'network_out' value holds the
summarized output bytes.
std::wcout << " " << tIn + tOut << L"B/s | "
<< L"'network'=" << tIn + tOut << L"B;" << printInfo.warn.pString() << L";" << printInfo.crit.pString() << L";" << L"0; "
+ << L"'network_in'=" << tIn << L"B 'network_out'=" << tOut << L"B "
<< tss.str() << '\n';
return state;