Click or drag to resize
Ipv4OnInput Method
Interrupt method invoked on behalf of the link-layer of the specified interface whenever frame payload data can be delivered to the network layer.

Namespace: Network.Sim.Network.Ip
Assembly: Network.Sim (in Network.Sim.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void OnInput(
	Interface ifc,
	byte[] data,
	EtherType type
)

Parameters

ifc
Type: Network.Sim.CoreInterface
The interface through which the data was received.
data
Type: SystemByte
A sequence of bytes received.
type
Type: Network.Sim.LinkEtherType
The type of the received data.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown if the ifc or the data argument is null.
Remarks
This API is exposed to the data-link layer.
See Also