Updated to hostap_2_6
[mech_eap.git] / wpa_supplicant / libwpa_test.c
diff --git a/wpa_supplicant/libwpa_test.c b/wpa_supplicant/libwpa_test.c
new file mode 100644 (file)
index 0000000..e51ab72
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+ * libwpa_test - Test program for libwpa_client.* library linking
+ * Copyright (c) 2015, Jouni Malinen <j@w1.fi>
+ *
+ * This software may be distributed under the terms of the BSD license.
+ * See README for more details.
+ */
+
+#include "includes.h"
+
+#include "common/wpa_ctrl.h"
+
+int main(int argc, char *argv[])
+{
+       struct wpa_ctrl *ctrl;
+
+       ctrl = wpa_ctrl_open("foo");
+       if (!ctrl)
+               return -1;
+       if (wpa_ctrl_attach(ctrl) == 0)
+               wpa_ctrl_detach(ctrl);
+       if (wpa_ctrl_pending(ctrl)) {
+               char buf[10];
+               size_t len;
+
+               len = sizeof(buf);
+               wpa_ctrl_recv(ctrl, buf, &len);
+       }
+       wpa_ctrl_close(ctrl);
+
+       return 0;
+}