IPGlobalStatistics::ReceivedPacketsWithAddressErrors Property
.NET Framework (current version)
Gets the number of Internet Protocol (IP) packets with address errors that were received.
Assembly: System (in System.dll)
The value returned by this property includes packets discarded for address related issues in the header fields, such as invalid addresses. If packet forwarding is not enabled, the value returned by this property includes packets that were discarded because the destination address was not a local address.
The following code example displays statistics for received IP packets with errors.
void ShowInboundIPErrors() { IPGlobalProperties ^ properties = IPGlobalProperties::GetIPGlobalProperties(); IPGlobalStatistics ^ ipstat = properties->GetIPv4GlobalStatistics(); Console::WriteLine( " Inbound Packet Errors:" ); Console::WriteLine( " Header Errors ....................... : {0}", ipstat->ReceivedPacketsWithHeadersErrors ); Console::WriteLine( " Address Errors ...................... : {0}", ipstat->ReceivedPacketsWithAddressErrors ); Console::WriteLine( " Unknown Protocol Errors ............. : {0}", ipstat->ReceivedPacketsWithUnknownProtocol ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: