fix
authorChristian Grothoff <christian@grothoff.org>
Sun, 10 Nov 2019 22:14:30 +0000 (23:14 +0100)
committerChristian Grothoff <christian@grothoff.org>
Sun, 10 Nov 2019 22:14:30 +0000 (23:14 +0100)
src/include/gnunet_network_lib.h
src/include/gnunet_os_lib.h

index 15d4a8ada86ab9363574d5a363989cdd20ab3f01..47a5b853f8fee89f1a0396e39889b522ec65efdb 100644 (file)
@@ -125,7 +125,7 @@ GNUNET_NETWORK_socket_accept (const struct GNUNET_NETWORK_Handle *desc,
  * @return NULL on error (including not supported on target platform)
  */
 struct GNUNET_NETWORK_Handle *
-GNUNET_NETWORK_socket_box_native (SOCKTYPE fd);
+GNUNET_NETWORK_socket_box_native (int fd);
 
 
 /**
index 2eada2783882e2b2cdcb4e6cc2443b33db58c367..50e9a4c9217776c620f2d032f88a349c967fca5b 100644 (file)
@@ -522,7 +522,7 @@ GNUNET_OS_start_process_va (int pipe_control,
 struct GNUNET_OS_Process *
 GNUNET_OS_start_process_v (int pipe_control,
                            enum GNUNET_OS_InheritStdioFlags std_inheritance,
-                           const SOCKTYPE *lsocks,
+                           const int *lsocks,
                            const char *filename,
                            char *const argv[]);
 
@@ -548,7 +548,7 @@ GNUNET_OS_start_process_v (int pipe_control,
 struct GNUNET_OS_Process *
 GNUNET_OS_start_process_s (int pipe_control,
                            unsigned int std_inheritance,
-                           const SOCKTYPE *lsocks,
+                           const int *lsocks,
                            const char *filename, ...);