ADC Home > Reference Library > Reference > Darwin > KPI Reference
|
kpi_protocol.h |
Includes: | <sys/kernel_types.h> <net/kpi_interface.h> |
This header defines an API to interact with protocols in the kernel. The KPIs in this header file can be used to interact with protocols that already exist in the stack. These KPIs can be used to support existing protocols over media types that are not natively supported in the kernel, such as ATM.
proto_inject |
errno_t proto_inject( protocol_family_t protocol, mbuf_t packet);
protocol
packet
A errno error on failure. Unless proto_inject returns zero, the caller is responsible for freeing the mbuf.
Injects a packet on the specified protocol from anywhere. To avoid recursion, the protocol may need to queue the packet to be handled later.
proto_input |
errno_t proto_input( protocol_family_t protocol, mbuf_t packet);
protocol
packet
A errno error on failure. Unless proto_input returns zero, the caller is responsible for freeing the mbuf.
Inputs a packet on the specified protocol from the input path.
proto_register_plumber |
errno_t proto_register_plumber( protocol_family_t proto_fam, ifnet_family_t if_fam, proto_plumb_handler plumb, proto_unplumb_handler unplumb);
proto_fam
if_fam
plumb
unplumb
A non-zero value of the attach failed.
Allows the caller to specify the functions called when a protocol is attached to an interface belonging to the specified family and when that protocol is detached.
proto_unregister_plumber |
void proto_unregister_plumber( protocol_family_t proto_fam, ifnet_family_t if_fam);
proto_fam
if_fam
Unregisters a previously registered plumbing function.
proto_plumb_handler |
typedef errno_t (*proto_plumb_handler)( ifnet_t ifp, protocol_family_t protocol);
ifp
- The interface the protocol should be attached to.
protocol_family
- The protocol that should be attached to the interface.
A non-zero value of the attach failed.
proto_plumb_handler is called to attach a protocol to an interface. A typical protocol plumb function would fill out an ifnet_attach_proto_param and call ifnet_attach_protocol.
proto_unplumb_handler |
typedef void (*proto_unplumb_handler)( ifnet_t ifp, protocol_family_t protocol);
ifp
- The interface the protocol should be detached from.
protocol_family
- The protocol that should be detached from the interface.
proto_unplumb_handler is called to detach a protocol from an interface. A typical unplumb function would call ifnet_detach_protocol and perform any necessary cleanup.
|