- @function net_init_add
- @discussion Add a function to be called during network initialization. Your
- kext must not unload until the function you register is called if
- net_init_add returns success.
- @param init_func A pointer to a function to be called when the stack is
- initialized.
- @result EINVAL - the init_func value was NULL.
- EALREADY - the network has already been initialized
- ENOMEM - there was not enough memory to perform this operation
- 0 - success
+ * @function net_init_add
+ * @discussion Add a function to be called during network initialization. Your
+ * kext must not unload until the function you register is called if
+ * net_init_add returns success.
+ * @param init_func A pointer to a function to be called when the stack is
+ * initialized.
+ * @result EINVAL - the init_func value was NULL.
+ * EALREADY - the network has already been initialized
+ * ENOMEM - there was not enough memory to perform this operation
+ * 0 - success