aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_wlan.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-01-14 23:18:06 +0000
committerChristian Grothoff <christian@grothoff.org>2012-01-14 23:18:06 +0000
commit91ab799c42b2496e65afd0c866811999d88119ed (patch)
tree2c31aa87ead94723c1d959a691b11811fc4589f8 /src/transport/plugin_transport_wlan.c
parenta72a1c6fc09216c5be7f5ee697ff55cf66907c80 (diff)
downloadgnunet-91ab799c42b2496e65afd0c866811999d88119ed.tar.gz
gnunet-91ab799c42b2496e65afd0c866811999d88119ed.zip
LRN: enable more fine-grained control over blocking/non-blocking pipe operation
Diffstat (limited to 'src/transport/plugin_transport_wlan.c')
-rw-r--r--src/transport/plugin_transport_wlan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/plugin_transport_wlan.c b/src/transport/plugin_transport_wlan.c
index d121ec9be..5ac44c2f2 100644
--- a/src/transport/plugin_transport_wlan.c
+++ b/src/transport/plugin_transport_wlan.c
@@ -1441,11 +1441,11 @@ wlan_transport_start_wlan_helper (struct Plugin *plugin)
1441 return GNUNET_YES; 1441 return GNUNET_YES;
1442 } 1442 }
1443 1443
1444 plugin->server_stdout = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_NO, GNUNET_YES); 1444 plugin->server_stdout = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_NO, GNUNET_YES);
1445 if (plugin->server_stdout == NULL) 1445 if (plugin->server_stdout == NULL)
1446 return GNUNET_SYSERR; 1446 return GNUNET_SYSERR;
1447 1447
1448 plugin->server_stdin = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_NO); 1448 plugin->server_stdin = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_YES, GNUNET_NO);
1449 if (plugin->server_stdin == NULL) 1449 if (plugin->server_stdin == NULL)
1450 return GNUNET_SYSERR; 1450 return GNUNET_SYSERR;
1451 1451