forked from zeoneo/rpi-3b-wifi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prak_log.txt
1440 lines (1174 loc) · 57.9 KB
/
prak_log.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
####################
Inside Bootloader
Boot Atags Addr: 2EFF9900
####################
Requesting kernel
00001018 Raspbootcom V1.0
sending size in hex: 93f0c 605964
sending size: c 3f 9 0
receiving size: 1 2 3 4 5 6 7 8
receiving size: 0 0 0 9 3 F 0 C
Sending Kernel: 10.82 % Sending Kernel: 21.63 % Sending Kernel: 32.45 % Sending Kernel: 43.26 % Sending Kernel: 54.08 % Sending Kernel: 64.89 % Sending Kernel: 75.71 % Sending Kernel: 86.52 % Sending Kernel: 97.34 % Sending Kernel: 100.00 %
1018 -----------------Kernel Started Dude........................
Kernel End: 0x20a000
Kalloc start: 0x220000 end:0x2e8000
Kernel allocation init success
init task_reg : 9b050
new queue: q: 0x220010 head:0 tail: 0 lock: 220018
new queue: q: 0x220060 head:0 tail: 0 lock: 220068
initialize: 0xac30
In praakash main
initialize_link_layer: 0xa09c
wpa_supplicant_main: 0x136c4
clk_id: 1 clk_rate: 200000000 Chip Id : 0xa9a6 43430
ether4330: chip rev 1 type 1
brcmfmac43430-sdio.bin Firmware file found.
Breaking due to EOF.
EOF reached.
Completed transfer now off to compare.
compare...
Breaking due to EOF.
Successful comparison.
brcmfmac43430-sdio.txt Firmware file found.
Breaking due to EOF.
Completed transfer now off to compare.
compare...
Successful comparison.
HTCLOCK: 0xd0
rproc : ea14
lproc : dee4
new_task_pid:1 task_reg: 2e8000
NEw Task name: wfread base: 2e8000 sp: 2f1000
new_task_pid:2 task_reg: 2f2000
NEw Task name: wftimer base: 2f2000 sp: 2fb000
Flow start calling txstart
ether4330: addr B8:27:EB:B7:B3:D9
ether4330: firmware ready
new queue: q: 0x223610 head:0 tail: 0 lock: 223618
new queue: q: 0x223660 head:0 tail: 0 lock: 223668
new_task_pid:3 task_reg: 2fc000
NEw Task name: wifi base: 2fc000 sp: 305000
wpa_printf in the main_rpi3b
in the main_rpi3b
in the main_rpi3b 2
Initializing interface 'wlan0' conf 'in_memory' driver 'rpi3b' ctrl_interface 'N/A' bridge 'N/A'
PRAKASH_DEBUG reading conf file name.
PRAKASH_DEBUG: passphrase: 12345678 5 8
PRAKASH_DEBUG: Adding ssid to priority list.
addr: b8 27 eb b7 b3 d9
Own MAC address: b8:27:eb:b7:b3:d9
RSN: flushing PMKID list in the driver
0M"
valid country found
Setting country code to 'IN'
Inside wifi_control
Formatted command : country IN 224e20
CMCOUntry
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: Supplicant port status: Unauthorized
EAPOL: KEY_RX entering state NO_KEY_RECEIVE
EAPOL: SUPP_BE entering state INITIALIZE
EAP: EAP entering state DISABLED
EAPOL: Supplicant port status: Unauthorized
EAPOL: Supplicant port status: Unauthorized
Added interface wlan0
Trying to get current scan results first without requesting a new scan to speed up initial association
PRAK_DEBUG Calling get scan results.
Checking results now
PRAK_DEBUG Calling notify bss changes.
à["
PRAKASH_DEBUG trying to pick network
PRAKASH_DEBUG trying to check priority 0
Selecting BSS from priority group 0
Try to find WPA-enabled AP: Num: 0
Try to find non-WPA AP: 0
PRAKASH_DEBUG out of prio loop
No suitable network found
€\"
State: DISCONNECTED -> SCANNING
Starting AP scan for wildcard SSID
CMScan
WPA Driver scan started
EAPOL: disable timer tick
EAPOL: Supplicant port status: Unauthorized
WPA Driver scan timeout, stopping scan
CMScan
PRAK_DEBUG Calling get scan results.
Checking results now
In the receive scan result, after dequeue nLength:378
scanned SSID : Airtel_8317514147
In the receive scan result, after dequeue nLength:298
scanned SSID : prak1
In the receive scan result, after dequeue nLength:374
scanned SSID : 201
In the receive scan result, after dequeue nLength:374
scanned SSID : 201
In the receive scan result, after dequeue nLength:374
scanned SSID : 201
In the receive scan result, after dequeue nLength:422
scanned SSID : ZTE_2.4G_NMRbbF
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_NMRbbF
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_NMRbbF
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_NMRbbF
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:390
scanned SSID : Golden rain scotline
In the receive scan result, after dequeue nLength:438
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:14
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:378
scanned SSID : Airtel_8317514147
In the receive scan result, after dequeue nLength:298
scanned SSID : prak1
In the receive scan result, after dequeue nLength:298
scanned SSID : prak1
In the receive scan result, after dequeue nLength:306
scanned SSID : prak1
In the receive scan result, after dequeue nLength:374
scanned SSID : 201
In the receive scan result, after dequeue nLength:374
scanned SSID : 201
In the receive scan result, after dequeue nLength:374
scanned SSID : 201
In the receive scan result, after dequeue nLength:374
scanned SSID : 201
In the receive scan result, after dequeue nLength:370
scanned SSID : 201
In the receive scan result, after dequeue nLength:358
scanned SSID : AKSHAY2G
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_NMRbbF
In the receive scan result, after dequeue nLength:358
scanned SSID : AKSHAY2G
In the receive scan result, after dequeue nLength:358
scanned SSID : AKSHAY2G
In the receive scan result, after dequeue nLength:358
scanned SSID : AKSHAY2G
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:438
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:422
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:346
scanned SSID : hpp
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:438
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:546
scanned SSID : Vinod_2G
In the receive scan result, after dequeue nLength:422
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:454
scanned SSID : Vinod_2G
In the receive scan result, after dequeue nLength:414
scanned SSID :
In the receive scan result, after dequeue nLength:402
scanned SSID : Cit.pvt ldt
In the receive scan result, after dequeue nLength:374
scanned SSID : Varmafincorp2.4g
In the receive scan result, after dequeue nLength:474
scanned SSID : Cit.pvt ldt
In the receive scan result, after dequeue nLength:374
scanned SSID : mounisha
In the receive scan result, after dequeue nLength:458
scanned SSID : mounisha
In the receive scan result, after dequeue nLength:14
In the receive scan result, after dequeue nLength:298
scanned SSID : prak1
In the receive scan result, after dequeue nLength:298
scanned SSID : prak1
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:438
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:422
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:474
scanned SSID : Cit.pvt ldt
In the receive scan result, after dequeue nLength:474
scanned SSID : Cit.pvt ldt
In the receive scan result, after dequeue nLength:14
In the receive scan result, after dequeue nLength:606
scanned SSID : Jio2.4g
In the receive scan result, after dequeue nLength:298
scanned SSID : prak1
In the receive scan result, after dequeue nLength:414
scanned SSID :
In the receive scan result, after dequeue nLength:606
scanned SSID : Jio2.4g
In the receive scan result, after dequeue nLength:306
scanned SSID : prak1
In the receive scan result, after dequeue nLength:298
scanned SSID : prak1
In the receive scan result, after dequeue nLength:374
scanned SSID : 201
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_NMRbbF
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:366
scanned SSID : AKSHAY2G
In the receive scan result, after dequeue nLength:358
scanned SSID : AKSHAY2G
In the receive scan result, after dequeue nLength:358
scanned SSID : AKSHAY2G
In the receive scan result, after dequeue nLength:358
scanned SSID : AKSHAY2G
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_NMRbbF
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_NMRbbF
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_NMRbbF
In the receive scan result, after dequeue nLength:438
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:438
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:454
scanned SSID : Vinod_2G
In the receive scan result, after dequeue nLength:414
scanned SSID :
In the receive scan result, after dequeue nLength:354
scanned SSID : Aturi
In the receive scan result, after dequeue nLength:374
scanned SSID : Varmafincorp2.4g
In the receive scan result, after dequeue nLength:422
scanned SSID : ZTE_2.4G_tEemHK
In the receive scan result, after dequeue nLength:458
scanned SSID : mounisha
In the receive scan result, after dequeue nLength:14
In the receive scan result, after dequeue nLength:298
scanned SSID : prak1
In the receive scan result, after dequeue nLength:298
scanned SSID : prak1
In the receive scan result, after dequeue nLength:306
scanned SSID : prak1
In the receive scan result, after dequeue nLength:366
scanned SSID : AKSHAY2G
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:370
scanned SSID : 201
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:322
scanned SSID : Room's
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:438
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:374
scanned SSID : Varmafincorp2.4g
In the receive scan result, after dequeue nLength:14
In the receive scan result, after dequeue nLength:298
scanned SSID : prak1
In the receive scan result, after dequeue nLength:298
scanned SSID : prak1
In the receive scan result, after dequeue nLength:306
scanned SSID : prak1
In the receive scan result, after dequeue nLength:366
scanned SSID : AKSHAY2G
In the receive scan result, after dequeue nLength:362
scanned SSID : ZTE-RGHxQQ
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:422
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_NMRbbF
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:438
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:494
In the receive scan result, after dequeue nLength:494
In the receive scan result, after dequeue nLength:494
In the receive scan result, after dequeue nLength:422
In the receive scan result, after dequeue nLength:398
In the receive scan result, after dequeue nLength:462
In the receive scan result, after dequeue nLength:462
In the receive scan result, after dequeue nLength:462
In the receive scan result, after dequeue nLength:14
In the receive scan result, after dequeue nLength:298
In the receive scan result, after dequeue nLength:306
In the receive scan result, after dequeue nLength:366
In the receive scan result, after dequeue nLength:358
In the receive scan result, after dequeue nLength:610
In the receive scan result, after dequeue nLength:494
In the receive scan result, after dequeue nLength:610
In the receive scan result, after dequeue nLength:390
In the receive scan result, after dequeue nLength:438
In the receive scan result, after dequeue nLength:14
In the receive scan result, after dequeue nLength:306
In the receive scan result, after dequeue nLength:298
In the receive scan result, after dequeue nLength:306
In the receive scan result, after dequeue nLength:610
In the receive scan result, after dequeue nLength:366
In the receive scan result, after dequeue nLength:610
In the receive scan result, after dequeue nLength:610
PRAK_DEBUG Calling notify bss changes.
New scan results available
PRAKASH_DEBUG trying to pick network
PRAKASH_DEBUG trying to check priority 0
Selecting BSS from priority group 0
Try to find WPA-enabled AP: Num: 128
0: f8:c4:f3:cf:0d:37 ssid='Airtel_8317514147' wpa_ie_len=26 rsn_ie_len=24 caps=0x0
skip - SSID mismatch
1: d6:8a:39:a3:ec:89 ssid='prak1' wpa_ie_len=0 rsn_ie_len=20 caps=0x0
selected based on RSN IE
selected WPA AP d6:8a:39:a3:ec:89 ssid='prak1'
PRAKASH_DEBUG out of prio loop
.
0#.
WPA: clearing own WPA/RSN IE
Automatic auth_alg selection: 0x1
Ð#.
WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 2 proto 2
Proceeding to choose cipher suites.
WPA: using GTK CCMP
WPA: using PTK CCMP
À$.
WPA: using KEY_MGMT WPA-PSK
No keys have been configured - skip key clearing
State: SCANNING -> ASSOCIATING
Line 1232
PRAK_DEBUG Trying to associate.
SSID->buffer: prak1 __ BSSID->buffer: D68A39A3EC89 __ chan: 0 __ Auth->buffer: 30140100000FAC040100000FAC040100000FAC020000 __
Inside wifi_control
Formatted command : join prak1 D68A39A3EC89 0 30140100000FAC040100000FAC040100000FAC020000 2e39b0
CMJOIN command
Called setauth from !setcrypt(ctlr, cb, cb->f[3])
i : 22 a:30140100000FAC040100000FAC040100000FAC020000
Sending wl join to essid: prak1
Wifi sending join command
join_setvar::
05 00 00 00 70 72 61 6b 31 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 ff 00 00 00 ff ff ff ff ff ff ff ff
ff ff ff ff ff ff ff ff 39 00 00 00 71 f4 00 00
00 00 00 00 dc 4b 30 00
Wifi sending join command completed
Called waitjoin
Called waitjoin completed resp: 0
Connected to prak1
CMJOIN
inside wpa_supplicant_event_assoc
State: ASSOCIATING -> ASSOCIATED
Calling fet mac
addr: b8 27 eb b7 b3 d9
Associated to a new BSS: BSSID=b8:27:eb:b7:b3:d9
No keys have been configured - skip key clearing
Select network based on association information
Calling fet mac
addr: b8 27 eb b7 b3 d9
Network configuration found for the current AP
Calling set suites
WPA: Using WPA IE from AssocReq to set cipher suites
WPA: Selected cipher suites: group 16 pairwise 16 key_mgmt 2 proto 2
Proceeding to choose cipher suites.
WPA: using GTK CCMP
WPA: using PTK CCMP
€F.
WPA: using KEY_MGMT WPA-PSK
Completed set suites
before wpa_supplicant_rsn_supp_set_config
config->ssid_len : 5
after wpa_supplicant_rsn_supp_set_config
wpa_supplicant_initiate_eapol
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP fail=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portControl=Auto
EAPOL: Supplicant port etheriq ignore nFlag: 1
etheriq: 2e4220 BLEN : 113 pEther:2200b0
status: Unauthorized
after wpa_supplicant_initiate_eapol
wpas_notify_network_changed
returning bss select
Fall through
Associated with eb:b7:b3:d9:2f477:b06c
calling wpa_supplicant_scard_init
WPA: Association event - clear replay counter
WPA: Clear old PTK
line 1012
line 1023
EAPOL: External notification - portEnabled=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portValid=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
notified eap success
EAPOL: External notification - portEnabled=1
EAPOL: SUPP_PAE entering state CONNECTING
EAPOL: enable timer tick
EAPOL: SUPP_BE entering state IDLE
calling wpa_supplicant_req_auth_timeout
ÐK.
callingwpa_supplicant_cancel_scan
ÀL.
outside 1062
outside 1111
callin wpa_supplicant_req_auth_timeout
`M.
config->ssid_len : 5
wpa_supplicant_initiate_eapol
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=Auto
line 1301
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
RSN: Ignored PMKID candidate without preauth flag
EAPOL: startWhen --> 0
EAPOL: disable timer tick
EAPOL: SUPP_PAE entering state CONNECTING
EAPOL: enable timer tick
EAPOL: txStart
WPA: drop TX EAPOL in non-IEEE 802.1X mode (type=1 len=0)
etheriq ignore nFlag: 1
etheriq: 2e4b30 BLEN : 113 pEther:2200b0
@["
Added BSSID b8:27:eb:b7:b3:d9 into blacklist
Inside wifi_control
Formatted command : disassoc 3 2e4e50
No keys have been configured - skip key clearing
State: ASSOCIATED -> DISCONNECTED
EAPOL: External notification - portEnabled=0
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: Supplicant port status: Unauthorized
EAPOL: SUPP_BE entering state INITIALIZE
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - portValid=0
EAPOL: Supplicant port status: Unauthorized
EAPOL: External notification - EAP success=0
EAPOL: Supplicant port status: Unauthorized
ðN.
EAPOL: Supplicant port status: Unauthorized
State: DISCONNECTED -> SCANNING
Starting AP scan for wildcard SSID
CMScan
WPA Driver scan started
EAPOL: Supplicant port status: Unauthorized
EAPOL: Supplicant port status: Unauthorized
EAPOL: Supplicant port status: Unauthorized
EAPOL: Supplicant port status: Unauthorized
Error in schedular alogirithm nTask: status: -1954250232 task_sp: 2f0f60
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
EAPOL: Supplicant port status: Unauthorized
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
EAPOL: Supplic Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
ant port status: Unauthorized
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
WPA Driver scan timeout, stopping scan
CMScan
PRAK_DEBUG Calling get scan results.
Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
Checking results now
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:374
scanned SSID : JioPrivateNe Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
t
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:610
scanned SSID : SecTeamNortan
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:494
scanned SSID : Z Error in schedular alogirithm nTask: status: -1954250232 task_sp: c4fc0
TE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:494
scanned SSID : ZTE_2.4G_J7NqHZ
In the receive scan result, after dequeue nLength:338
scanned SSID : hpp
In the receive scan result, after dequeue nLength:338
scanned SSID : hpp
In the receive scan result, after dequeue nLength:338
scanned SSID : hpp
In the receive scan result, after dequeue nLength:422