aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_wlan.c
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-07-16 18:58:55 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-07-16 18:58:55 +0000
commit717bd5e03fbc05b7bb1f621033eabb785750d03f (patch)
treecbc6b337381d93d3ef6d23ae98632e553fa35f14 /src/transport/plugin_transport_wlan.c
parent5b0b4975c8c863e5948cfadafcfeb166655e4561 (diff)
downloadgnunet-717bd5e03fbc05b7bb1f621033eabb785750d03f.tar.gz
gnunet-717bd5e03fbc05b7bb1f621033eabb785750d03f.zip
extended HELPER api to notify when child crashes
Diffstat (limited to 'src/transport/plugin_transport_wlan.c')
-rw-r--r--src/transport/plugin_transport_wlan.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/transport/plugin_transport_wlan.c b/src/transport/plugin_transport_wlan.c
index c2565a4a8..2d786e2a9 100644
--- a/src/transport/plugin_transport_wlan.c
+++ b/src/transport/plugin_transport_wlan.c
@@ -1713,6 +1713,7 @@ libgnunet_plugin_transport_wlan_init (void *cls)
1713 plugin->suid_helper = GNUNET_HELPER_start ("gnunet-helper-transport-wlan", 1713 plugin->suid_helper = GNUNET_HELPER_start ("gnunet-helper-transport-wlan",
1714 plugin->helper_argv, 1714 plugin->helper_argv,
1715 &handle_helper_message, 1715 &handle_helper_message,
1716 NULL,
1716 plugin); 1717 plugin);
1717 break; 1718 break;
1718 case 1: /* testmode, peer 1 */ 1719 case 1: /* testmode, peer 1 */
@@ -1722,6 +1723,7 @@ libgnunet_plugin_transport_wlan_init (void *cls)
1722 plugin->suid_helper = GNUNET_HELPER_start ("gnunet-helper-transport-wlan-dummy", 1723 plugin->suid_helper = GNUNET_HELPER_start ("gnunet-helper-transport-wlan-dummy",
1723 plugin->helper_argv, 1724 plugin->helper_argv,
1724 &handle_helper_message, 1725 &handle_helper_message,
1726 NULL,
1725 plugin); 1727 plugin);
1726 break; 1728 break;
1727 case 2: /* testmode, peer 2 */ 1729 case 2: /* testmode, peer 2 */
@@ -1731,6 +1733,7 @@ libgnunet_plugin_transport_wlan_init (void *cls)
1731 plugin->suid_helper = GNUNET_HELPER_start ("gnunet-helper-transport-wlan-dummy", 1733 plugin->suid_helper = GNUNET_HELPER_start ("gnunet-helper-transport-wlan-dummy",
1732 plugin->helper_argv, 1734 plugin->helper_argv,
1733 &handle_helper_message, 1735 &handle_helper_message,
1736 NULL,
1734 plugin); 1737 plugin);
1735 break; 1738 break;
1736 default: 1739 default: