aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_wlan.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-02-27 11:00:10 +0000
committerChristian Grothoff <christian@grothoff.org>2012-02-27 11:00:10 +0000
commit0238db34853380280ccf164918ebbb28260f4629 (patch)
tree2c47ddbbfa27e7a0479d5c12e78d77342780a4bd /src/transport/plugin_transport_wlan.c
parentdc3ae8f36ec69ca2a96a93feda501682ff168320 (diff)
downloadgnunet-0238db34853380280ccf164918ebbb28260f4629.tar.gz
gnunet-0238db34853380280ccf164918ebbb28260f4629.zip
enabling use of pipes for signal communication also on UNIX to enable future integration with Java services
Diffstat (limited to 'src/transport/plugin_transport_wlan.c')
-rw-r--r--src/transport/plugin_transport_wlan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transport/plugin_transport_wlan.c b/src/transport/plugin_transport_wlan.c
index 822a6701d..4510ae12c 100644
--- a/src/transport/plugin_transport_wlan.c
+++ b/src/transport/plugin_transport_wlan.c
@@ -1487,7 +1487,7 @@ wlan_transport_start_wlan_helper (struct Plugin *plugin)
1487 if (GNUNET_OS_check_helper_binary (filenamehw) == GNUNET_YES) 1487 if (GNUNET_OS_check_helper_binary (filenamehw) == GNUNET_YES)
1488 { 1488 {
1489 plugin->server_proc = 1489 plugin->server_proc =
1490 GNUNET_OS_start_process (plugin->server_stdin, plugin->server_stdout, 1490 GNUNET_OS_start_process (GNUNET_NO, plugin->server_stdin, plugin->server_stdout,
1491 filenamehw, filenamehw, plugin->interface, 1491 filenamehw, filenamehw, plugin->interface,
1492 NULL); 1492 NULL);
1493 } 1493 }
@@ -1514,7 +1514,7 @@ wlan_transport_start_wlan_helper (struct Plugin *plugin)
1514 absolute_filename, plugin->interface, plugin->testmode); 1514 absolute_filename, plugin->interface, plugin->testmode);
1515#endif 1515#endif
1516 plugin->server_proc = 1516 plugin->server_proc =
1517 GNUNET_OS_start_process (plugin->server_stdin, plugin->server_stdout, 1517 GNUNET_OS_start_process (GNUNET_NO, plugin->server_stdin, plugin->server_stdout,
1518 absolute_filename, absolute_filename, "1", 1518 absolute_filename, absolute_filename, "1",
1519 NULL); 1519 NULL);
1520 if (plugin->server_proc == NULL) 1520 if (plugin->server_proc == NULL)
@@ -1534,7 +1534,7 @@ wlan_transport_start_wlan_helper (struct Plugin *plugin)
1534#endif 1534#endif
1535 1535
1536 plugin->server_proc = 1536 plugin->server_proc =
1537 GNUNET_OS_start_process (plugin->server_stdin, plugin->server_stdout, 1537 GNUNET_OS_start_process (GNUNET_NO, plugin->server_stdin, plugin->server_stdout,
1538 absolute_filename, absolute_filename, "2", 1538 absolute_filename, absolute_filename, "2",
1539 NULL); 1539 NULL);
1540 if (plugin->server_proc == NULL) 1540 if (plugin->server_proc == NULL)