aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_os_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_os_lib.h')
-rw-r--r--src/include/gnunet_os_lib.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/include/gnunet_os_lib.h b/src/include/gnunet_os_lib.h
index b285e3b60..d2474d2d8 100644
--- a/src/include/gnunet_os_lib.h
+++ b/src/include/gnunet_os_lib.h
@@ -149,8 +149,7 @@ char *GNUNET_OS_installation_get_path (enum GNUNET_OS_InstallationPathKind
149 * @param addrlen length of the address 149 * @param addrlen length of the address
150 * @return GNUNET_OK to continue iteration, GNUNET_SYSERR to abort 150 * @return GNUNET_OK to continue iteration, GNUNET_SYSERR to abort
151 */ 151 */
152typedef int (*GNUNET_OS_NetworkInterfaceProcessor) (void *cls, 152typedef int (*GNUNET_OS_NetworkInterfaceProcessor) (void *cls, const char *name,
153 const char *name,
154 int isDefault, 153 int isDefault,
155 const struct sockaddr * 154 const struct sockaddr *
156 addr, socklen_t addrlen); 155 addr, socklen_t addrlen);
@@ -342,10 +341,10 @@ int GNUNET_OS_process_wait (struct GNUNET_OS_Process *proc);
342/** 341/**
343 * Connects this process to its parent via pipe 342 * Connects this process to its parent via pipe
344 */ 343 */
345void 344void GNUNET_OS_install_parent_control_handler (void *cls,
346GNUNET_OS_install_parent_control_handler (void *cls, 345 const struct
347 const struct 346 GNUNET_SCHEDULER_TaskContext
348 GNUNET_SCHEDULER_TaskContext *tc); 347 *tc);
349 348
350 349
351/** 350/**