X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/2d21ac55c334faf3a56e5634905ed6987fc787d4..a991bd8d3e7fe02dbca0644054bab73c5b75324a:/bsd/net/init.h diff --git a/bsd/net/init.h b/bsd/net/init.h index 570fa12dc..677e0c76a 100644 --- a/bsd/net/init.h +++ b/bsd/net/init.h @@ -2,7 +2,7 @@ * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ - * + * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in @@ -11,10 +11,10 @@ * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. - * + * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. - * + * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, @@ -22,44 +22,44 @@ * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. - * + * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /*! - @header init.h - This header defines an API to register a function that will be called when - the network stack is being initialized. This gives a kernel extensions an - opportunity to install filters before sockets are created and network - operations occur. + * @header init.h + * This header defines an API to register a function that will be called when + * the network stack is being initialized. This gives a kernel extensions an + * opportunity to install filters before sockets are created and network + * operations occur. */ #ifndef _NET_INIT_H_ -#define _NET_INIT_H_ +#define _NET_INIT_H_ #include /*! - @typedef net_init_func_ptr - @discussion net_init_func_ptr will be called once the networking stack - initialized and before network operations occur. + * @typedef net_init_func_ptr + * @discussion net_init_func_ptr will be called once the networking stack + * initialized and before network operations occur. */ -typedef void (*net_init_func_ptr)(void); +typedef void (*net_init_func_ptr)(void); /*! - @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 */ -errno_t net_init_add(net_init_func_ptr init_func); +errno_t net_init_add(net_init_func_ptr init_func); #ifdef BSD_KERNEL_PRIVATE /* net_init_run is called from bsd_init */ -extern void net_init_run(void) __attribute__((section("__TEXT, initcode"))); +extern void net_init_run(void); #endif /* BSD_KERNEL_PRIVATE */ #endif /* _NET_INIT_H_ */