forked from wireshark/wireshark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
13118 lines (9397 loc) · 464 KB
/
ChangeLog
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
commit a748e83
Author: Gerald Combs <[email protected]>
Date: Wed Feb 4 08:53:44 2015 -0800
Qt: Add "Copy As..." to the Protocol Hierarchy stats.
This implementation is slightly different compared to other dialogs
since we have nested items.
Tweak the bar highlight color look better on Windows while we're here.
Change-Id: If0607c4624f304042fe3d6c8a941756b342e703d
Reviewed-on: https://code.wireshark.org/review/6953
Petri-Dish: Gerald Combs <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Gerald Combs <[email protected]>
commit a8cc331
Author: Gerald Combs <[email protected]>
Date: Wed Feb 4 09:44:40 2015 -0800
Update the release notes.
Change-Id: Id4fc195e54dba19f697d20d2085f2e1f922c8ced
Reviewed-on: https://code.wireshark.org/review/6954
Reviewed-by: Gerald Combs <[email protected]>
commit febc842
Author: Evan Huus <[email protected]>
Date: Wed Feb 4 10:02:41 2015 -0500
Update README.wmem, release notes for emem removal
Change-Id: Iac5066ff97d26de1660c38b9cd3f17781a521823
Reviewed-on: https://code.wireshark.org/review/6949
Reviewed-by: Evan Huus <[email protected]>
commit 150dd22
Author: AndersBroman <[email protected]>
Date: Wed Feb 4 15:55:05 2015 +0100
[INAP] Make INAP a new style dissector and add an OID dissector for
0.4.0.1.1.1.0.0 cs1-ssp-to-scp.
Change-Id: Ib7261ef199d7a3aedaed14e7f869af8b64c21c92
Reviewed-on: https://code.wireshark.org/review/6948
Reviewed-by: Anders Broman <[email protected]>
commit d9e82b7
Author: AndersBroman <[email protected]>
Date: Wed Feb 4 14:04:27 2015 +0100
[INAP] Add dissection of Cause
Ping-Bug:10910
Change-Id: I131d81b0d6332cc72e7b32dc81cb7fec4ca3d407
Reviewed-on: https://code.wireshark.org/review/6947
Reviewed-by: Anders Broman <[email protected]>
commit 0a6d1f9
Author: gal <[email protected]>
Date: Tue Feb 3 15:55:05 2015 +0000
Support for P3 over RTSE.
Resolve mixed space/tab issue in the RTSE and BER dissectors and included modelines in both templates.
Change-Id: I4b75bad94ed111d0faee205e026b2322b7dafbd1
Reviewed-on: https://code.wireshark.org/review/6932
Reviewed-by: Michael Mann <[email protected]>
commit 9875181
Author: AndersBroman <[email protected]>
Date: Wed Feb 4 13:24:57 2015 +0100
[CAMEL] Dissect additionalCallingPartyNumber.
Ping-Bug: 10914
Change-Id: I28eb9d7b5192a02f82fe604d20e57aedd706f528
Reviewed-on: https://code.wireshark.org/review/6946
Reviewed-by: Anders Broman <[email protected]>
commit 94011c1
Author: AndersBroman <[email protected]>
Date: Wed Feb 4 09:52:54 2015 +0100
[QNET6] Try to fix solaris buildboot.
/Users/buildslave/Documents/wireshark/osx105x86/build/epan/dissectors/packet-qnet6.c:1502: warning: 'hf_index' may be used uninitialized in this function
/Users/buildslave/Documents/wireshark/osx105x86/build/epan/dissectors/packet-qnet6.c:1502: note: 'hf_index' was declared here
/Users/buildslave/Documents/wireshark/osx105x86/build/epan/dissectors/packet-qnet6.c:1502: warning: 'hf_index_off' may be used uninitialized in this function
/Users/buildslave/Documents/wireshark/osx105x86/build/epan/dissectors/packet-qnet6.c:1502: note: 'hf_index_off' was declared here
/Users/buildslave/Documents/wireshark/osx105x86/build/epan/dissectors/packet-qnet6.c:1500: warning: 'sstree' may be used uninitialized in this function
/Users/buildslave/Documents/wireshark/osx105x86/build/epan/dissectors/packet-qnet6.c:1500: note: 'sstree' was declared here
/Users/buildslave/Documents/wireshark/osx105x86/build/epan/dissectors/packet-qnet6.c:1502: warning: 'hf_index_len' may be used uninitialized in this function
/Users/buildslave/Documents/wireshark/osx105x86/build/epan/dissectors/packet-qnet6.c:1502: note: 'hf_index_len' was declared here
Remove not needed includes.
Change-Id: Iac91954b3d6c8f9799c6fe816af93376419d1b21
Reviewed-on: https://code.wireshark.org/review/6945
Reviewed-by: Anders Broman <[email protected]>
commit 9f78bf6
Author: Guy Harris <[email protected]>
Date: Tue Feb 3 23:39:05 2015 -0800
Use QNX_PC_ for QNX's pathconf parameter values.
The numerical values are platform-specific, so call them QNX_PC_; that
also avoids collision with the values on the platform on which we're
building Wireshark (such a collision broke the Solaris build).
Change-Id: I04291eccb818a290eb44eadb17a56ed684285a70
Reviewed-on: https://code.wireshark.org/review/6944
Reviewed-by: Guy Harris <[email protected]>
commit f2cb59a
Author: Alexis La Goutte <[email protected]>
Date: Tue Jun 17 17:03:11 2014 +0200
Add QNX' QNET protocol
no ethertype 0x8203-0x8205 support in trunk.
0x8204 is QNX OS VER 6's qnet ethernet protocol number.
Bug:3934
Change-Id: I52555b568c3a304f1512fe25f949330b46f49a93
Reviewed-on: https://code.wireshark.org/review/6363
Reviewed-by: Alexis La Goutte <[email protected]>
commit 0f353c9
Author: Alexis La Goutte <[email protected]>
Date: Thu Jan 8 17:35:58 2015 +0100
HTTP2: Add tap for HTTP2 dissector
Change-Id: Ib13d9391b64dad19321a4399c95b95d7fb791284
Reviewed-on: https://code.wireshark.org/review/6421
Petri-Dish: Alexis La Goutte <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Michael Mann <[email protected]>
Reviewed-by: Alexis La Goutte <[email protected]>
commit ef929ad
Author: Jeff Morriss <[email protected]>
Date: Tue Feb 3 18:02:29 2015 -0500
TOS-specific forwarding blocks aren't actually required: don't warn when they
aren't present. Only warn if no forwarding blocks are present.
Simplify the code a bit while also removing a proto_tree_add_text(). (There
are a number of similar proto_tree_add_texts()s here.)
Hang the "no forwarding blocks" expert info off the LSA item rather than off
the Metric. The warning is about how much data is in the LSA--it has
nothing to do with the Metric.
Ping-Bug: 6302
Change-Id: I1903ba5ad78101ec4fa2602a1f21e8192f1d8d53
Reviewed-on: https://code.wireshark.org/review/6943
Petri-Dish: Jeff Morriss <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Anders Broman <[email protected]>
commit 8efe6b7
Author: Alexis La Goutte <[email protected]>
Date: Wed Jan 28 17:59:48 2015 +0100
RADIUS: Sync with FreeRADIUS Master
commit 852f15c72d41c637865776d5b80097e8ffbbb444
Author: Alan T. DeKok <[email protected]>
Date: Mon Jan 26 13:08:21 2015 -0500
As found on the net
commit 53bf263d6ca9010acdc004bada894b1bfe0ed676
Author: Tobias Hachmer <[email protected]>
Date: Mon Jan 26 13:45:04 2015 +0100
add perle dictionary
Change-Id: I15dd8705277f3a0cedd2ea12a7cac9974dadf3c0
Reviewed-on: https://code.wireshark.org/review/6835
Petri-Dish: Alexis La Goutte <[email protected]>
Reviewed-by: Anders Broman <[email protected]>
commit bee4fb0
Author: Alexis La Goutte <[email protected]>
Date: Tue Feb 3 09:14:45 2015 +0100
CAPWAP: Use proto_tree_add_bitmask(_with_flags)
Change-Id: I39ff2e15b91981111f8de091e6e5dfb7586b4599
Reviewed-on: https://code.wireshark.org/review/6937
Reviewed-by: Michael Mann <[email protected]>
Reviewed-by: Anders Broman <[email protected]>
commit 7ced085
Author: Michael Mann <[email protected]>
Date: Tue Feb 3 17:15:23 2015 -0500
emem is dead! Long live wmem!
Change-Id: Iddd1200e62bf3200cb1a68408378dd9d47120b77
Reviewed-on: https://code.wireshark.org/review/6939
Reviewed-by: Michael Mann <[email protected]>
Petri-Dish: Michael Mann <[email protected]>
Reviewed-by: Evan Huus <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Anders Broman <[email protected]>
commit 90a76e0
Author: Michael Mann <[email protected]>
Date: Tue Feb 3 23:27:01 2015 -0500
Convert val_to_str -> val_to_str_wmem.
This is mostly for GUI usage, but a few dissectors needed some "non-packet scope" conversions.
val_to_str officially now uses wmem_packet_scope()
Change-Id: Ic9413eeb3406d7a7683222b86709f3675d628d81
Reviewed-on: https://code.wireshark.org/review/6933
Reviewed-by: Michael Mann <[email protected]>
Petri-Dish: Michael Mann <[email protected]>
Reviewed-by: Evan Huus <[email protected]>
Reviewed-by: Anders Broman <[email protected]>
commit 74547db
Author: Alexis La Goutte <[email protected]>
Date: Tue Feb 3 08:45:41 2015 +0100
MySQL: Add Server ext caps and Auth Plugin Length to Server Greeting
Ping-Bug: 10346
Change-Id: I1b2bd3e9b1dc01118c48c6e159c9a06d4daa061b
Reviewed-on: https://code.wireshark.org/review/6936
Reviewed-by: Michael Mann <[email protected]>
Reviewed-by: Anders Broman <[email protected]>
commit c256bbe
Author: Alexis La Goutte <[email protected]>
Date: Tue Feb 3 08:32:13 2015 +0100
MySQL: Use proto_tree_add_bitmask(with_flags)
Merge also mysql_dissect_caps_client and mysql_dissect_caps_server
and rename mysql_dissect_extcaps_client to mysql_dissect_extacps (it will be reused soon)
Ping-Bug: 10346
Change-Id: I6543363a337d7bbfddba6dd699697a257a2cbb49
Reviewed-on: https://code.wireshark.org/review/6935
Reviewed-by: Michael Mann <[email protected]>
Reviewed-by: Anders Broman <[email protected]>
commit 18bc353
Author: Alexis La Goutte <[email protected]>
Date: Mon Feb 2 09:46:36 2015 +0100
MySQL: Add support of AuthSwitchRequest/AuthSwitchResponse
Bug: 10351
Ping-Bug: 10346
Change-Id: I730080a0aef293c3c8119f6c762ee246227bd07a
Reviewed-on: https://code.wireshark.org/review/6915
Reviewed-by: Alexis La Goutte <[email protected]>
Petri-Dish: Alexis La Goutte <[email protected]>
Reviewed-by: Daniël van Eeden <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Anders Broman <[email protected]>
commit 66fc81b
Author: cbontje <[email protected]>
Date: Mon Feb 2 10:09:58 2015 -0700
SEL Protocol Maintenance (1/2)
- Clean up naming conventions & variables
- 'SEL Protocol' is the entire protocol suite
- 'Fast SER' is a function code of 'Fast Message' sub-type
'selfm' will remain the protocol name in Wireshark so no major architecture naming changes are anticipated
Change-Id: Idc5117dcede0b61c61c0c64d5cd20199535ed471
Reviewed-on: https://code.wireshark.org/review/6919
Reviewed-by: Alexis La Goutte <[email protected]>
Petri-Dish: Alexis La Goutte <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Michael Mann <[email protected]>
commit 9e1ddb5
Author: Jeff Morriss <[email protected]>
Date: Tue Feb 3 21:12:07 2015 -0500
Only set HAVE_LUA if we, er, have Lua.
Change-Id: Idb6f1dfa06c2b4e5d9e1f77743f13b4e0a6d8afe
Reviewed-on: https://code.wireshark.org/review/6942
Reviewed-by: Jeff Morriss <[email protected]>
commit 89e6f4c
Author: Gerald Combs <[email protected]>
Date: Tue Feb 3 08:39:14 2015 -0800
Qt: Add the Protocol Hierarchy statistics dialog.
Change-Id: I6872e323daca4798c638d764873f54c4c0dc0006
Reviewed-on: https://code.wireshark.org/review/6934
Petri-Dish: Gerald Combs <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Gerald Combs <[email protected]>
commit 342ba90
Author: Gerald Combs <[email protected]>
Date: Tue Feb 3 17:13:49 2015 -0800
Minor WSDG updates.
Change-Id: I847af9ef7f18b271a5a2dc8da6c5817735a8c856
Reviewed-on: https://code.wireshark.org/review/6941
Reviewed-by: Gerald Combs <[email protected]>
commit 4fe8ca0
Author: Jeff Morriss <[email protected]>
Date: Fri Jan 23 07:36:50 2015 -0500
Simplify how we find Lua and expand the places we look.
First, it appears some packagers actually ship a pkg-config file for Lua.
Try to use it. (Unfortunately the package name varies so we have to try
several package names.)
If that fails, try to find Lua directly, accounting for the various naming
conventions we've seen.
Bug: 10475
Bug: 10572
Change-Id: I82e789c466a488dc12431cdd90c49b4c1052414a
Reviewed-on: https://code.wireshark.org/review/6756
Reviewed-by: Jeff Morriss <[email protected]>
commit 0e74e8b
Author: Guy Harris <[email protected]>
Date: Tue Feb 3 16:25:01 2015 -0800
Decorate declarations with G_GNUC_PRINTF() as appropriate.
Decorate val_to_qstring() and val_ext_to_qstring() similarly to
val_to_str_wmem(); this squelches some compiler warnings.
Change-Id: I86e102e7c0a1a135be9492b7d605001c5d922031
Reviewed-on: https://code.wireshark.org/review/6940
Reviewed-by: Guy Harris <[email protected]>
commit deabe64
Author: Gerald Combs <[email protected]>
Date: Tue Feb 3 16:02:52 2015 -0800
Don't build app_bundle by default.
As it turns out, building the app bundle makes wireshark-gtk unusable.
Change-Id: Ic3608f0a485c3ec4ea21fbc2e7194553eda8c806
Reviewed-on: https://code.wireshark.org/review/6938
Reviewed-by: Gerald Combs <[email protected]>
commit b8f040c
Author: Dario Lombardo <[email protected]>
Date: Mon Feb 2 10:37:17 2015 +0100
Dumpcap: avoid collecting stats on nf* interfaces.
On Linux nf* interfaces don't collect stats properly and don't allows multiple connections.
Change-Id: I69d8f343017d77bda313de7d2c501fab542f2e9b
Bug: 10886
Reviewed-on: https://code.wireshark.org/review/6796
Reviewed-by: Gerald Combs <[email protected]>
commit 9b22a2f
Author: Dario Lombardo <[email protected]>
Date: Thu Jan 8 09:44:15 2015 +0100
Updates in it translation.
This fixes also the "duplicate messages" error.
Change-Id: Iec93d82d4776c4f9805c5bfa2b2453c22b0e24e8
Reviewed-on: https://code.wireshark.org/review/6929
Petri-Dish: Graham Bloice <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Alexis La Goutte <[email protected]>
commit 33bdb21c
Author: Bill Meier <[email protected]>
Date: Tue Feb 3 11:58:28 2015 -0500
xtp: Don't call col_...() under 'if (tree)'
Change-Id: Ie80476e919b5ba0a2e5f036c654a5379b91ddd32
Reviewed-on: https://code.wireshark.org/review/6931
Reviewed-by: Bill Meier <[email protected]>
commit a2eec54
Author: Gerald Combs <[email protected]>
Date: Tue Feb 3 08:56:42 2015 -0800
BT ATT: Fix what appears to be a value string mismatch.
Change-Id: I440ed41c659bed9dcee43d8388ad780015971611
Reviewed-on: https://code.wireshark.org/review/6930
Reviewed-by: Gerald Combs <[email protected]>
commit b635997
Author: Michael Mann <[email protected]>
Date: Mon Feb 2 19:58:29 2015 -0500
Convert val_to_str_ext -> val_to_str_ext_wmem for calls that don't have valid packet scope (GUI).
val_to_str_ext now officially uses wmem_packet_scope().
Removed const from val_to_str[_ext]_wmem return value since it's not really constant.
Created utility functions in qt_ui_utils.h to help with the new memory management for its GUI.
Change-Id: Idf2ce4a4ce78d628b2269ad23a3a48fbfc9c077c
Reviewed-on: https://code.wireshark.org/review/6926
Reviewed-by: Michael Mann <[email protected]>
commit e942973
Author: Michal Labedzki <[email protected]>
Date: Wed Jan 28 17:14:48 2015 +0100
Bluetooth/USB HID: Move boot form of reports from bthid to usbhid
Then call it as new dissectors from bthid and btatt.
In future they will be used in usbhid, because they are part of HID.
Change-Id: I9cb545f3079c27945b17bf8791ba4e3736c29e7c
Reviewed-on: https://code.wireshark.org/review/6912
Petri-Dish: Michal Labedzki <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Michal Labedzki <[email protected]>
commit 8417fbf
Author: Guy Harris <[email protected]>
Date: Mon Feb 2 23:51:36 2015 -0800
Initialize the entire UUID.
Squelches a compiler warning.
Change-Id: I050710dd296f7fe7d315f881b0edf43699d2fa91
Reviewed-on: https://code.wireshark.org/review/6928
Reviewed-by: Guy Harris <[email protected]>
commit ca3fe28
Author: Michal Labedzki <[email protected]>
Date: Wed Jan 7 12:16:15 2015 +0100
Bluetooth: ATT: Dissect almost all attributes
Change-Id: Ia388c07150d9664327daf2d1990b4465b5f4ae28
Reviewed-on: https://code.wireshark.org/review/6910
Petri-Dish: Michal Labedzki <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Michal Labedzki <[email protected]>
commit 60b9be9
Author: Michal Labedzki <[email protected]>
Date: Tue Jan 6 18:42:38 2015 +0100
Bluetooth: ATT: Dissect Read Multiple Response
Change-Id: Ifcbde05389901bd66355e42540f3850bfd55def5
Reviewed-on: https://code.wireshark.org/review/6909
Reviewed-by: Michal Labedzki <[email protected]>
commit db068ff
Author: Michal Labedzki <[email protected]>
Date: Tue Jan 6 14:06:18 2015 +0100
Bluetooth: ATT: Decode some HOGP attributes
Change-Id: I169f767b699a2f95e5a1553f1380f0b88cd7c67d
Reviewed-on: https://code.wireshark.org/review/6908
Reviewed-by: Michal Labedzki <[email protected]>
commit 73579dd
Author: Michal Labedzki <[email protected]>
Date: Mon Jan 5 13:36:45 2015 +0100
Bluetooth: ATT: Dissection stage 3: Assign UUID to Handle
Add possibility to dissect attributes by UUID assigned to handle.
Change-Id: I0e510bf902492f87e0eaee339d82609c37e12741
Reviewed-on: https://code.wireshark.org/review/6905
Reviewed-by: Michal Labedzki <[email protected]>
commit 8ba3d6f
Author: Michal Labedzki <[email protected]>
Date: Wed Dec 31 10:52:28 2014 +0100
Bluetooth: ATT: Dissect GATT level
ATT dissector is now able to decode GATT level fields.
This is results of added request-response tracking/share information.
Change-Id: I41ac622a38916a7a20f625fa30ac72d7812446c6
Reviewed-on: https://code.wireshark.org/review/6904
Reviewed-by: Michal Labedzki <[email protected]>
commit 33f1256
Author: Jeff Morriss <[email protected]>
Date: Mon Feb 2 21:28:01 2015 -0500
Fix nameless application in NokiaSolutionsAndNetworks.xml (from
I4cd9bd7f7219e4d9ff1bb8a71fab32439a8a9a35).
(The nameless application was causing known applications to be reported as
unknown.)
Add code to the Diameter dissector to report such problems at startup (similar
code exists for other entities).
Tweak the parser debug slightly.
Change-Id: I6b28cda8660e6eb96648c7b3697d7fd85151ac96
Reviewed-on: https://code.wireshark.org/review/6927
Petri-Dish: Jeff Morriss <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Anders Broman <[email protected]>
commit 00f7bc4
Author: Gerald Combs <[email protected]>
Date: Mon Feb 2 16:22:31 2015 -0800
Qt: Fix IO Graph capture file closing.
Make sure our IOGraphs remove their respective tap listeners before the
capture file closes, otherwise the graph data ends up getting cleared
via reset_tap_listeners.
Bug: 10871
Change-Id: I0ef2af2dc84be1921a930df8bb68f63626aa874a
Reviewed-on: https://code.wireshark.org/review/6925
Reviewed-by: Gerald Combs <[email protected]>
commit 9d7f5c7
Author: Alexis La Goutte <[email protected]>
Date: Mon Feb 2 22:28:59 2015 +0100
ISIS: Fix Dead Store (Dead assignement/Dead increment) warning found by Clang
Change-Id: I58debb32cc7a4aa476961eda342f1cd90884c800
Reviewed-on: https://code.wireshark.org/review/6921
Reviewed-by: Michael Mann <[email protected]>
commit 383caa7
Author: Alexis La Goutte <[email protected]>
Date: Mon Feb 2 22:28:25 2015 +0100
AMQP: Fix Dead Store (Dead assignement/Dead increment) warning found by Clang
Change-Id: Ie55dd06b6c4d6f77012e8e13079279ded2997907
Reviewed-on: https://code.wireshark.org/review/6920
Reviewed-by: Michael Mann <[email protected]>
commit ec618b5
Author: Alexis La Goutte <[email protected]>
Date: Sun Feb 1 20:13:13 2015 +0100
HTTP2: Fix offset for heuristic
With >= draft-14, length is encoded in 3 octets (2 octets before)
Bug: 10908
Change-Id: I061570186206548fafcc39a8df0ba6bafe8576a0
Reviewed-on: https://code.wireshark.org/review/6883
Reviewed-by: Pascal Quantin <[email protected]>
Reviewed-by: Michael Mann <[email protected]>
commit 71fd34d
Author: Gerald Combs <[email protected]>
Date: Mon Feb 2 14:32:28 2015 -0800
WSUG: Chocolatey updates.
Move PowerShell and Chocolatey to the top of the quick setup since most
of the instructions now have a "Chocolatey" example.
Use "choco install" instead of "cinst" to match the pages at
chocolatey.org/packages.
Show how to install Cygwin and Python using Chocolatey.
MAC = Media Access Control (among other things). Mac = Macintosh.
Change-Id: Ic6aabacdd3a86b4e8ca556cc6f3daa62c3e5986b
Reviewed-on: https://code.wireshark.org/review/6924
Reviewed-by: Gerald Combs <[email protected]>
commit 37a2cd0
Author: Alexis La Goutte <[email protected]>
Date: Mon Feb 2 22:58:41 2015 +0100
AMQP: fix declaration of 'index' shadows a global declaration
St*** Mac OS X buildbot...
Part 2 (Oups...)
Change-Id: I082d73d4581365d7152aca764e4dfe599ce12c64
Reviewed-on: https://code.wireshark.org/review/6923
Reviewed-by: Alexis La Goutte <[email protected]>
commit 0b2c8b0
Author: Alexis La Goutte <[email protected]>
Date: Mon Feb 2 22:46:08 2015 +0100
AMQP: fix declaration of 'index' shadows a global declaration
St*** Mac OS X buildbot...
Change-Id: I5efff34ce818f52fb6414191c58b5cabb388ba26
Reviewed-on: https://code.wireshark.org/review/6922
Reviewed-by: Alexis La Goutte <[email protected]>
commit c96b3ac
Author: Petr Gotthard <[email protected]>
Date: Sat Jan 31 16:52:51 2015 +0100
AMQP 0-9-1: Fix dissection of field types.
This patch resolves review comments I received from the AMQP 0-9-1 community.
Some field types were not implemented, other field types (introduced by my
earlier patch) were incorrectly parsed.
https://groups.google.com/forum/#!topic/rabbitmq-users/PR7P1bgonwo
I had to split the dissect_amqp_0_9_field_table() function into two parts
and put the field value dissectors in a separate function:
dissect_amqp_0_9_field_value().
Change-Id: I9aa7d73e426a790830ad260ca6892a7650791e6c
Reviewed-on: https://code.wireshark.org/review/6882
Petri-Dish: Alexis La Goutte <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Alexis La Goutte <[email protected]>
commit 9f4bf6a
Author: Pascal Quantin <[email protected]>
Date: Mon Feb 2 16:02:59 2015 +0100
LTE RRC: only display band mapping for the initial supportedBandListEUTRA IE
Handling bands > 64 would require to store the mapping in file scope and current code is broken for the Carrier Aggregation band combination list
Change-Id: I9f10022a50520ca9bc16a33f2c16361729f1b01b
Reviewed-on: https://code.wireshark.org/review/6917
Petri-Dish: Pascal Quantin <[email protected]>
Reviewed-by: Pascal Quantin <[email protected]>
commit e102c34
Author: Graham Bloice <[email protected]>
Date: Mon Feb 2 16:11:40 2015 +0000
Minor doc changes for Windows build
Further removal of older style build environment.
Change-Id: I499ba50f55620ad627de3dc4316051985d00a7f5
Reviewed-on: https://code.wireshark.org/review/6918
Reviewed-by: Graham Bloice <[email protected]>
commit 6db0a35
Author: Michael Mann <[email protected]>
Date: Sat Jan 31 08:06:05 2015 -0500
Create wmem versions of val_to_str and val_to_str_ext
These will be used to replace cases where packet-scope isn't valid for val_to_str/val_to_str_ext calls
Change-Id: Ie8a4c423a8608548c837c1ae7edde52c4d728340
Reviewed-on: https://code.wireshark.org/review/6880
Petri-Dish: Michael Mann <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Michael Mann <[email protected]>
commit bdaef53
Author: Michal Labedzki <[email protected]>
Date: Mon Feb 2 13:37:50 2015 +0100
Try to fix builbot OSX 10.5 buildbot false-positive
Change-Id: If62eba937326ac5119bde97d9a827e165825b377
Reviewed-on: https://code.wireshark.org/review/6914
Reviewed-by: Michal Labedzki <[email protected]>
commit 003e337
Author: Alexis La Goutte <[email protected]>
Date: Mon Feb 2 09:57:23 2015 +0100
Fix some indent typo (after g2bf7878e)
Change-Id: I44769f127f32ffd8a97b1579f371501f4aa9832a
Reviewed-on: https://code.wireshark.org/review/6913
Reviewed-by: Anders Broman <[email protected]>
commit 6521771
Author: Michal Labedzki <[email protected]>
Date: Sun Jan 18 10:44:04 2015 +0100
Bluetooth: Simplify to "UnknownDirection" in Info column when direction is unknown
Change-Id: Ibad679c0b6c95d65389ce087f65b8f31cf3acd68
Reviewed-on: https://code.wireshark.org/review/6903
Petri-Dish: Michal Labedzki <[email protected]>
Reviewed-by: Michal Labedzki <[email protected]>
commit 1786cfe
Author: Michal Labedzki <[email protected]>
Date: Mon Jan 19 14:27:29 2015 +0100
Bluetooth: Advertising Data: Fix Service Data entry
Service Data entry is defined as UUID (16, 32 or 128) and
rest of payload is specific service data.
Bug: 10859
Change-Id: Ibaee075a66a144dfc52ed70614677c73a88d6a2c
Reviewed-on: https://code.wireshark.org/review/6902
Petri-Dish: Michal Labedzki <[email protected]>
Reviewed-by: Michal Labedzki <[email protected]>
commit 578c2be
Author: Michal Labedzki <[email protected]>
Date: Sun Jan 11 11:34:17 2015 +0100
Bluetooth: btle_rf: Use proto_tree_add_bitmask
Change-Id: I79143cb788a13bd67ce2bd515b2b90d427dbcfcb
Reviewed-on: https://code.wireshark.org/review/6901
Reviewed-by: Michal Labedzki <[email protected]>
commit ef6f6f0
Author: Michal Labedzki <[email protected]>
Date: Thu Jan 22 09:54:30 2015 +0100
Bluetooth: AVCTP: Improve IPID handling
If profile is invalid (IPID=1) then add expert info.
Change-Id: Id102e51eefe7e5e6314c3677468cb66573e5a893
Reviewed-on: https://code.wireshark.org/review/6900
Reviewed-by: Michal Labedzki <[email protected]>
commit c4f08ec
Author: Michal Labedzki <[email protected]>
Date: Sat Jan 17 15:07:47 2015 +0100
Bluetooth: HCI Vendor: Fix for "Enable WBS" command
Codec value for mSBC is 0x02 (not 0x01), also "Codec" field
does not appear when Codec state in Disable.
Change-Id: I4f0b27d0dc8659fdc054eaf18b54a42aad60275b
Reviewed-on: https://code.wireshark.org/review/6899
Reviewed-by: Michal Labedzki <[email protected]>
commit 359ff31
Author: Michal Labedzki <[email protected]>
Date: Mon Dec 29 11:07:22 2014 +0100
Bluetooth: HCI: Improve detecting of undecoded and unknown commands
Undecoded command - command does exist in specification,
but not fully implemented in Wireshark yet
Unknown command - command does not exist in specification or
it is quite new and opcode number is not added yet
Unexpected parameter - is now working correctly that means if
there is known command but too many parameters
so user should know about this issue
Change-Id: If3ee24f617f7e6683049558f7a6d68e346e7c92f
Reviewed-on: https://code.wireshark.org/review/6898
Reviewed-by: Michal Labedzki <[email protected]>
commit 2cae320
Author: Gerald Combs <[email protected]>
Date: Sun Feb 1 13:56:39 2015 -0800
CMake: Build a complete application bundle on OS X.
Run osx-app.sh by default on OS X. Aside from giving us a fully portable
application bundle after building this should let us clear our library
path at startup should the need arise. Change the name of the osx-app
target to app_bundle.
Search ../Frameworks before ../lib. Create PkgInfo at configure time
instead of compile time. Build our program list as we go.
Change-Id: If5511ee921108b1c079cef67026eac9e47211be1
Reviewed-on: https://code.wireshark.org/review/6896
Reviewed-by: Gerald Combs <[email protected]>
commit 3947091
Author: Guy Harris <[email protected]>
Date: Sun Feb 1 12:57:30 2015 -0800
Fix a typo.
Change-Id: I2724340e41572fdaa56ebf75478297090563c522
Reviewed-on: https://code.wireshark.org/review/6895
Reviewed-by: Guy Harris <[email protected]>
commit 17b228b
Author: Bill Meier <[email protected]>
Date: Sun Feb 1 12:47:13 2015 -0500
dlm3: col_...() shouldn't be called under 'if (tree)'
Change-Id: I577dbfacf13854c74a430d7abec20faca3f0985b
Reviewed-on: https://code.wireshark.org/review/6891
Reviewed-by: Bill Meier <[email protected]>
commit 50e8415
Author: Bill Meier <[email protected]>
Date: Sun Feb 1 12:32:08 2015 -0500
rip: Fix "Dissector Bug": register 5 missing hfi_... fields
[ Bug Introduced in gf8e24c9 ]
Change-Id: I99207334e33b30bf622bbed366c2222113108230
Reviewed-on: https://code.wireshark.org/review/6890
Reviewed-by: Bill Meier <[email protected]>
commit 351e7d5
Author: Gerald Combs <[email protected]>
Date: Sun Feb 1 08:06:45 2015 -0800
[Automatic manuf, services and enterprise-numbers update for 2015-02-01]
Change-Id: Iead3755cfba6c39c5da6398e356515337f2ecdd4
Reviewed-on: https://code.wireshark.org/review/6887
Reviewed-by: Gerald Combs <[email protected]>
commit 70912c8
Author: Graham Bloice <[email protected]>
Date: Sun Feb 1 11:07:57 2015 +0000
Minor doc update for Wwindows build
Added comment about VS2013 being the preferred option.
Added instructions for Win32.Mak.
Change-Id: Ic2cca5123c471d9a806d0f4a387f82ad30ace9f6
Reviewed-on: https://code.wireshark.org/review/6886
Reviewed-by: Graham Bloice <[email protected]>
commit ff16cfe
Author: Graham Bloice <[email protected]>
Date: Sun Feb 1 10:52:22 2015 +0000
Added nsis generated files to .gitignore
Change-Id: Id2f1ff7ca5094a785274c41eca0c1f878a427f90
Reviewed-on: https://code.wireshark.org/review/6885
Reviewed-by: Graham Bloice <[email protected]>
commit a300227
Author: Petr Gotthard <[email protected]>
Date: Fri Jan 30 16:18:48 2015 +0100
AMQP 0-9-1: Add missing methods connection.block and connection.unblock.
Change-Id: I11b32b876ec0f43b1faa2ab40ab66e7f18d981c2
Reviewed-on: https://code.wireshark.org/review/6857
Petri-Dish: Alexis La Goutte <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Alexis La Goutte <[email protected]>
commit df468f5
Author: Pascal Quantin <[email protected]>
Date: Sat Jan 31 17:02:30 2015 +0100
jsmn: check superior token node value before using it
Other uses are already checked but it looks like those ones were missing
Bug: 10907
Change-Id: I35c160657faba4371fedb96ab822bcd4fffa7dd8
Reviewed-on: https://code.wireshark.org/review/6881
Reviewed-by: Pascal Quantin <[email protected]>
Reviewed-by: Evan Huus <[email protected]>
commit dc6482b
Author: Michael Mann <[email protected]>
Date: Sat Jan 31 07:55:10 2015 -0500
Convert the value string APIs that only currently have packet-scope use to wmem.
Change-Id: I36942493ce73b49e7257edea967eddf22f21f58e
Reviewed-on: https://code.wireshark.org/review/6879
Reviewed-by: Michael Mann <[email protected]>
commit 6284040
Author: Peter Wu <[email protected]>
Date: Sat Jan 31 02:26:57 2015 +0100
README.dissector: fixed p_add_proto_data params
frame_data has long been gone. struct _packet_info is the same as
packet_info, just use that for brevity.
Change-Id: Ieb02bf6b642d728a7f80087f5cd750b9691e34e9
Reviewed-on: https://code.wireshark.org/review/6865
Reviewed-by: Alexis La Goutte <[email protected]>
commit c7717ae
Author: Guy Harris <[email protected]>
Date: Fri Jan 30 20:13:31 2015 -0800
Get rid of a trailing blank.
Change-Id: I27e3ba1be4a9ee23d619d751ae1abdef963b7597
Reviewed-on: https://code.wireshark.org/review/6871
Reviewed-by: Guy Harris <[email protected]>
commit 4424d6a
Author: Guy Harris <[email protected]>
Date: Fri Jan 30 20:12:10 2015 -0800
Fix a comment to reflect reality.
Change-Id: I90fce5376ca17648840c473afac7f9e962c14667
Reviewed-on: https://code.wireshark.org/review/6870
Reviewed-by: Guy Harris <[email protected]>
commit 90233ff
Author: Guy Harris <[email protected]>
Date: Fri Jan 30 20:06:49 2015 -0800
We need to get the pathname of the executable *before* running dumpcap.
In order to find dumpcap, we need to get the pathname of the executable
image, and we support -D in the first argument parsing loop, and that
runs dumpcap to get the interface list, so we need to get the pathname
of the executable image before that.
Change-Id: If789cf1ff4f5cf5d5c3b171a3d4eb90a6e2faf1d
Reviewed-on: https://code.wireshark.org/review/6869
Reviewed-by: Guy Harris <[email protected]>
commit cca2cde
Author: Guy Harris <[email protected]>
Date: Fri Jan 30 20:03:01 2015 -0800
No main window *to* update in the early argument list parsing.
We haven't yet popped the main window up, so, when we call
capture_interface_list(), we shouldn't pass a pointer to the "update the
main window" routine.
Change-Id: Id3e02199479e66bb9e9aff99b435bd03af45a1af
Reviewed-on: https://code.wireshark.org/review/6868
Reviewed-by: Guy Harris <[email protected]>
commit ee9d0f9
Author: Guy Harris <[email protected]>
Date: Fri Jan 30 18:12:51 2015 -0800
This being C++, maybe we don't have to initialize ws_app until later.
Try going back to haveing ws_app be an automatic variable, but don't
declare it until after we've done the first-pass argument parsing.
Change-Id: Ia1f2a4819570bfadcba75d498e01dbe64991843c
Reviewed-on: https://code.wireshark.org/review/6867
Reviewed-by: Guy Harris <[email protected]>
commit a984dbf
Author: Guy Harris <[email protected]>
Date: Fri Jan 30 18:04:26 2015 -0800
Do the first-pass argument parsing before creating the WiresharkApplication.
That way, *all* the don't-need-a-GUI options can be processed without
trying to pop up a GUI, just as is the case with the GTK+ version.
Change-Id: Icbe47642eec45e887087f46c366322b8f23206cc
Reviewed-on: https://code.wireshark.org/review/6866
Reviewed-by: Guy Harris <[email protected]>
commit e76e140
Author: Gerald Combs <[email protected]>
Date: Fri Jan 30 23:34:18 2015 +0000
Qt: Fix library path reset.