-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpacket-btbrlmp.c
5262 lines (4916 loc) · 154 KB
/
packet-btbrlmp.c
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
/* packet-btbrlmp.c
* Routines for Bluetooth LMP dissection
* Copyright 2009, Michael Ossmann <[email protected]>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <[email protected]>
* Copyright 1998 Gerald Combs
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <epan/packet.h>
#include <epan/prefs.h>
/* LMP opcodes */
#define LMP_VSC 0
#define LMP_NAME_REQ 1
#define LMP_NAME_RES 2
#define LMP_ACCEPTED 3
#define LMP_NOT_ACCEPTED 4
#define LMP_CLKOFFSET_REQ 5
#define LMP_CLKOFFSET_RES 6
#define LMP_DETACH 7
#define LMP_IN_RAND 8
#define LMP_COMB_KEY 9
#define LMP_UNIT_KEY 10
#define LMP_AU_RAND 11
#define LMP_SRES 12
#define LMP_TEMP_RAND 13
#define LMP_TEMP_KEY 14
#define LMP_ENCRYPTION_MODE_REQ 15
#define LMP_ENCRYPTION_KEY_SIZE_REQ 16
#define LMP_START_ENCRYPTION_REQ 17
#define LMP_STOP_ENCRYPTION_REQ 18
#define LMP_SWITCH_REQ 19
#define LMP_HOLD 20
#define LMP_HOLD_REQ 21
#define LMP_SNIFF_REQ 23
#define LMP_UNSNIFF_REQ 24
#define LMP_PARK_REQ 25
#define LMP_SET_BROADCAST_SCAN_WINDOW 27
#define LMP_MODIFY_BEACON 28
#define LMP_UNPARK_BD_ADDR_REQ 29
#define LMP_UNPARK_PM_ADDR_REQ 30
#define LMP_INCR_POWER_REQ 31
#define LMP_DECR_POWER_REQ 32
#define LMP_MAX_POWER 33
#define LMP_MIN_POWER 34
#define LMP_AUTO_RATE 35
#define LMP_PREFERRED_RATE 36
#define LMP_VERSION_REQ 37
#define LMP_VERSION_RES 38
#define LMP_FEATURES_REQ 39
#define LMP_FEATURES_RES 40
#define LMP_QUALITY_OF_SERVICE 41
#define LMP_QUALITY_OF_SERVICE_REQ 42
#define LMP_SCO_LINK_REQ 43
#define LMP_REMOVE_SCO_LINK_REQ 44
#define LMP_MAX_SLOT 45
#define LMP_MAX_SLOT_REQ 46
#define LMP_TIMING_ACCURACY_REQ 47
#define LMP_TIMING_ACCURACY_RES 48
#define LMP_SETUP_COMPLETE 49
#define LMP_USE_SEMI_PERMANENT_KEY 50
#define LMP_HOST_CONNECTION_REQ 51
#define LMP_SLOT_OFFSET 52
#define LMP_PAGE_MODE_REQ 53
#define LMP_PAGE_SCAN_MODE_REQ 54
#define LMP_SUPERVISION_TIMEOUT 55
#define LMP_TEST_ACTIVATE 56
#define LMP_TEST_CONTROL 57
#define LMP_ENCRYPTION_KEY_SIZE_MASK_REQ 58
#define LMP_ENCRYPTION_KEY_SIZE_MASK_RES 59
#define LMP_SET_AFH 60
#define LMP_ENCAPSULATED_HEADER 61
#define LMP_ENCAPSULATED_PAYLOAD 62
#define LMP_SIMPLE_PAIRING_CONFIRM 63
#define LMP_SIMPLE_PAIRING_NUMBER 64
#define LMP_DHKEY_CHECK 65
#define LMP_ESCAPE_1 124
#define LMP_ESCAPE_2 125
#define LMP_ESCAPE_3 126
#define LMP_ESCAPE_4 127
/* LMP extended opcodes */
#define LMP_ACCEPTED_EXT 1
#define LMP_NOT_ACCEPTED_EXT 2
#define LMP_FEATURES_REQ_EXT 3
#define LMP_FEATURES_RES_EXT 4
#define LMP_PACKET_TYPE_TABLE_REQ 11
#define LMP_ESCO_LINK_REQ 12
#define LMP_REMOVE_ESCO_LINK_REQ 13
#define LMP_CHANNEL_CLASSIFICATION_REQ 16
#define LMP_CHANNEL_CLASSIFICATION 17
#define LMP_SNIFF_SUBRATING_REQ 21
#define LMP_SNIFF_SUBRATING_RES 22
#define LMP_PAUSE_ENCRYPTION_REQ 23
#define LMP_RESUME_ENCRYPTION_REQ 24
#define LMP_IO_CAPABILITY_REQ 25
#define LMP_IO_CAPABILITY_RES 26
#define LMP_NUMERIC_COMPARISON_FAILED 27
#define LMP_PASSKEY_FAILED 28
#define LMP_OOB_FAILED 29
#define LMP_KEYPRESS_NOTIFICATION 30
#define LMP_POWER_CONTROL_REQ 31
#define LMP_POWER_CONTROL_RES 32
/* initialize the protocol and registered fields */
static int proto_btbrlmp = -1;
static int hf_lmp_accscheme = -1;
static int hf_lmp_afhchmap = -1;
static int hf_lmp_afhclass = -1;
static int hf_lmp_afhinst = -1;
static int hf_lmp_afhmaxintvl = -1;
static int hf_lmp_afhminintvl = -1;
static int hf_lmp_afhmode = -1;
static int hf_lmp_afhrptmode = -1;
static int hf_lmp_airmode = -1;
static int hf_lmp_araddr = -1;
static int hf_lmp_authreqs = -1;
static int hf_lmp_authres = -1;
static int hf_lmp_bdaddr = -1;
static int hf_lmp_bdaddr1 = -1;
static int hf_lmp_bdaddr2 = -1;
static int hf_lmp_bsw = -1;
static int hf_lmp_clkoffset = -1;
static int hf_lmp_commit = -1;
static int hf_lmp_confirm = -1;
static int hf_lmp_compid = -1;
static int hf_lmp_cryptmode = -1;
static int hf_lmp_daccess = -1;
static int hf_lmp_db = -1;
static int hf_lmp_dbsleep = -1;
static int hf_lmp_deltab = -1;
static int hf_lmp_desco = -1;
static int hf_lmp_drift = -1;
static int hf_lmp_dsco = -1;
static int hf_lmp_dsniff = -1;
static int hf_lmp_encdata = -1;
static int hf_lmp_enclen = -1;
static int hf_lmp_encmaj = -1;
static int hf_lmp_encmin = -1;
static int hf_lmp_eop = -1;
static int hf_lmp_eopinre = -1;
static int hf_lmp_escolenms = -1;
static int hf_lmp_escolensm = -1;
static int hf_lmp_escotypems = -1;
static int hf_lmp_escotypesm = -1;
static int hf_lmp_err = -1;
static int hf_lmp_escohdl = -1;
static int hf_lmp_escoltaddr = -1;
static int hf_lmp_features = -1;
static int hf_lmp_feat_3slot = -1;
static int hf_lmp_feat_5slot = -1;
static int hf_lmp_feat_enc = -1;
static int hf_lmp_feat_slotoff = -1;
static int hf_lmp_feat_timacc = -1;
static int hf_lmp_feat_rolesw = -1;
static int hf_lmp_feat_holdmo = -1;
static int hf_lmp_feat_sniffmo = -1;
static int hf_lmp_feat_res0 = -1;
static int hf_lmp_feat_pwrctlreq = -1;
static int hf_lmp_feat_cqddr = -1;
static int hf_lmp_feat_sco = -1;
static int hf_lmp_feat_hv2 = -1;
static int hf_lmp_feat_hv3 = -1;
static int hf_lmp_feat_mulaw = -1;
static int hf_lmp_feat_alaw = -1;
static int hf_lmp_feat_cvsd = -1;
static int hf_lmp_feat_pagneg = -1;
static int hf_lmp_feat_pwrctl = -1;
static int hf_lmp_feat_transsync = -1;
static int hf_lmp_feat_flowctl1 = -1;
static int hf_lmp_feat_flowctl2 = -1;
static int hf_lmp_feat_flowctl3 = -1;
static int hf_lmp_feat_bcenc = -1;
static int hf_lmp_feat_res1 = -1;
static int hf_lmp_feat_acl2 = -1;
static int hf_lmp_feat_acl3 = -1;
static int hf_lmp_feat_eninq = -1;
static int hf_lmp_feat_intinq = -1;
static int hf_lmp_feat_intpag = -1;
static int hf_lmp_feat_rssiinq = -1;
static int hf_lmp_feat_ev3 = -1;
static int hf_lmp_feat_ev4 = -1;
static int hf_lmp_feat_ev5 = -1;
static int hf_lmp_feat_res2 = -1;
static int hf_lmp_feat_afhcapsl = -1;
static int hf_lmp_feat_afhclasl = -1;
static int hf_lmp_feat_bredrnotsup = -1;
static int hf_lmp_feat_lesup = -1;
static int hf_lmp_feat_3slotenh = -1;
static int hf_lmp_feat_5slotenh = -1;
static int hf_lmp_feat_sniffsubr = -1;
static int hf_lmp_feat_pauseenc = -1;
static int hf_lmp_feat_afhcapma = -1;
static int hf_lmp_feat_afhclama = -1;
static int hf_lmp_feat_esco2 = -1;
static int hf_lmp_feat_esco3 = -1;
static int hf_lmp_feat_3slotenhesco = -1;
static int hf_lmp_feat_extinqres = -1;
static int hf_lmp_feat_simlebredr = -1;
static int hf_lmp_feat_res3 = -1;
static int hf_lmp_feat_ssp = -1;
static int hf_lmp_feat_enpdu = -1;
static int hf_lmp_feat_edr = -1;
static int hf_lmp_feat_nonflush = -1;
static int hf_lmp_feat_res4 = -1;
static int hf_lmp_feat_lstimche = -1;
static int hf_lmp_feat_inqtxpwr = -1;
static int hf_lmp_feat_enhpwr = -1;
static int hf_lmp_feat_res5 = -1;
static int hf_lmp_feat_res6 = -1;
static int hf_lmp_feat_res7 = -1;
static int hf_lmp_feat_res8 = -1;
static int hf_lmp_feat_extfeat = -1;
static int hf_lmp_featuresext = -1;
static int hf_lmp_efeat_ssp = -1;
static int hf_lmp_efeat_lesup = -1;
static int hf_lmp_efeat_lebredr = -1;
static int hf_lmp_efeat_sch = -1;
static int hf_lmp_efeat_csbma = -1;
static int hf_lmp_efeat_csbsl = -1;
static int hf_lmp_efeat_syntr = -1;
static int hf_lmp_efeat_synsc = -1;
static int hf_lmp_efeat_inqresnote = -1;
static int hf_lmp_efeat_genintsc = -1;
static int hf_lmp_efeat_ccadj = -1;
static int hf_lmp_efeat_res0 = -1;
static int hf_lmp_efeat_scc = -1;
static int hf_lmp_efeat_ping = -1;
static int hf_lmp_efeat_res1 = -1;
static int hf_lmp_efeat_trnud = -1;
static int hf_lmp_efeat_sam = -1;
static int hf_lmp_fpage = -1;
static int hf_lmp_htime = -1;
static int hf_lmp_hinst = -1;
static int hf_lmp_hopmode = -1;
static int hf_lmp_iocaps = -1;
static int hf_lmp_jitter = -1;
static int hf_lmp_key = -1;
static int hf_lmp_keysz = -1;
static int hf_lmp_ksmask = -1;
static int hf_lmp_ltaddr1 = -1;
static int hf_lmp_ltaddr2 = -1;
static int hf_lmp_ltaddr3 = -1;
static int hf_lmp_ltaddr4 = -1;
static int hf_lmp_ltaddr5 = -1;
static int hf_lmp_ltaddr6 = -1;
static int hf_lmp_ltaddr7 = -1;
static int hf_lmp_maccess = -1;
static int hf_lmp_maxslots = -1;
static int hf_lmp_maxsp = -1;
static int hf_lmp_maxss = -1;
static int hf_lmp_minsmt = -1;
static int hf_lmp_naccslots = -1;
static int hf_lmp_namefrag = -1;
static int hf_lmp_namelen = -1;
static int hf_lmp_nameoffset = -1;
static int hf_lmp_nb = -1;
static int hf_lmp_nbc = -1;
static int hf_lmp_nbsleep = -1;
static int hf_lmp_negstate = -1;
static int hf_lmp_nonce = -1;
static int hf_lmp_nottype = -1;
static int hf_lmp_npoll = -1;
static int hf_lmp_oobauthdata = -1;
static int hf_lmp_op = -1;
static int hf_lmp_opinre = -1;
static int hf_lmp_pagesch = -1;
static int hf_lmp_pcmode = -1;
static int hf_lmp_pkttype = -1;
static int hf_lmp_pkttypetbl = -1;
static int hf_lmp_pmaddr = -1;
static int hf_lmp_pmaddr1 = -1;
static int hf_lmp_pmaddr2 = -1;
static int hf_lmp_pmaddr3 = -1;
static int hf_lmp_pmaddr4 = -1;
static int hf_lmp_pmaddr5 = -1;
static int hf_lmp_pmaddr6 = -1;
static int hf_lmp_pmaddr7 = -1;
static int hf_lmp_pollintvl = -1;
static int hf_lmp_pollper = -1;
static int hf_lmp_pssettings = -1;
static int hf_lmp_pwradjreq = -1;
static int hf_lmp_pwradjres = -1;
static int hf_lmp_pwradj_8dpsk = -1;
static int hf_lmp_pwradj_dqpsk = -1;
static int hf_lmp_pwradj_gfsk = -1;
static int hf_lmp_rand = -1;
static int hf_lmp_rate = -1;
static int hf_lmp_rate_fec = -1;
static int hf_lmp_rate_size = -1;
static int hf_lmp_rate_type = -1;
static int hf_lmp_rate_edrsize = -1;
static int hf_lmp_rxfreq = -1;
static int hf_lmp_scohdl = -1;
static int hf_lmp_scopkt = -1;
static int hf_lmp_slotoffset = -1;
static int hf_lmp_sniffatt = -1;
static int hf_lmp_sniffsi = -1;
static int hf_lmp_sniffto = -1;
static int hf_lmp_subversnr = -1;
static int hf_lmp_suptimeout = -1;
static int hf_lmp_swinst = -1;
static int hf_lmp_taccess = -1;
static int hf_lmp_tb = -1;
static int hf_lmp_tesco = -1;
static int hf_lmp_testlen = -1;
static int hf_lmp_testscen = -1;
static int hf_lmp_tid = -1;
static int hf_lmp_timectrl = -1;
static int hf_lmp_time_change = -1;
static int hf_lmp_time_init = -1;
static int hf_lmp_time_accwin = -1;
static int hf_lmp_tsco = -1;
static int hf_lmp_tsniff = -1;
static int hf_lmp_txfreq = -1;
static int hf_lmp_versnr = -1;
static int hf_lmp_wesco = -1;
/* supported features page 0 (standard p. 528) */
static const int *features_fields[] = {
&hf_lmp_feat_3slot,
&hf_lmp_feat_5slot,
&hf_lmp_feat_enc,
&hf_lmp_feat_slotoff,
&hf_lmp_feat_timacc,
&hf_lmp_feat_rolesw,
&hf_lmp_feat_holdmo,
&hf_lmp_feat_sniffmo,
&hf_lmp_feat_res0,
&hf_lmp_feat_pwrctlreq,
&hf_lmp_feat_cqddr,
&hf_lmp_feat_sco,
&hf_lmp_feat_hv2,
&hf_lmp_feat_hv3,
&hf_lmp_feat_mulaw,
&hf_lmp_feat_alaw,
&hf_lmp_feat_cvsd,
&hf_lmp_feat_pagneg,
&hf_lmp_feat_pwrctl,
&hf_lmp_feat_transsync,
&hf_lmp_feat_flowctl1,
&hf_lmp_feat_flowctl2,
&hf_lmp_feat_flowctl3,
&hf_lmp_feat_bcenc,
&hf_lmp_feat_res1,
&hf_lmp_feat_acl2,
&hf_lmp_feat_acl3,
&hf_lmp_feat_eninq,
&hf_lmp_feat_intinq,
&hf_lmp_feat_intpag,
&hf_lmp_feat_rssiinq,
&hf_lmp_feat_ev3,
&hf_lmp_feat_ev4,
&hf_lmp_feat_ev5,
&hf_lmp_feat_res2,
&hf_lmp_feat_afhcapsl,
&hf_lmp_feat_afhclasl,
&hf_lmp_feat_bredrnotsup,
&hf_lmp_feat_lesup,
&hf_lmp_feat_3slotenh,
&hf_lmp_feat_5slotenh,
&hf_lmp_feat_sniffsubr,
&hf_lmp_feat_pauseenc,
&hf_lmp_feat_afhcapma,
&hf_lmp_feat_afhclama,
&hf_lmp_feat_esco2,
&hf_lmp_feat_esco3,
&hf_lmp_feat_3slotenhesco,
&hf_lmp_feat_extinqres,
&hf_lmp_feat_simlebredr,
&hf_lmp_feat_res3,
&hf_lmp_feat_ssp,
&hf_lmp_feat_enpdu,
&hf_lmp_feat_edr,
&hf_lmp_feat_nonflush,
&hf_lmp_feat_res4,
&hf_lmp_feat_lstimche,
&hf_lmp_feat_inqtxpwr,
&hf_lmp_feat_enhpwr,
&hf_lmp_feat_res5,
&hf_lmp_feat_res6,
&hf_lmp_feat_res7,
&hf_lmp_feat_res8,
&hf_lmp_feat_extfeat,
NULL
};
/* supported features page 1+2 (standard p. 530) */
static const int *extfeatures1_fields[] = {
&hf_lmp_efeat_ssp,
&hf_lmp_efeat_lesup,
&hf_lmp_efeat_lebredr,
&hf_lmp_efeat_sch,
NULL
};
static const int *extfeatures2_fields[] = {
&hf_lmp_efeat_csbma,
&hf_lmp_efeat_csbsl,
&hf_lmp_efeat_syntr,
&hf_lmp_efeat_synsc,
&hf_lmp_efeat_inqresnote,
&hf_lmp_efeat_genintsc,
&hf_lmp_efeat_ccadj,
&hf_lmp_efeat_res0,
&hf_lmp_efeat_scc,
&hf_lmp_efeat_ping,
&hf_lmp_efeat_res1,
&hf_lmp_efeat_trnud,
&hf_lmp_efeat_sam,
NULL
};
/* timing control flags */
static const int *timectrl_fields[] = {
&hf_lmp_time_change,
&hf_lmp_time_init,
&hf_lmp_time_accwin,
/* bits 3-7 reserved */
NULL
};
static const true_false_string time_change = {
"timing change",
"no timing change"
};
static const true_false_string time_init = {
"use initialization 2",
"use initialization 1"
};
static const true_false_string time_accwin = {
"no access window",
"access window"
};
static const true_false_string fec = {
"do not use FEC",
"use FEC"
};
static const true_false_string tid = {
"transaction initiated by slave",
"transaction initiated by master"
};
/* short LMP opcodes */
static const value_string opcode[] = {
{ LMP_VSC, "LMP_Broadcom_BPCS" },
{ LMP_NAME_REQ, "LMP_name_req" },
{ LMP_NAME_RES, "LMP_name_res" },
{ LMP_ACCEPTED, "LMP_accepted" },
{ LMP_NOT_ACCEPTED, "LMP_not_accepted" },
{ LMP_CLKOFFSET_REQ, "LMP_clkoffset_req" },
{ LMP_CLKOFFSET_RES, "LMP_clkoffset_res" },
{ LMP_DETACH, "LMP_detach" },
{ LMP_IN_RAND, "LMP_in_rand" },
{ LMP_COMB_KEY, "LMP_comb_key" },
{ LMP_UNIT_KEY, "LMP_unit_key" },
{ LMP_AU_RAND, "LMP_au_rand" },
{ LMP_SRES, "LMP_sres" },
{ LMP_TEMP_RAND, "LMP_temp_rand" },
{ LMP_TEMP_KEY, "LMP_temp_key" },
{ LMP_ENCRYPTION_MODE_REQ, "LMP_encryption_mode_req" },
{ LMP_ENCRYPTION_KEY_SIZE_REQ, "LMP_encryption_key_size_req" },
{ LMP_START_ENCRYPTION_REQ, "LMP_start_encryption_req" },
{ LMP_STOP_ENCRYPTION_REQ, "LMP_stop_encryption_req" },
{ LMP_SWITCH_REQ, "LMP_switch_req" },
{ LMP_HOLD, "LMP_hold" },
{ LMP_HOLD_REQ, "LMP_hold_req" },
{ LMP_SNIFF_REQ, "LMP_sniff_req" },
{ LMP_UNSNIFF_REQ, "LMP_unsniff_req" },
{ LMP_PARK_REQ, "LMP_park_req" },
{ LMP_SET_BROADCAST_SCAN_WINDOW, "LMP_set_broadcast_scan_window" },
{ LMP_MODIFY_BEACON, "LMP_modify_beacon" },
{ LMP_UNPARK_BD_ADDR_REQ, "LMP_unpark_BD_ADDR_req" },
{ LMP_UNPARK_PM_ADDR_REQ, "LMP_unpark_PM_ADDR_req" },
{ LMP_INCR_POWER_REQ, "LMP_incr_power_req" },
{ LMP_DECR_POWER_REQ, "LMP_decr_power_req" },
{ LMP_MAX_POWER, "LMP_max_power" },
{ LMP_MIN_POWER, "LMP_min_power" },
{ LMP_AUTO_RATE, "LMP_auto_rate" },
{ LMP_PREFERRED_RATE, "LMP_preferred_rate" },
{ LMP_VERSION_REQ, "LMP_version_req" },
{ LMP_VERSION_RES, "LMP_version_res" },
{ LMP_FEATURES_REQ, "LMP_features_req" },
{ LMP_FEATURES_RES, "LMP_features_res" },
{ LMP_QUALITY_OF_SERVICE, "LMP_quality_of_service" },
{ LMP_QUALITY_OF_SERVICE_REQ, "LMP_quality_of_service_req" },
{ LMP_SCO_LINK_REQ, "LMP_SCO_link_req" },
{ LMP_REMOVE_SCO_LINK_REQ, "LMP_remove_SCO_link_req" },
{ LMP_MAX_SLOT, "LMP_max_slot" },
{ LMP_MAX_SLOT_REQ, "LMP_max_slot_req" },
{ LMP_TIMING_ACCURACY_REQ, "LMP_timing_accuracy_req" },
{ LMP_TIMING_ACCURACY_RES, "LMP_timing_accuracy_res" },
{ LMP_SETUP_COMPLETE, "LMP_setup_complete" },
{ LMP_USE_SEMI_PERMANENT_KEY, "LMP_use_semi_permanent_key" },
{ LMP_HOST_CONNECTION_REQ, "LMP_host_connection_req" },
{ LMP_SLOT_OFFSET, "LMP_slot_offset" },
{ LMP_PAGE_MODE_REQ, "LMP_page_mode_req" },
{ LMP_PAGE_SCAN_MODE_REQ, "LMP_page_scan_mode_req" },
{ LMP_SUPERVISION_TIMEOUT, "LMP_supervision_timeout" },
{ LMP_TEST_ACTIVATE, "LMP_test_activate" },
{ LMP_TEST_CONTROL, "LMP_test_control" },
{ LMP_ENCRYPTION_KEY_SIZE_MASK_REQ, "LMP_encryption_key_size_mask_req" },
{ LMP_ENCRYPTION_KEY_SIZE_MASK_RES, "LMP_encryption_key_size_mask_res" },
{ LMP_SET_AFH, "LMP_set_AFH" },
{ LMP_ENCAPSULATED_HEADER, "LMP_encapsulated_header" },
{ LMP_ENCAPSULATED_PAYLOAD, "LMP_encapsulated_payload" },
{ LMP_SIMPLE_PAIRING_CONFIRM, "LMP_Simple_Pairing_Confirm" },
{ LMP_SIMPLE_PAIRING_NUMBER, "LMP_Simple_Pairing_Number" },
{ LMP_DHKEY_CHECK, "LMP_DHkey_Check" },
{ LMP_ESCAPE_1, "Escape 1" },
{ LMP_ESCAPE_2, "Escape 2" },
{ LMP_ESCAPE_3, "Escape 3" },
{ LMP_ESCAPE_4, "Escape 4" },
{ 0, NULL }
};
/* extended LMP opcodes */
static const value_string ext_opcode[] = {
{ LMP_ACCEPTED_EXT, "LMP_accepted_ext" },
{ LMP_NOT_ACCEPTED_EXT, "LMP_not_accepted_ext" },
{ LMP_FEATURES_REQ_EXT, "LMP_features_req_ext" },
{ LMP_FEATURES_RES_EXT, "LMP_features_res_ext" },
{ LMP_PACKET_TYPE_TABLE_REQ, "LMP_packet_type_table_req" },
{ LMP_ESCO_LINK_REQ, "LMP_eSCO_link_req" },
{ LMP_REMOVE_ESCO_LINK_REQ, "LMP_remove_eSCO_link_req" },
{ LMP_CHANNEL_CLASSIFICATION_REQ, "LMP_channel_classification_req" },
{ LMP_CHANNEL_CLASSIFICATION, "LMP_channel_classification" },
{ LMP_SNIFF_SUBRATING_REQ, "LMP_sniff_subrating_req" },
{ LMP_SNIFF_SUBRATING_RES, "LMP_sniff_subrating_res" },
{ LMP_PAUSE_ENCRYPTION_REQ, "LMP_pause_encryption_req" },
{ LMP_RESUME_ENCRYPTION_REQ, "LMP_resume_encryption_req" },
{ LMP_IO_CAPABILITY_REQ, "LMP_IO_Capability_req" },
{ LMP_IO_CAPABILITY_RES, "LMP_IO_Capability_res" },
{ LMP_NUMERIC_COMPARISON_FAILED, "LMP_numeric_comparison_failed" },
{ LMP_PASSKEY_FAILED, "LMP_passkey_failed" },
{ LMP_OOB_FAILED, "LMP_oob_failed" },
{ LMP_KEYPRESS_NOTIFICATION, "LMP_keypress_notification" },
{ LMP_POWER_CONTROL_REQ, "LMP_power_control_req" },
{ LMP_POWER_CONTROL_RES, "LMP_power_control_res" },
{ 0, NULL }
};
/* LMP error codes */
static const value_string error_code[] = {
{ 0x00, "Success" },
{ 0x01, "Unknown HCI Command" },
{ 0x02, "Unknown Connection Identifier" },
{ 0x03, "Hardware Failure" },
{ 0x04, "Page Timeout" },
{ 0x05, "Authentication Failure" },
{ 0x06, "PIN or Key Missing" },
{ 0x07, "Memory Capacity Exceeded" },
{ 0x08, "Connection Timeout" },
{ 0x09, "Connection Limit Exceeded" },
{ 0x0A, "Synchronous Connection Limit To A Device Exceeded" },
{ 0x0B, "ACL Connection Already Exists" },
{ 0x0C, "Command Disallowed" },
{ 0x0D, "Connection Rejected due to Limited Resources" },
{ 0x0E, "Connection Rejected Due To Security Reasons" },
{ 0x0F, "Connection Rejected due to Unacceptable BD_ADDR" },
{ 0x10, "Connection Accept Timeout Exceeded" },
{ 0x11, "Unsupported Feature or Parameter Value" },
{ 0x12, "Invalid HCI Command Parameters" },
{ 0x13, "Remote User Terminated Connection" },
{ 0x14, "Remote Device Terminated Connection due to Low Resources" },
{ 0x15, "Remote Device Terminated Connection due to Power Off" },
{ 0x16, "Connection Terminated By Local Host" },
{ 0x17, "Repeated Attempts" },
{ 0x18, "Pairing Not Allowed" },
{ 0x19, "Unknown LMP PDU" },
{ 0x1A, "Unsupported Remote Feature / Unsupported LMP Feature" },
{ 0x1B, "SCO Offset Rejected" },
{ 0x1C, "SCO Interval Rejected" },
{ 0x1D, "SCO Air Mode Rejected" },
{ 0x1E, "Invalid LMP Parameters" },
{ 0x1F, "Unspecified Error" },
{ 0x20, "Unsupported LMP Parameter Value" },
{ 0x21, "Role Change Not Allowed" },
{ 0x22, "LMP Response Timeout" },
{ 0x23, "LMP Error Transaction Collision" },
{ 0x24, "LMP PDU Not Allowed" },
{ 0x25, "Encryption Mode Not Acceptable" },
{ 0x26, "Link Key Can Not be Changed" },
{ 0x27, "Requested QoS Not Supported" },
{ 0x28, "Instant Passed" },
{ 0x29, "Pairing With Unit Key Not Supported" },
{ 0x2A, "Different Transaction Collision" },
{ 0x2B, "Reserved" },
{ 0x2C, "QoS Unacceptable Parameter" },
{ 0x2D, "QoS Rejected" },
{ 0x2E, "Channel Classification Not Supported" },
{ 0x2F, "Insufficient Security" },
{ 0x30, "Parameter Out Of Mandatory Range" },
{ 0x31, "Reserved" },
{ 0x32, "Role Switch Pending" },
{ 0x33, "Reserved" },
{ 0x34, "Reserved Slot Violation" },
{ 0x35, "Role Switch Failed" },
{ 0x36, "Extended Inquiry Response Too Large" },
{ 0x37, "Secure Simple Pairing Not Supported By Host." },
{ 0x38, "Host Busy - Pairing" },
{ 0x39, "Connection Rejected due to No Suitable Channel Found" },
{ 0, NULL }
};
static const value_string encryption_mode[] = {
{ 0, "no encryption" },
{ 1, "encryption" },
{ 2, "encryption" },
/* 3 - 255 reserved */
{ 0, NULL }
};
static const value_string access_scheme[] = {
{ 0, "polling technique" },
/* 1 - 15 reserved */
{ 0, NULL }
};
static const value_string packet_size[] = {
{ 0, "no packet-size preference available" },
{ 1, "use 1-slot packets" },
{ 2, "use 3-slot packets" },
{ 3, "use 5-slot packets" },
{ 0, NULL }
};
static const value_string edr_type[] = {
{ 0, "use DM1 packets" },
{ 1, "use 2 Mbps packets" },
{ 2, "use 3 Mbps packets" },
/* 3 reserved */
{ 0, NULL }
};
static const value_string versnr[] = {
{ 0, "Bluetooth Core Specification 1.0b" },
{ 1, "Bluetooth Core Specification 1.1" },
{ 2, "Bluetooth Core Specification 1.2" },
{ 3, "Bluetooth Core Specification 2.0 + EDR" },
{ 4, "Bluetooth Core Specification 2.1 + EDR" },
{ 5, "Bluetooth Core Specification 3.0 + HS" },
{ 6, "Bluetooth Core Specification 4.0" },
{ 7, "Bluetooth Core Specification 4.1" },
{ 8, "Bluetooth Core Specification 4.2" },
{ 9, "Bluetooth Core Specification 5.0" },
/* 10 - 255 reserved */
{ 0, NULL }
};
static const value_string compid[] = {
{ 0, "Ericsson Technology Licensing" },
{ 1, "Nokia Mobile Phones" },
{ 2, "Intel Corp." },
{ 3, "IBM Corp." },
{ 4, "Toshiba Corp." },
{ 5, "3Com" },
{ 6, "Microsoft" },
{ 7, "Lucent" },
{ 8, "Motorola" },
{ 9, "Infineon Technologies AG" },
{ 10, "Cambridge Silicon Radio" },
{ 11, "Silicon Wave" },
{ 12, "Digianswer A/S" },
{ 13, "Texas Instruments Inc." },
{ 14, "Parthus Technologies Inc." },
{ 15, "Broadcom Corporation" },
{ 16, "Mitel Semiconductor" },
{ 17, "Widcomm, Inc." },
{ 18, "Zeevo, Inc." },
{ 19, "Atmel Corporation" },
{ 20, "Mitsubishi Electric Corporation" },
{ 21, "RTX Telecom A/S" },
{ 22, "KC Technology Inc." },
{ 23, "Newlogic" },
{ 24, "Transilica, Inc." },
{ 25, "Rohde & Schwarz GmbH & Co. KG" },
{ 26, "TTPCom Limited" },
{ 27, "Signia Technologies, Inc." },
{ 28, "Conexant Systems Inc." },
{ 29, "Qualcomm" },
{ 30, "Inventel" },
{ 31, "AVM Berlin" },
{ 32, "BandSpeed, Inc." },
{ 33, "Mansella Ltd" },
{ 34, "NEC Corporation" },
{ 35, "WavePlus Technology Co., Ltd." },
{ 36, "Alcatel" },
{ 37, "Philips Semiconductors" },
{ 38, "C Technologies" },
{ 39, "Open Interface" },
{ 40, "R F Micro Devices" },
{ 41, "Hitachi Ltd" },
{ 42, "Symbol Technologies, Inc." },
{ 43, "Tenovis" },
{ 44, "Macronix International Co. Ltd." },
{ 45, "GCT Semiconductor" },
{ 46, "Norwood Systems" },
{ 47, "MewTel Technology Inc." },
{ 48, "ST Microelectronics" },
{ 49, "Synopsys" },
{ 50, "Red-M (Communications) Ltd" },
{ 51, "Commil Ltd" },
{ 52, "Computer Access Technology Corporation (CATC)" },
{ 53, "Eclipse (HQ Espana) S.L." },
{ 54, "Renesas Technology Corp." },
{ 55, "Mobilian Corporation" },
{ 56, "Terax" },
{ 57, "Integrated System Solution Corp." },
{ 58, "Matsushita Electric Industrial Co., Ltd." },
{ 59, "Gennum Corporation" },
{ 60, "Research In Motion" },
{ 61, "IPextreme, Inc." },
{ 62, "Systems and Chips, Inc" },
{ 63, "Bluetooth SIG, Inc" },
{ 64, "Seiko Epson Corporation" },
{ 65, "Integrated Silicon Solution Taiwan, Inc." },
{ 66, "CONWISE Technology Corporation Ltd" },
{ 67, "PARROT SA" },
{ 68, "Socket Mobile" },
{ 69, "Atheros Communications, Inc." },
{ 70, "MediaTek, Inc." },
{ 71, "Bluegiga (tentative)" },
{ 72, "Marvell Technology Group Ltd." },
{ 73, "3DSP Corporation" },
{ 74, "Accel Semiconductor Ltd." },
{ 75, "Continental Automotive Systems" },
{ 76, "Apple, Inc." },
{ 77, "Staccato Communications, Inc." },
{ 78, "Avago Technologies" },
{ 79, "APT Ltd." },
{ 80, "SiRF Technology, Inc." },
{ 81, "Tzero Technologies, Inc." },
{ 82, "J&M Corporation" },
{ 83, "Free2move AB" },
{ 84, "3DiJoyCorporation" },
{ 85, "Plantronics,Inc." },
{ 86, "SonyEricssonMobileCommunications" },
{ 87, "HarmanInternationalIndustries,Inc." },
{ 88, "Vizio,Inc." },
{ 89, "NordicSemiconductorASA" },
{ 90, "EMMicroelectronic-MarinSA" },
{ 91, "RalinkTechnologyCorporation" },
{ 92, "BelkinInternational,Inc." },
{ 93, "RealtekSemiconductorCorporation" },
{ 94, "StonestreetOne,LLC" },
{ 95, "Wicentric,Inc." },
{ 96, "RivieraWavesS.A.S" },
{ 97, "RDAMicroelectronics" },
{ 98, "GibsonGuitars" },
{ 99, "MiCommandInc." },
{ 100, "BandXIInternational,LLC" },
{ 101, "Hewlett-PackardCompany" },
{ 102, "9SolutionsOy" },
{ 103, "GNNetcomA/S" },
{ 104, "GeneralMotors" },
{ 105, "A&DEngineering,Inc." },
{ 106, "MindTreeLtd." },
{ 107, "PolarElectroOY" },
{ 108, "BeautifulEnterpriseCo.,Ltd." },
{ 109, "BriarTek,Inc" },
{ 110, "SummitDataCommunications,Inc." },
{ 111, "SoundID" },
{ 112, "Monster,LLC" },
{ 113, "connectBlueAB" },
{ 114, "ShangHaiSuperSmartElectronicsCo.Ltd." },
{ 115, "GroupSenseLtd." },
{ 116, "Zomm,LLC" },
{ 117, "SamsungElectronicsCo.Ltd." },
{ 118, "CreativeTechnologyLtd." },
{ 119, "LairdTechnologies" },
{ 120, "Nike,Inc." },
{ 121, "lesswireAG" },
{ 122, "MStarSemiconductor,Inc." },
{ 123, "HanlynnTechnologies" },
{ 124, "A&RCambridge" },
{ 125, "SeersTechnologyCo.,Ltd." },
{ 126, "SportsTrackingTechnologiesLtd." },
{ 127, "AutonetMobile" },
{ 128, "DeLormePublishingCompany,Inc." },
{ 129, "WuXiVimicro" },
{ 130, "SennheiserCommunicationsA/S" },
{ 131, "TimeKeepingSystems,Inc." },
{ 132, "LudusHelsinkiLtd." },
{ 133, "BlueRadios,Inc." },
{ 134, "EquinuxAG" },
{ 135, "GarminInternational,Inc." },
{ 136, "Ecotest" },
{ 137, "GNReSoundA/S" },
{ 138, "Jawbone" },
{ 139, "TopconPositioningSystems,LLC" },
{ 140, "GimbalInc.(formerlyQualcommLabs,Inc.andQualcommRetailSolutions,Inc.)" },
{ 141, "ZscanSoftware" },
{ 142, "QuinticCorp" },
{ 143, "TelitWirelessSolutionsGmbH(formerlyStollmannE+VGmbH)" },
{ 144, "FunaiElectricCo.,Ltd." },
{ 145, "AdvancedPANMOBILsystemsGmbH&Co.KG" },
{ 146, "ThinkOptics,Inc." },
{ 147, "UniversalElectronics,Inc." },
{ 148, "AirohaTechnologyCorp." },
{ 149, "NECLighting,Ltd." },
{ 150, "ODMTechnology,Inc." },
{ 151, "ConnecteDeviceLtd." },
{ 152, "zero1.tvGmbH" },
{ 153, "i.TechDynamicGlobalDistributionLtd." },
{ 154, "Alpwise" },
{ 155, "JiangsuToppowerAutomotiveElectronicsCo.,Ltd." },
{ 156, "Colorfy,Inc." },
{ 157, "GeoforceInc." },
{ 158, "BoseCorporation" },
{ 159, "SuuntoOy" },
{ 160, "KensingtonComputerProductsGroup" },
{ 161, "SR-Medizinelektronik" },
{ 162, "VertuCorporationLimited" },
{ 163, "MetaWatchLtd." },
{ 164, "LINAKA/S" },
{ 165, "OTLDynamicsLLC" },
{ 166, "PandaOceanInc." },
{ 167, "VisteonCorporation" },
{ 168, "ARPDevicesLimited" },
{ 169, "MagnetiMarelliS.p.A" },
{ 170, "CAENRFIDsrl" },
{ 171, "Ingenieur-SystemgruppeZahnGmbH" },
{ 172, "GreenThrottleGames" },
{ 173, "PeterSystemtechnikGmbH" },
{ 174, "OmegawaveOy" },
{ 175, "Cinetix" },
{ 176, "PassifSemiconductorCorp" },
{ 177, "SarisCyclingGroup,Inc" },
{ 178, "BekeyA/S" },
{ 179, "ClarinoxTechnologiesPty.Ltd." },
{ 180, "BDETechnologyCo.,Ltd." },
{ 181, "SwirlNetworks" },
{ 182, "Mesointernational" },
{ 183, "TreLabLtd" },
{ 184, "QualcommInnovationCenter,Inc.(QuIC)" },
{ 185, "JohnsonControls,Inc." },
{ 186, "StarkeyLaboratoriesInc." },
{ 187, "S-PowerElectronicsLimited" },
{ 188, "AceSensorInc" },
{ 189, "AplixCorporation" },
{ 190, "AAMPofAmerica" },
{ 191, "StalmartTechnologyLimited" },
{ 192, "AMICCOMElectronicsCorporation" },
{ 193, "ShenzhenExcelsecuDataTechnologyCo.,Ltd" },
{ 194, "GeneqInc." },
{ 195, "adidasAG" },
{ 196, "LGElectronics" },
{ 197, "OnsetComputerCorporation" },
{ 198, "SelflyBV" },
{ 199, "QuuppaOy." },
{ 200, "GeLoInc" },
{ 201, "Evluma" },
{ 202, "MC10" },
{ 203, "BinauricSE" },
{ 204, "BeatsElectronics" },
{ 205, "MicrochipTechnologyInc." },
{ 206, "ElgatoSystemsGmbH" },
{ 207, "ARCHOSSA" },
{ 208, "Dexcom,Inc." },
{ 209, "PolarElectroEuropeB.V." },
{ 210, "DialogSemiconductorB.V." },
{ 211, "TaixingbangTechnology(HK)Co,.LTD." },
{ 212, "Kawantech" },
{ 213, "AustcoCommunicationSystems" },
{ 214, "TimexGroupUSA,Inc." },
{ 215, "QualcommTechnologies,Inc." },
{ 216, "QualcommConnectedExperiences,Inc." },
{ 217, "VoyetraTurtleBeach" },
{ 218, "txtrGmbH" },
{ 219, "Biosentronics" },
{ 220, "Procter&Gamble" },
{ 221, "HosidenCorporation" },
{ 222, "MuzikLLC" },
{ 223, "MisfitWearablesCorp" },
{ 224, "Google" },
{ 225, "DanlersLtd" },
{ 226, "SemilinkInc" },
{ 227, "inMusicBrands,Inc" },
{ 228, "L.S.ResearchInc." },
{ 229, "EdenSoftwareConsultantsLtd." },
{ 230, "Freshtemp" },
{ 231, "KSTechnologies" },
{ 232, "ACTSTechnologies" },
{ 233, "VtrackSystems" },
{ 234, "Nielsen-KellermanCompany" },
{ 235, "ServerTechnologyInc." },
{ 236, "BioResearchAssociates" },
{ 237, "JollyLogic,LLC" },
{ 238, "AboveAverageOutcomes,Inc." },
{ 239, "BitsplittersGmbH" },
{ 240, "PayPal,Inc." },
{ 241, "WitronTechnologyLimited" },
{ 242, "MorseProjectInc." },
{ 243, "KentDisplaysInc." },
{ 244, "NautilusInc." },
{ 245, "SmartifierOy" },
{ 246, "ElcometerLimited" },
{ 247, "VSNTechnologies,Inc." },
{ 248, "AceUniCorp.,Ltd." },
{ 249, "StickNFind" },
{ 250, "CrystalCodeAB" },
{ 251, "KOUKAAMa.s." },
{ 252, "DelphiCorporation" },
{ 253, "ValenceTechLimited" },
{ 254, "StanleyBlackandDecker" },
{ 255, "TypoProducts,LLC" },
{ 256, "TomTomInternationalBV" },
{ 257, "Fugoo,Inc." },
{ 258, "KeiserCorporation" },
{ 259, "Bang&OlufsenA/S" },
{ 260, "PLUSLocationSystemsPtyLtd" },
{ 261, "UbiquitousComputingTechnologyCorporation" },
{ 262, "InnovativeYachtterSolutions" },
{ 263, "WilliamDemantHoldingA/S" },
{ 264, "ChiconyElectronicsCo.,Ltd." },
{ 265, "AtusBV" },
{ 266, "CodegateLtd" },
{ 267, "ERi,Inc" },
{ 268, "TransducersDirect,LLC" },
{ 269, "FujitsuTenLImited" },
{ 270, "AudiAG" },
{ 271, "HiSiliconTechnologiesCol,Ltd." },
{ 272, "NipponSeikiCo.,Ltd." },
{ 273, "SteelseriesApS" },
{ 274, "VisyblInc." },
{ 275, "OpenbrainTechnologies,Co.,Ltd." },
{ 276, "Xensr" },
{ 277, "e.solutions" },
{ 278, "10AKTechnologies" },
{ 279, "WimotoTechnologiesInc" },
{ 280, "RadiusNetworks,Inc." },
{ 281, "WizeTechnologyCo.,Ltd." },
{ 282, "QualcommLabs,Inc." },
{ 283, "HewlettPackardEnterprise" },
{ 284, "Baidu" },
{ 285, "ArendiAG" },
{ 286, "SkodaAutoa.s." },
{ 287, "VolkswagenAG" },
{ 288, "PorscheAG" },
{ 289, "SinoWealthElectronicLtd." },
{ 290, "AirTurn,Inc." },
{ 291, "Kinsa,Inc" },
{ 292, "HIDGlobal" },
{ 293, "SEATes" },
{ 294, "PrometheanLtd." },
{ 295, "SaluticaAlliedSolutions" },
{ 296, "GPSIGroupPtyLtd" },
{ 297, "NimbleDevicesOy" },
{ 298, "ChangzhouYongseInfotechCo.,Ltd." },
{ 299, "SportIQ" },
{ 300, "TEMECInstrumentsB.V." },
{ 301, "SonyCorporation" },
{ 302, "ASSAABLOY" },
{ 303, "ClarionCo.Inc." },
{ 304, "WarehouseInnovations" },
{ 305, "CypressSemiconductor" },
{ 306, "MADSInc" },
{ 307, "BlueMaestroLimited" },
{ 308, "ResolutionProducts,Ltd." },
{ 309, "AirewareLLC" },
{ 310, "Silvair,Inc." },
{ 311, "PrestigioPlazaLtd." },
{ 312, "NTEOInc." },
{ 313, "FocusSystemsCorporation" },
{ 314, "TencentHoldingsLtd." },
{ 315, "Allegion" },
{ 316, "MurataManufacturingCo.,Ltd." },
{ 317, "WirelessWERX" },
{ 318, "Nod,Inc." },
{ 319, "B&BManufacturingCompany" },
{ 320, "AlpineElectronics(China)Co.,Ltd" },
{ 321, "FedExServices" },
{ 322, "GrapeSystemsInc." },
{ 323, "BkonConnect" },
{ 324, "LintechGmbH" },
{ 325, "NovatelWireless" },
{ 326, "Ciright" },