/* Copyright (c) 2021 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include "libwpa.h" pthread_t g_wpaThread; char* g_wpaArg[20] = {0}; int g_wpaArgc = 0; static void* ThreadMain() { printf("[WpaSample]init enter.\r\n"); wpa_main(g_wpaArgc, g_wpaArg); return NULL; } int main(int argc, char *argv[]) { g_wpaArgc = argc; for (int i = 0; i < g_wpaArgc; i++) { g_wpaArg[i] = argv[i]; } int ret = pthread_create(&g_wpaThread, NULL, ThreadMain, NULL); if (ret != 0) { printf("[WpaSample]create thread failed, error:%s.\r\n", strerror(ret)); return 1; } pthread_join(g_wpaThread, NULL); return 0; }