Sends data through a software loopback interface.
Item | Description |
---|---|
ifp | Specifies the address of an ifnet structure describing the software loopback interface. |
m0 | Specifies an mbuf chain containing output data. |
dst | Specifies the address of a sockaddr structure that specifies the destination for the data. |
The looutput kernel service sends data through a software loopback interface. The data in the m0 parameter is passed to the input handler of the protocol specified by the dst parameter.
The looutput kernel service can be called from either the process or interrupt environment.
Item | Description |
---|---|
0 | Indicates that the data was successfully sent. |
ENOBUFS | Indicates that resource allocation failed. |
EAFNOSUPPORT | Indicates that the address family specified by the dst parameter is not supported. |