summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: c9806d312f39e2fc6abb84f214b858d4606eae49 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
commit b38cd24
Author: Gerald Combs <gerald@wireshark.org>
Date:   Wed Nov 11 11:10:30 2015 -0800

    Prep for 2.0.0rc3.
    
    Change-Id: Iec66588cb40caba2ed35f8720b124a02e3137c8b

commit 1c1a5c2
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Wed Nov 11 11:21:11 2015 +0100

    Qt: fix cursor position when editing coloring rules names or filters
    
    A call to setText will set the cursor to the end of the box.
    As far as I can tell, this call is useless so let's remove it.
    
    Bug: 11689
    Change-Id: I40aee48745a9107331a017070a715a075106974a
    Reviewed-on: https://code.wireshark.org/review/11727
    Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
    Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit ca2ecc124144dfd7273213232b585808dc8a06a5)
    Reviewed-on: https://code.wireshark.org/review/11746

commit 8050a32
Author: Guy Harris <guy@alum.mit.edu>
Date:   Wed Nov 11 11:54:21 2015 -0800

    Put wtap_dump_open() right before wtap_dump_open_ng().
    
    That matches what we do with the other two pairs of dump opening
    routines.
    
    Change-Id: I0e6e475573c3a8d4ab6cf991d0aadc14150af233
    Reviewed-on: https://code.wireshark.org/review/11744
    Reviewed-by: Guy Harris <guy@alum.mit.edu>
    (cherry picked from commit b6fd85bd19fd2674f817b372e850dcc5b3caec48)
    Reviewed-on: https://code.wireshark.org/review/11745

commit be439b9
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Wed Nov 11 18:58:17 2015 +0100

    Update user guide for upcoming 2.0 release
    
    Change-Id: Id27365d6bd7085f498edd78111d85de0fbd0abd3
    Reviewed-on: https://code.wireshark.org/review/11738
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit 978d7a8f05888fac146e836a4efb9dcc70947d34)
    Reviewed-on: https://code.wireshark.org/review/11743

commit e42ec18
Author: Gerald Combs <gerald@wireshark.org>
Date:   Wed Nov 11 11:03:10 2015 -0800

    Update translations for 2.0.0rc3.
    
    Change-Id: I23979f8e4c214679c6c3f610445c932d977121cf
    Reviewed-on: https://code.wireshark.org/review/11742
    Reviewed-by: Gerald Combs <gerald@wireshark.org>

commit f4d421d
Author: Gerald Combs <gerald@wireshark.org>
Date:   Wed Nov 11 10:12:34 2015 -0800

    Fixup a couple of stdout checks.
    
    Change-Id: I942cd9010901d7b6c4f5b390fb23f79d72fb05d0
    Reviewed-on: https://code.wireshark.org/review/11740
    Petri-Dish: Gerald Combs <gerald@wireshark.org>
    Reviewed-by: Guy Harris <guy@alum.mit.edu>
    (cherry picked from commit 4a9705774ad12b6cf1c9b2e3a200c635c18b6f98)
    Reviewed-on: https://code.wireshark.org/review/11741

commit 9d47195
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Wed Nov 11 10:05:02 2015 +0100

    CMake: set WinPcap version in top CMakeLists.txt file like for NMake
    
    This allows displaying the WinPcap version in about dialog
    
    Change-Id: Ic3f4256d81db68314a158fc55682dfd9dbf799a0
    Reviewed-on: https://code.wireshark.org/review/11726
    Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
    Reviewed-by: Graham Bloice <graham.bloice@trihedral.com>
    (cherry picked from commit b20d5bbc0b5005ad870e70a3fed42e30975e6213)
    Reviewed-on: https://code.wireshark.org/review/11739
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>

commit 3e1dc65
Author: Jeff Morriss <jeff.morriss.ws@gmail.com>
Date:   Tue Nov 10 17:04:08 2015 -0500

    Rename the wireshark-gnome RPM package wireshark-gtk.
    
    This was mentioned a while ago in another change but I forgot about it until
    seeing Gerald's recent release-notes change (which indicates that the RPM and
    Debian package names for the old GUI are wireshark-gtk).
    
    Change-Id: I2a39fce38086d3716c8ef2a07eb8f23bb91a25fa
    Reviewed-on: https://code.wireshark.org/review/11709
    Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com>
    (cherry picked from commit c4b4b9a59cc0545983ec787a6901d9128268fcfe)
    Reviewed-on: https://code.wireshark.org/review/11735

commit 7c2ae96
Author: Balint Reczey <balint@balintreczey.hu>
Date:   Sun Nov 8 22:24:20 2015 +0400

    debian: Ship wireshark.1 in the package we ship /usr/bin/wireshark
    
    Change-Id: I7935f412092d6dbb0f545803d82d9b42dfe5a638
    Reviewed-on: https://code.wireshark.org/review/11694
    Reviewed-by: Balint Reczey <balint@balintreczey.hu>
    (cherry picked from commit 505529190a5c7a8529713a921e59220964b5809b)
    Reviewed-on: https://code.wireshark.org/review/11733

commit b13ec59
Author: Balint Reczey <balint@balintreczey.hu>
Date:   Wed Nov 11 09:08:27 2015 +0400

    debian: Make make dist know about moving wireshark.1 to wireshark-qt and removal of wireshark.menu
    
    Change-Id: I81b95e43beae7ca85bff9b2d5b4a6f498252f2b3
    Reviewed-on: https://code.wireshark.org/review/11720
    Reviewed-by: Balint Reczey <balint@balintreczey.hu>
    (cherry picked from commit 8930b0d5e0e5827f7cd72b9cb765e09bad0c3765)
    Reviewed-on: https://code.wireshark.org/review/11721
    Reviewed-by: Anders Broman <a.broman58@gmail.com>

commit 3062480
Author: Matthieu Coudron <mattator@gmail.com>
Date:   Tue Nov 10 12:30:25 2015 +0100

    Change prototype of callbacks passed to wmem_tree_foreach so that they
    accept the node key as a first parameter.
    
    wmem_tree accepts all sort of keys (strings, integers, soon ranges),
    thus it is of interest for various purposes (testing, greedy search) to
    know the key of the node.
    
    Change-Id: Ie748b917bef91f0b1ba8cce15bd1b471922641dc
    Reviewed-on: https://code.wireshark.org/review/11683
    Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Evan Huus <eapache@gmail.com>
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit c2afc9edec79b247d02f42ba3c7cad2bc24b9f91)
    Reviewed-on: https://code.wireshark.org/review/11713
    Petri-Dish: Evan Huus <eapache@gmail.com>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>

commit df2fcdf
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Wed Nov 11 13:21:04 2015 +0100

    Update user guide for upcoming 2.0 release
    
    Change-Id: Ibb001b618df5893e0f236f11901f4c6591b57815
    Reviewed-on: https://code.wireshark.org/review/11729
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>

commit ca5a275
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Tue Nov 10 23:03:34 2015 +0100

    Qt: fix profile rename
    
    Bug: 11658
    Change-Id: I271863557d13137d168e12d3c393de49823f288a
    Reviewed-on: https://code.wireshark.org/review/11708
    Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit 328fbc001e89d2daaca343c378744e75e0a107fb)
    Reviewed-on: https://code.wireshark.org/review/11725

commit 60cebb7
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Tue Nov 10 22:19:27 2015 +0100

    Qt: fixes to 'Edit Column' dialog
    
    - set field name and occurrence when editing a custom column
    - convert occurrence number to a QString
    - disable OK button when syntax is incorrect or empty for a custom column
    - update syntax state when opening the edit dialog or when switching between custom and normal column
    
    Bug: 11433
    Change-Id: Ia8424474dd250c78a0b503e0e9d89c322f4f86a9
    Reviewed-on: https://code.wireshark.org/review/11705
    Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
    Reviewed-by: Gerald Combs <gerald@wireshark.org>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit a4981a279a616c7dfc9a0887ba8511851cc8ec22)
    Reviewed-on: https://code.wireshark.org/review/11724

commit c156a64
Author: Guy Harris <guy@alum.mit.edu>
Date:   Tue Nov 10 10:23:10 2015 -0800

    Make routines used only within wiretap/merge.c static.
    
    We just export some UI helpers and the Big Merge Engine.
    
    Change-Id: I60bc8ab167e7100189a9ce60d84c0e4db27b6bda
    Reviewed-on: https://code.wireshark.org/review/11689
    Petri-Dish: Guy Harris <guy@alum.mit.edu>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Guy Harris <guy@alum.mit.edu>
    (cherry picked from commit 5f4c9b2bb2903e8ce720e072525b1f43e846a513)
    Reviewed-on: https://code.wireshark.org/review/11723

commit 4afc1be
Author: Gerald Combs <gerald@wireshark.org>
Date:   Tue Nov 10 10:12:56 2015 -0800

    Qt: Freeze+thaw the main window during nested operations.
    
    As noted in main_window.cpp:
    
    // Our event loop becomes nested whenever we call update_progress_dlg, which
    // includes several places in file.c. The GTK+ UI stays out of trouble by
    // showing a modal progress dialog. We attempt to do the equivalent below by
    // disabling parts of the main window. At a minumum the ProgressFrame in the
    // main status bar must remain accessible.
    
    Move the freeze+thaw code from captureFileRetapStarted and
    captureFileRetapFinished to its own set of member functions. Call them
    when we {,un}mark and {,un}ignore packets and note that we should
    probably call them elsewhere. Disable mark and ignore actions when we
    freeze and restore their states when we thaw.
    
    Bug: 11681
    Change-Id: I6f015f7f5f6c98cd48ace2c87f43f48efe51a88b
    Reviewed-on: https://code.wireshark.org/review/11690
    Petri-Dish: Gerald Combs <gerald@wireshark.org>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Gerald Combs <gerald@wireshark.org>
    (cherry picked from commit 757fe65474a37d94e7eba1b6b4bb6df23b69ba56)
    Reviewed-on: https://code.wireshark.org/review/11722

commit cb81c7a
Author: Balint Reczey <balint@balintreczey.hu>
Date:   Sun Nov 8 22:38:50 2015 +0400

    GTK: Add separate working desktop file for GTK+ Wireshark GUI
    
    Change-Id: I52a749b7e2b9a4a5cb2968409e140b9d5f2002f6
    Reviewed-on: https://code.wireshark.org/review/11696
    Reviewed-by: Balint Reczey <balint@balintreczey.hu>
    (cherry picked from commit b732f44d1e5e1c0ba5b863ddda69b04edab367a6)
    Reviewed-on: https://code.wireshark.org/review/11719

commit d42095a
Author: Balint Reczey <balint@balintreczey.hu>
Date:   Sun Nov 8 22:26:54 2015 +0400

    debian: Ship wireshark.desktop file in wireshark-qt
    
    Change-Id: Idbf77e6a613c79e267f41d3e9d3c05617e9c6d99
    Reviewed-on: https://code.wireshark.org/review/11695
    Reviewed-by: Balint Reczey <balint@balintreczey.hu>
    (cherry picked from commit 7d86cc9194757afae54b216620d61a6eabb04e74)
    Reviewed-on: https://code.wireshark.org/review/11718

commit 51b4c32
Author: Balint Reczey <balint@balintreczey.hu>
Date:   Sun Nov 8 22:14:01 2015 +0400

    debian: Finish postinst of wireshark-common even when wireshark group is a user group
    
    Failing postinst has been reported several times under LP#1447893
    
    Change-Id: I196f246b34aa3be9d53f02b4e0092c802effc42a
    Reviewed-on: https://code.wireshark.org/review/11693
    Reviewed-by: Balint Reczey <balint@balintreczey.hu>
    (cherry picked from commit 2d1bf738d71a4f4f6ac6832bba3889b2c39a471a)
    Reviewed-on: https://code.wireshark.org/review/11717

commit 1cdaea2
Author: Balint Reczey <balint@balintreczey.hu>
Date:   Sun Nov 8 22:11:06 2015 +0400

    debian: Add note to README.Debian to log in again to be able to capture packets
    
    Change-Id: Ifae1223d34f7ae071484fe47d1c88de166ed84ca
    Reviewed-on: https://code.wireshark.org/review/11692
    Reviewed-by: Balint Reczey <balint@balintreczey.hu>
    (cherry picked from commit 927a55f914b319abb39923ce7efb1f1377927719)
    Reviewed-on: https://code.wireshark.org/review/11716

commit de1faf3
Author: Balint Reczey <balint@balintreczey.hu>
Date:   Sun Nov 8 22:02:47 2015 +0400

    debian: Drop menu support
    
    Debian is migrating away from the Debian Menu system to adopt
    Freedesktop Desktop Entry Specification instead. (.desktop files)
    Packages providing .desktop files should not provide menu files.
    https://lists.debian.org/debian-devel-announce/2015/09/msg00000.html
    
    Change-Id: I862deee870e9697c590a8323ba8ae2da892b7bb1
    Reviewed-on: https://code.wireshark.org/review/11691
    Reviewed-by: Balint Reczey <balint@balintreczey.hu>
    (cherry picked from commit 18a54fcaa4071afb33c393b1270c1488e7a95131)
    Reviewed-on: https://code.wireshark.org/review/11715

commit 5679982
Author: João Valverde <joao.valverde@tecnico.ulisboa.pt>
Date:   Thu Nov 5 01:51:50 2015 +0000

    UDP: Don't throw malformed errors for empty UDP payload
    
    Change-Id: I7f5724e263ab81d42421d0cfcb1fc4b63a55d79e
    Reviewed-on: https://code.wireshark.org/review/11590
    Petri-Dish: Michael Mann <mmann78@netscape.net>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit 541f352b5efa8b51769d49c7e62c2109b9c3651a)
    Reviewed-on: https://code.wireshark.org/review/11712

commit 9bfc915
Author: Guy Harris <guy@alum.mit.edu>
Date:   Tue Nov 10 13:52:38 2015 -0800

    New 2.0 symbols.
    
    Change-Id: Ie85ac43891c5587b0998e26da683ef275b631657
    Reviewed-on: https://code.wireshark.org/review/11706
    Reviewed-by: Guy Harris <guy@alum.mit.edu>
    (cherry picked from commit 67a6342da503c5753e35837aea0ade239714e1f7)
    Reviewed-on: https://code.wireshark.org/review/11707

commit 2b4881f
Author: Guy Harris <guy@alum.mit.edu>
Date:   Tue Nov 10 13:07:54 2015 -0800

    Apple calls it just "OS X" these days.
    
    Change-Id: I98905988ceb394d27307d1cbe883d8fe95ac23e4
    Reviewed-on: https://code.wireshark.org/review/11703
    Reviewed-by: Guy Harris <guy@alum.mit.edu>
    (cherry picked from commit 0b05086754ad977d639ed7715a34b57b5e0ee28e)
    Reviewed-on: https://code.wireshark.org/review/11704

commit e9d1d00
Author: Gerald Combs <gerald@zing.org>
Date:   Mon Jun 1 19:48:23 2015 -0700

    Initial Sysdig syscall (event) support.
    
    Add a dissector for reading Sysdig event blocks. It only handles plain
    events but it's usable for reading trace files on hand here.
    
    Use a script to generate various parts of the dissector. As an experiment,
    update parts in-place instead of using a template.
    
    Ultimately there should probably be a top-level "Syscall" or "Event"
    dissector alongside the "Frame" dissector, which could then call this.
    You could then directly compare an executable's system calls alongside
    its network traffic.
    
    For now leverage the pcapng_block dissector and keep everything under
    "Frame".
    
    Next steps:
    - Items listed at the top of packet-sysdig-event.c.
    
    Change-Id: I17077e8d7f40d10a946d61189ebc077d81c4da37
    Reviewed-on: https://code.wireshark.org/review/11103
    Petri-Dish: Gerald Combs <gerald@wireshark.org>
    Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Gerald Combs <gerald@wireshark.org>
    (cherry picked from commit 0d497e812508b3d71716618e39647a107c206b1d)
    Reviewed-on: https://code.wireshark.org/review/11702

commit 0b5f601
Author: Guy Harris <guy@alum.mit.edu>
Date:   Tue Nov 10 12:18:15 2015 -0800

    Apple just calls it "OS X" these days.
    
    Change-Id: I702e5e4853c52f9a476f04145dcdf1720fd289fe
    Reviewed-on: https://code.wireshark.org/review/11701
    Reviewed-by: Guy Harris <guy@alum.mit.edu>

commit 6b315b4
Author: Gerald Combs <gerald@wireshark.org>
Date:   Tue Nov 10 11:58:18 2015 -0800

    Update the release notes.
    
    Change-Id: Id1c4f50bb7a6f8b9a1fb0918b96f91371c5d974d
    Reviewed-on: https://code.wireshark.org/review/11699
    Reviewed-by: Guy Harris <guy@alum.mit.edu>

commit 1094da4
Author: AdrianSimionov <daniel.simionov@gmail.com>
Date:   Tue Nov 10 14:11:07 2015 +0100

    [docsis->packet-tlv.c] Update for modem capabilities TLV 5, subTLV 2 and subTLV 33
    
    Change-Id: I63410d90e65a46aaeb534cca56e8797ebe00bf6f
    Reviewed-on: https://code.wireshark.org/review/11685
    Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Tested-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit 6a56224c18ec0ed19ad1a6e2b9172d330eeb14f0)
    Reviewed-on: https://code.wireshark.org/review/11698

commit 636d667
Author: Guy Harris <guy@alum.mit.edu>
Date:   Tue Nov 10 10:01:49 2015 -0800

    Fix typo.
    
    Change-Id: I417de6124925dbfd9599ec7e90e287eb971457a3
    Reviewed-on: https://code.wireshark.org/review/11687
    Reviewed-by: Guy Harris <guy@alum.mit.edu>
    (cherry picked from commit e2193fe6fdecb46f8bd1ecf40addd3838d0622e5)
    Reviewed-on: https://code.wireshark.org/review/11688

commit 3a962d4
Author: Guy Harris <guy@alum.mit.edu>
Date:   Tue Nov 10 03:28:18 2015 -0800

    Call wtap_dump_open_check() in wtap_dump_init_dumper().
    
    The callers of wtap_dump_init_dumper() always call
    wtap_dump_open_check() first, with the same arguments in all cases; pull
    the latter call into wtap_dump_init_dumper() itself.
    
    Change-Id: I2b44dc3a018745e175b5c74ff1a346749fec2b71
    Reviewed-on: https://code.wireshark.org/review/11681
    Reviewed-by: Guy Harris <guy@alum.mit.edu>
    (cherry picked from commit 6ae50ebf28cd40d5c7e1ef5493c22e896564c4f2)
    Reviewed-on: https://code.wireshark.org/review/11682

commit 9d48e02
Author: Guy Harris <guy@alum.mit.edu>
Date:   Tue Nov 10 02:47:15 2015 -0800

    Add a comment for is_stdout.
    
    Change-Id: I88abb5a37a00ebc1a2a742ff36c8d6be75420dbe
    Reviewed-on: https://code.wireshark.org/review/11677
    Reviewed-by: Guy Harris <guy@alum.mit.edu>
    (cherry picked from commit b3fa7e5d3d70fdb2425f522b07786adbfd24bfb1)
    Reviewed-on: https://code.wireshark.org/review/11678

commit 6ce6985
Author: Guy Harris <guy@alum.mit.edu>
Date:   Tue Nov 10 02:24:54 2015 -0800

    Use WMEM_COPY_ADDRESS(), not copy_address_wmem().
    
    copy_address_wmem() exists in the trunk, but not in the 2.0 branch; in
    that branch, you use WMEM_COPY_ADDRESS().
    
    Change-Id: I45d63816aa16f213d5e98da477433ef76b1a11bd
    Reviewed-on: https://code.wireshark.org/review/11675
    Reviewed-by: Guy Harris <guy@alum.mit.edu>

commit 019557e
Author: Guy Harris <guy@alum.mit.edu>
Date:   Tue Nov 10 02:01:43 2015 -0800

    Skip only the actual file descriptor close when writing to stdout.
    
    Have a "this is stdout" flag for a wtap_dumper, and have "open the
    standard output for dumping" routines that set that flag.  When closing
    a wtap_dumper, do most of the work regardless of whether we're writing
    to the standard output or not (so that everything gets written out) and
    only skip the closing of the underlying file descriptor.
    
    Change-Id: I80176dad0d9b5dff1b64c7d4703e0ab36501f547
    Reviewed-on: https://code.wireshark.org/review/11674
    Reviewed-by: Guy Harris <guy@alum.mit.edu>

commit 6b5837c
Author: AndyL <andy.ling@s-a-m.com>
Date:   Fri Nov 6 14:45:56 2015 +0000

    GIOP dissector: Replies are not correctly associated with requests
    
    Added IP address and port number to the comp_req_list_entry so
    get_mfn_from_fn_and_reqid can check for matching IP and port number
    when searching for the reply to a request.
    
    Change-Id: Iad00bca5c1104cf8c335001f84264fe55d2e45fc
    Reviewed-on: https://code.wireshark.org/review/11599
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    Petri-Dish: Michael Mann <mmann78@netscape.net>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit 0a993232bfbe182015f4ebb02d7af790f4be45bb)
    Reviewed-on: https://code.wireshark.org/review/11672

commit dd736b9
Author: Alexis La Goutte <alexis.lagoutte@gmail.com>
Date:   Wed Nov 4 21:58:58 2015 +0100

    ZCL (zbee): Use hf_zbee_zcl_attr_uint40 for ZBEE_ZCL_40_BIT_UINT
    
    Change-Id: Ib9719ac893288b9f26acabb81158ed42b2351fb5
    Reviewed-on: https://code.wireshark.org/review/11572
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    Petri-Dish: Anders Broman <a.broman58@gmail.com>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit d05971449b9826897c5d4fb06158f98f248f68d8)
    Reviewed-on: https://code.wireshark.org/review/11671

commit 68d5d1d
Author: Jeff Morriss <jeff.morriss.ws@gmail.com>
Date:   Sun Oct 25 21:15:21 2015 -0400

    RPC: call REPORT_DISSECTOR_BUG() rather than abort().
    
    Checking WIRESHARK_ABORT_ON_DISSECTOR_BUG here looks somewhat redundant but it's not:
    it's needed to prevent REPORT_DISSECTOR_BUG() from throwing an exception when
    we're not dissecting (when nobody's going to catch the exception).
    
    Change-Id: I4dfc484bdf13bca236bfff1388d4399e26880ad7
    Reviewed-on: https://code.wireshark.org/review/11272
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    Petri-Dish: Anders Broman <a.broman58@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit 3e5b2537f7fdff838f611f779fff526cdda1a2a3)
    Reviewed-on: https://code.wireshark.org/review/11670

commit ce173bb
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Mon Nov 9 15:25:40 2015 +0100

    file.c: do not try to close a file descriptor that was previously already closed
    
    Bug: 11684
    Change-Id: Iaaa5958ea6192ef52b669c687082469b8c7c0219
    Reviewed-on: https://code.wireshark.org/review/11656
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Jim Young <jim.young.ws@gmail.com>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit 20a7e7fe42dfa9e5de91ebfffc2cfd128099fa6a)
    Reviewed-on: https://code.wireshark.org/review/11668

commit 8fdef73
Author: Guy Harris <guy@alum.mit.edu>
Date:   Mon Nov 9 17:21:46 2015 -0800

    Treat "-" as "standard input" in the CLI, not in libwiretap.
    
    That's a UI convention, and the GUI shouldn't honor that convention - a
    user might get confused if they try to save to "-" and end up with
    nothing (and with a ton of crap in a log file if programs launched from
    the GUI end up with their standard output and error logged).
    
    While we're at it, make randcap report write and close errors.
    
    Change-Id: I6ea0a486864da71ecbb98501c96b98cd3bc424cb
    Reviewed-on: https://code.wireshark.org/review/11667
    Reviewed-by: Guy Harris <guy@alum.mit.edu>

commit f824a84
Author: Guy Harris <guy@alum.mit.edu>
Date:   Mon Nov 9 12:00:20 2015 -0800

    Update tests to reflect Lua file API change (write_close -> write_finish).
    
    Change-Id: I7288cd3660dfd14be95dc42910faed47eca8226b
    Reviewed-on: https://code.wireshark.org/review/11661
    Reviewed-by: Guy Harris <guy@alum.mit.edu>
    (cherry picked from commit 3425b5bc4866e962ef49be7a8eb4edeac8644ed0)
    Reviewed-on: https://code.wireshark.org/review/11662

commit 5db1187
Author: Guy Harris <guy@alum.mit.edu>
Date:   Mon Nov 9 11:54:18 2015 -0800

    Call the dumper routine to finish write a file the "finish" routine.
    
    It doesn't actually *close* any handle, so it's best called a "finish"
    routine rather than a "close" routine.
    
    In libwiretap modules, don't bother setting the finish routine pointer
    to null - it's already initialized to null (it's probably best not to
    require modules to set it).
    
    Change-Id: I19554f3fb826db495f17b36600ae36222cbc21b0
    Reviewed-on: https://code.wireshark.org/review/11659
    Reviewed-by: Guy Harris <guy@alum.mit.edu>
    (cherry picked from commit 09f5ff4fc6895f375b3ea07f6151d8e09377fd52)
    Reviewed-on: https://code.wireshark.org/review/11660

commit 73841fd
Author: Stig Bjørlykke <stig@bjorlykke.org>
Date:   Mon Nov 9 14:49:20 2015 +0100

    androiddump: make nanoseconds int
    
    This fixes a compiler warning on OS X:
      extcap/androiddump.c:312:42: warning: implicit
          conversion loses integer precision: 'long' to '__darwin_suseconds_t' (aka 'int')
          [-Wshorten-64-to-32]
        pcap_header.ts.tv_usec = nanoseconds / 1000;
                               ~ ~~~~~~~~~~~~^~~~~~
    
    Change-Id: I6077130fbe4e1cb4f26d82271cfb85d1bf03e35c
    Reviewed-on: https://code.wireshark.org/review/11655
    Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
    (cherry picked from commit fe12759b8e0370dd3e4e8434b4140c098ade7a38)
    Reviewed-on: https://code.wireshark.org/review/11658

commit 34d119b
Author: Jim Young <jyoung@gsu.edu>
Date:   Fri Nov 6 23:06:11 2015 -0500

    isis-hello: Fix typo "Srea" -> "Area"
    
    Change-Id: Ia251638186857d6be6a07c25e77bbd7e72a14290
    Reviewed-on: https://code.wireshark.org/review/11620
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit e3c46268be605835c208579f3d0d61f2a1e24fc6)
    Reviewed-on: https://code.wireshark.org/review/11650
    Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>

commit cfdff01
Author: Gerald Combs <gerald@wireshark.org>
Date:   Fri Nov 6 09:32:39 2015 -0800

    Qt: Start adjusting icon sizes dynamically.
    
    In the main toolbar get our initial icon size using the PM_SmallIconSize
    pixel metric. On Windows this varies directly with the system text
    magnification setting.
    
    Pinging bug 11675 since we still need to adjust the icon sizes in the
    filter edits, progress frame, status bar, and likely other places.
    
    Ping-Bug: 11675
    Change-Id: I53a78627ce850bd6dbd4628da481badee63a1208
    Reviewed-on: https://code.wireshark.org/review/11605
    Petri-Dish: Gerald Combs <gerald@wireshark.org>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Gerald Combs <gerald@wireshark.org>
    (cherry picked from commit 47172e7d51c858de60b65f8793be5a087eeff1f8)
    Reviewed-on: https://code.wireshark.org/review/11646

commit 4d3a689
Author: Gerald Combs <gerald@wireshark.org>
Date:   Sun Nov 8 10:58:41 2015 -0800

    [Automatic update for 2015-11-08]
    
    Update manuf, services enterprise-numbers, translations, and other items.
    
    Change-Id: Id8f2e56faef5aed977402549e038344fce8780b0
    Reviewed-on: https://code.wireshark.org/review/11644
    Reviewed-by: Gerald Combs <gerald@wireshark.org>

commit de550be
Author: Gloria Pozuelo <gloria.pozuelo@bics.com>
Date:   Tue Nov 3 16:49:32 2015 +0100

    GTP sequence number fix for allowing to have sequence number equal to 0
    
    Change-Id: Id8aad52198905eb33ecccf5ace01287954f31d2e
    Reviewed-on: https://code.wireshark.org/review/11526
    Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit 0b3091fa359492a0fe7af50a42a2f70d85377a35)
    Reviewed-on: https://code.wireshark.org/review/11641

commit 9e82a8b
Author: Guy Harris <guy@alum.mit.edu>
Date:   Sat Nov 7 14:46:18 2015 -0800

    Check for read errors in the open routine.
    
    While we're at it, rename a variable to avoid colliding with the read()
    routine.
    
    Change-Id: I6629ec761f48751f34a2e7d04180d7583ad85710
    Reviewed-on: https://code.wireshark.org/review/11626
    Reviewed-by: Guy Harris <guy@alum.mit.edu>
    (cherry picked from commit a8766cc9f9fcc531f4a04080377ac0e8624d488c)
    Reviewed-on: https://code.wireshark.org/review/11627

commit 417dc0b
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Sat Nov 7 20:27:28 2015 +0100

    DNS: Add support of DNS over TLS and over DTLS
    
    See http://tools.ietf.org/html/draft-ietf-dprive-dns-over-tls-01
    and https://www.ietf.org/id/draft-ietf-dprive-dnsodtls-02.txt
    
    Bug: 11679
    Change-Id: I099dac70bf83ed82d553aadda12316e8804b1418
    Reviewed-on: https://code.wireshark.org/review/11624
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    Reviewed-by: Michael Mann <mmann78@netscape.net>

commit 18be1e1
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Sat Nov 7 16:44:47 2015 +0100

    NSIS: clear errors before checking WinPcap uninstall registry entry
    
    Otherwise it can lead to a false verdict in after the check for Wireshark uninstall registry entry
    
    Bug: 10867
    Change-Id: I213ac8ffadfb3578b05d33b996540bd4330a0ec5
    Reviewed-on: https://code.wireshark.org/review/11621
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit cdcf27255ab8907e7fe29b4518fca1c4e53202ab)
    Reviewed-on: https://code.wireshark.org/review/11622

commit c82364b
Author: Guy Harris <guy@alum.mit.edu>
Date:   Fri Nov 6 22:43:48 2015 +0000

    Revert "Another unnecessary include of io.h."
    
    This reverts commit 546984c2d1138893d07c7f31ee916eea563430c2.
    
    This (change Ie4a8d79474ae61194b1ceaafad45cca9b2970b60) should not be backported unless I59979d1fdb37e1913125a400963ff7a3fa6b9bbd is backported as well.
    
    Change-Id: Ieb6a1d778632a097102c1555b49be04b690f575b
    Reviewed-on: https://code.wireshark.org/review/11617
    Reviewed-by: Guy Harris <guy@alum.mit.edu>

commit 746eeb8
Author: Gerald Combs <gerald@wireshark.org>
Date:   Fri Nov 6 08:18:05 2015 -0800

    Make rect_on_screen Qt4-compatible.
    
    Use QDesktopWidget instead of QGuiApplication + QScreen. The former
    exists in the Qt 4 API.
    
    Ping-Bug: 11568
    Change-Id: Icfbe9f78659b28efbc86061f94d946f70ab6dc41
    Reviewed-on: https://code.wireshark.org/review/11604
    Petri-Dish: Gerald Combs <gerald@wireshark.org>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Gerald Combs <gerald@wireshark.org>
    (cherry picked from commit 3b125e7aefee18a4d07bfc2fd76a3524c169bf3c)
    Reviewed-on: https://code.wireshark.org/review/11613

commit 625f246
Author: João Valverde <joao.valverde@tecnico.ulisboa.pt>
Date:   Sat Oct 31 00:20:35 2015 +0000

    bluetooth: Fix uninitialized value warning
    
    Change-Id: Iee1d1cf3e24dacca3c1a353001a8af71e074a96b
    Reviewed-on: https://code.wireshark.org/review/11454
    Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
    Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
    Petri-Dish: Michal Labedzki <michal.labedzki@tieto.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit af11478bfd13c05d92127920ca25751a47c4c47d)
    Reviewed-on: https://code.wireshark.org/review/11470
    Reviewed-by: João Valverde <j@v6e.pt>

commit 75a53a7
Author: João Valverde <joao.valverde@tecnico.ulisboa.pt>
Date:   Sun Nov 1 21:25:28 2015 +0000

    MPTCP: Use wmem_list instead of GSList
    
    Change-Id: Idb4e4d6d19169d6cacd98664232fd1fbd2cc2dca
    Reviewed-on: https://code.wireshark.org/review/11534
    Reviewed-by: Evan Huus <eapache@gmail.com>
    Petri-Dish: Evan Huus <eapache@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit ee0dbdc7edfac2db8d4c20cd9b351cdb6130a3fe)
    Reviewed-on: https://code.wireshark.org/review/11606

commit 051e415
Author: cbontje <cbontje@gmail.com>
Date:   Fri Aug 7 11:18:00 2015 -0600

    Major Re-factoring of the dissector and some new features.
    
    A change-list is as follows:
    - Removed un-necessary dissector revision updates from the file header since GIT tracks these nicely.
    - Added proper size detection of Modbus RTU messages (including exception responses), when dealing with partial TCP segment reassembly.
    - Moved the 'register' decode preferences to the Modbus dissector as TCP vs. RTU granularity isn't needed in this case.
    - Obsoleted un-unused 'address type format' user preferences
    - Cleaned up dissect_modbus_data to remove proto_tree_set_text instances.
    - For decoded register tree objects, use register 'address' instead of 'value' for the filter field to provide a more useful filter.
    - Added in conversation support, to attempt to track responses back to matching requests.
    - Use conversation support to attempt to populate proper register address offsets in the response messages.  Currently each request is saved and each response looks for the last prior request that matches the function code.
    - Re-factored Modbus dissector to split apart request vs. response decoding.  This has led to cleaner code paths, but some duplication where replies and requests are identical format.
    
    Change-Id: I0c86ae85b8ae4cc59b037e5f68f408833205fadd
    Reviewed-on: https://code.wireshark.org/review/9914
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    Petri-Dish: Michael Mann <mmann78@netscape.net>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit 35a13838146ac5d83b57435ff34f2960ea911248)
    Reviewed-on: https://code.wireshark.org/review/11594

commit 546984c
Author: Guy Harris <guy@alum.mit.edu>
Date:   Thu Nov 5 19:27:06 2015 -0800

    Another unnecessary include of io.h.
    
    Change-Id: Ie4a8d79474ae61194b1ceaafad45cca9b2970b60
    Reviewed-on: https://code.wireshark.org/review/11589
    Petri-Dish: Guy Harris <guy@alum.mit.edu>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit 018e93a384c5aca7471d7d9303af637e71320ea2)
    Reviewed-on: https://code.wireshark.org/review/11593

commit b10ab40
Author: João Valverde <joao.valverde@tecnico.ulisboa.pt>
Date:   Mon Nov 2 03:00:22 2015 +0000

    reassemble: Add key destroy function to g_hash_table
    
    Fixes memleak in reassemble.c
    
    480 bytes in 60 blocks are definitely lost in loss record 3,010 of 3,059
       at 0x4C28C10: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
       by 0xADA3328: g_malloc (in /usr/lib/libglib-2.0.so.0.4600.1)
       by 0xADBA512: g_slice_alloc (in /usr/lib/libglib-2.0.so.0.4600.1)
       by 0x6575C7D: fragment_reassembled (reassemble.c:804)
       by 0x6577785: fragment_add_seq_check_work (reassemble.c:2027)
       by 0x6577880: fragment_add_seq_next (reassemble.c:2068)
       by 0x6E614E6: dissect_sccp_message (packet-sccp.c:2875)
       by 0x6E63641: dissect_sccp (packet-sccp.c:3401)
       by 0x6546CF7: call_dissector_through_handle (packet.c:620)
       by 0x6546EA1: call_dissector_work (packet.c:706)
       by 0x6547A04: dissector_try_uint_new (packet.c:1163)
       by 0x6547A65: dissector_try_uint (packet.c:1189)
    
    Change-Id: I0117b48e1e5d5688c49f264f24387dd6de1d6e08
    Reviewed-on: https://code.wireshark.org/review/11541
    Petri-Dish: Michael Mann <mmann78@netscape.net>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit 8fb1f8e55272fca7a3d98356d5d0a58ece7d186e)
    Reviewed-on: https://code.wireshark.org/review/11592

commit 0d0302e
Author: Gerald Combs <gerald@wireshark.org>
Date:   Thu Nov 5 14:30:53 2015 -0800

    Qt: Check for a sane window geometry.
    
    On Windows (and probably X11) it's possible to set an offscreen window
    geometry. Add a rect_on_screen function to qt_ui_utils and use it as a
    sanity check in MainWindow::loadWindowGeometry.
    
    If this doesn't work well (e.g. if we end up with dueling Qt and GTK+
    geometries) we might want to create separate Qt and GTK+ preferences.
    
    Bug: 11568
    Change-Id: Icde1181671770356e87f07d584894ec3148e1bd2
    Reviewed-on: https://code.wireshark.org/review/11584
    Petri-Dish: Gerald Combs <gerald@wireshark.org>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Gerald Combs <gerald@wireshark.org>
    (cherry picked from commit d02104c9a61c353ce6ed54c6ca6207ed3a1fcdf0)
    Reviewed-on: https://code.wireshark.org/review/11588

commit fa85852
Author: Graham Bloice <graham.bloice@trihedral.com>
Date:   Sun Nov 1 21:07:42 2015 +0000

    docs: Windows CMake builds
    
    Updated the WSDG Windows build instructions to use CMake.
    
    Change-Id: I5006c07e09ec6f628e8bc44006a3f1086e831a3c
    Reviewed-on: https://code.wireshark.org/review/11485
    Reviewed-by: Graham Bloice <graham.bloice@trihedral.com>
    Petri-Dish: Graham Bloice <graham.bloice@trihedral.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit 25e3a6c021d2c45284bb94ab93704f0a8938f2ee)
    Reviewed-on: https://code.wireshark.org/review/11582

commit efa7248
Author: Alexis La Goutte <alexis.lagoutte@gmail.com>
Date:   Tue Nov 3 19:25:04 2015 +0100

    DNS: Register dissector by name
    
    Change-Id: I0eb03f2452c4f7fef0f527c7ce7154d479fcc3fd
    Reviewed-on: https://code.wireshark.org/review/11544
    Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit 52970ef9f8ec41b2d9a6a4af601da20b7b5b5305)
    Reviewed-on: https://code.wireshark.org/review/11581

commit d892994
Author: AndersBroman <anders.broman@ericsson.com>
Date:   Wed Nov 4 17:45:23 2015 +0100

    [IPsec] Hand the subdissector the payload data only,
    not including the padding and auth data.
    
    Change-Id: Ib883fcb44def8d6fbdde19729519b40b32d78577
    Reviewed-on: https://code.wireshark.org/review/11563
    Petri-Dish: Anders Broman <a.broman58@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit 2eec1545615901e272e1c6474388576abdd94d15)
    Reviewed-on: https://code.wireshark.org/review/11578

commit 89642b3
Author: Stig Bjørlykke <stig@bjorlykke.org>
Date:   Fri Oct 30 10:48:13 2015 +0100

    extcap: Provide capture filter to extcap binary
    
    Added the option --extcap-capture-filter to extcap to send the capture filter
    from the main screen to the extcap binary.
    
    Change-Id: I75f0d7dbec810551225377f9221053298488cdd5
    Reviewed-on: https://code.wireshark.org/review/11423
    Reviewed-by: Roland Knall <rknall@gmail.com>
    Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
    (cherry picked from commit 9c0d550a4afdafa31e76e0eecd14f8721e90e599)
    Reviewed-on: https://code.wireshark.org/review/11576

commit b6fce8a
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Wed Nov 4 15:37:26 2015 +0100

    Diameter: fix a typo in dictionary.xml
    
    Change-Id: I8a91c9303e9b650380d188be5028e238fc7f2890
    Reviewed-on: https://code.wireshark.org/review/11561
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit bd44ceebd56741ca531d8e934ef9e70b40e6d91a)
    Reviewed-on: https://code.wireshark.org/review/11569
    Reviewed-by: Guy Harris <guy@alum.mit.edu>

commit 5e01e93
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Wed Nov 4 15:35:17 2015 +0100

    SSL: fix SCTP port association so as to match what is done for UDP/TCP
    
    Change-Id: I84f85b7b87ecd9e7801559f7eae2cc98f5a12ab7
    Reviewed-on: https://code.wireshark.org/review/11560
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
    Reviewed-by: Peter Wu <peter@lekensteyn.nl>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit 87aca409dcb5a237acddf0c5b82d58c4b6129d6b)
    Reviewed-on: https://code.wireshark.org/review/11566

commit c3384ea
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Wed Nov 4 15:19:00 2015 +0100

    Skinny: fix dissector registration for SSL
    
    Change-Id: Ia3f29b703b8271f52dfed9d8b46e18f405785d3a
    Reviewed-on: https://code.wireshark.org/review/11559
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit df487145ee062735a460dd3948c13d5188e5bac9)
    Reviewed-on: https://code.wireshark.org/review/11565

commit 1c4432c
Author: Alexis La Goutte <alexis.lagoutte@gmail.com>
Date:   Wed Nov 4 13:33:55 2015 +0100

    Dictionary (diameter): fix indent (use tabs)
    
    Follow gc7c33b0c8
    
    Change-Id: I54d101f561d4f03dd6e972c8dda3cd6516128de5
    Reviewed-on: https://code.wireshark.org/review/11553
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit 0ccab3c0b54ce82a5e5036894194ab25c9ea18d4)
    Reviewed-on: https://code.wireshark.org/review/11554
    Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>

commit 08a07fd
Author: Dhiru Kholia <kholia@kth.se>
Date:   Wed Nov 4 11:00:21 2015 +0100

    Fix AddressSanitizer (./configure --enable-asan) builds
    
    "./configure --enable-asan" currently fails to detect installed libraries
    because aclocal-fallback/* built programs have memory leaks in them.
    
    configure:34516: checking for GTK+ - version >= 3.0.0
    configure:34626: gcc -o conftest ...
    ...
    configure:34626: $? = 0
    configure:34626: ./conftest
    
    =================================================================
    ==29007==ERROR: LeakSanitizer: detected memory leaks
    
    Direct leak of 6 byte(s) in 1 object(s) allocated from:
        #0 0x7fa5c95dd9aa in malloc (/usr/lib/x86_64-linux-gnu/libasan.so.2+0x989aa)
        #1 0x7fa5c8995578 in g_malloc (/lib/x86_64-linux-gnu/libglib-2.0.so.0+0x4f578)
    
    SUMMARY: AddressSanitizer: 6 byte(s) leaked in 1 allocation(s).
    configure:34626: $? = 23
    configure: program exited with status 23
    ...
    configure:34649: result: no
    configure:34699: error: GTK+ 3 is not available
    
    ...
    
    This system is running 64-bit Ubuntu Linux 15.10 with GCC 5.2.1
    compiler.
    
    The glib-2-0.m4 leak, and the gtk-3.0.m4 leak are fixed by updating
    "glib-2.0.m4" to the latest upstream version.
    
    Whitespace errors are fixed locally to keep the BuildBot happy.
    
    Change-Id: I01a5f4c494a59ae6d0ee19cd2611fab163ebf9b4
    Reviewed-on: https://code.wireshark.org/review/11283
    Petri-Dish: Peter Wu <peter@lekensteyn.nl>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Peter Wu <peter@lekensteyn.nl>
    (cherry picked from commit 58528f6d911c7dfec3c8c550abc5d717861c60ee)
    Reviewed-on: https://code.wireshark.org/review/11552

commit 26be84f
Author: Pavlos Antoniou <pant@intracom-telecom.com>
Date:   Wed Nov 4 09:26:50 2015 +0200

    [OpenFlow] Use correct name for flag OFPMPF_REPLY_MORE in v5 dissector
    
    Change-Id: Ia8cb88d4d884be95814f4a144a4c3b07b32ffca7
    Reviewed-on: https://code.wireshark.org/review/11543
    Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit cde99ec5354d95960a52e1fd49bc68e108e918d7)
    Reviewed-on: https://code.wireshark.org/review/11551

commit 30039d1
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Tue Nov 3 19:31:45 2015 +0100

    Activate word wrap for hintLabel defined as QLabel
    
    Without this, a long hint string (like a wrong protocol name in the SSL UAT preference) will resize the window to match the string.
    With this change, instead the hintLabel string is continuing on a new line to match currently configured window size
    
    Change-Id: Ib8fcc7bd96585717f122b0921165c4d916442cb0
    Reviewed-on: https://code.wireshark.org/review/11529
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
    Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit ccca843a57d6f23c7da682f4b7d3286a69590eee)
    Reviewed-on: https://code.wireshark.org/review/11550

commit 50a4cb5
Author: Branislav Makan <branislav.makan1994@gmail.com>
Date:   Tue Nov 3 15:58:56 2015 +0100

    Updated Diameter dictionary.xml with AVP values.
    
    Diameter dictionary has been updated with the following AVP values:
    1031 Rule-Failure-Code: adden new enum codes.
    1082 Credit-Management-Status
    1091 TDF-IP-Address
    1098 Application-Detection-Information
    
    Change-Id: I2c5c438fa48b9deda4bdc2a046c19b583b5c7763
    Reviewed-on: https://code.wireshark.org/review/11524
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit c7c33b0c85cf853cb03053a043b088ca16a33def)
    Reviewed-on: https://code.wireshark.org/review/11549

commit b766ec5
Author: Alexis La Goutte <alexis.lagoutte@gmail.com>
Date:   Mon Oct 26 19:56:33 2015 +0100

    RADIUS: Fix length of display data for Ascend-Data-Filter
    
    Change-Id: I5fd1f82ff193cfface0b5d1e5be227dfc3e04f9a
    Ping-Bug:11630
    Reviewed-on: https://code.wireshark.org/review/11292
    Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit dd17c69ed91b969e5d2c10e6ab4526d4a417164f)
    Reviewed-on: https://code.wireshark.org/review/11515

commit f24fc89
Author: João Valverde <joao.valverde@tecnico.ulisboa.pt>
Date:   Sun Nov 1 16:30:46 2015 +0000

    MPTCP: Use WMEM_COPY_ADDRESS() instead of copy_address()
    
    Change-Id: I9f53ecf1971c96d06c1c8e3be6e5481cc453f96a
    Reviewed-on: https://code.wireshark.org/review/11535
    Reviewed-by: Michael Mann <mmann78@netscape.net>

commit 5f74256
Author: Lotte Steenbrink <lotte@zombietetris.de>
Date:   Tue Nov 3 23:02:10 2015 +0100

    packetbb; display Addressblock Tail as Tail
    
    when displaying the contents of a RFC5444 message containing an address block
    with a tail, the tail's value is incorrectly displayed as:
    
    Head: <value of tail>
    
    while it should say:
    
    Tail: <value of tail>
    
    This commit fixes that.
    
    Bug: 11673
    Change-Id: Ibeb921cb712f98c9651970529e5240f871b85c0b
    Reviewed-on: https://code.wireshark.org/review/11538
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit 40b45dfb6e8117af0180d9b4137d60e799f08c20)
    Reviewed-on: https://code.wireshark.org/review/11542

commit 1a396f2
Author: Stig Bjørlykke <stig@bjorlykke.org>
Date:   Mon Nov 2 14:46:57 2015 +0100

    Qt: Turn off WindowModified when closing a file.
    
    When closing a capture file the main window will never be modified,
    so ensure we turn this off when the file is closed.
    
    Change-Id: I3e6a62c931330a75d32f46fc32524d8de8734485
    Reviewed-on: https://code.wireshark.org/review/11497
    Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
    (cherry picked from commit 86320fdee663243060b8d0416fe630ad1f3d9078)
    Reviewed-on: https://code.wireshark.org/review/11532

commit d763776
Author: Alexis La Goutte <alexis.lagoutte@gmail.com>
Date:   Mon Nov 2 21:25:20 2015 +0100

    GTPv2: Fix Dead Store (Dead assignement/Dead increment) warning found by Clang
    
    Change-Id: I6b2ddc2f84e954194260b956b6f46f0747d8a66a
    Reviewed-on: https://code.wireshark.org/review/11504
    Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit 657c55e8629ee50de061b55fd94a0ea520062cfe)
    Reviewed-on: https://code.wireshark.org/review/11523

commit 7ca8067
Author: AndersBroman <anders.broman@ericsson.com>
Date:   Mon Nov 2 09:40:18 2015 +0100

    [GTPv2] Dissect UTRAN F-Container content.
    
    Change-Id: Idaf07e31876b453f88c5fd7e886c72dffcb35a96
    Reviewed-on: https://code.wireshark.org/review/11492
    Petri-Dish: Anders Broman <a.broman58@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit 1316fdf209af0ff5a881dc8ae1ad8ede6ef78bda)
    Reviewed-on: https://code.wireshark.org/review/11522

commit d464f27
Author: AndersBroman <anders.broman@ericsson.com>
Date:   Tue Nov 3 10:00:30 2015 +0100

    [SIP] Rework how the length of the diagnostic string is determined, it did
    not work with multiple SIP packages in one frame.
    
    Change-Id: Ie142aeea0c6ad28cfdd6206738a6f147094c479f
    Reviewed-on: https://code.wireshark.org/review/11516
    Petri-Dish: Anders Broman <a.broman58@gmail.com>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit 6c64a41017e078ed6e873c9547cebbd117a7b549)
    Reviewed-on: https://code.wireshark.org/review/11521

commit d86861b
Author: Martin Kaiser <wireshark@kaiser.cx>
Date:   Sat Oct 31 12:53:49 2015 +0100

    [Qt recent files menu] make sure that the "Clear Menu" item is retranslated
    
    this item is created along with the list of recent files
    it looks like our only option to update its translation is to rebuild the
    list of recent files
    
    Change-Id: If740571fb9c939d65ca4f1f432aadf22c38dcb27
    Reviewed-on: https://code.wireshark.org/review/11462
    Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit eafc94c9acf7dadd1a10f3effdae8249dfd53109)
    Reviewed-on: https://code.wireshark.org/review/11518

commit 3628bb7
Author: Michael Mann <mmann78@netscape.net>
Date:   Sun Nov 1 20:31:44 2015 -0500

    Document dissector "Decode As" functionality in README.dissector
    
    Change-Id: I82d97a9fb770455d57d47cef8c616d2d4ff41d3c
    Reviewed-on: https://code.wireshark.org/review/11488
    Petri-Dish: Michael Mann <mmann78@netscape.net>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit 8571dbb908e13d63a80e6465ea19566162dad9c1)
    Reviewed-on: https://code.wireshark.org/review/11517

commit 311dc57
Author: Gerald Combs <gerald@wireshark.org>
Date:   Mon Nov 2 17:28:42 2015 -0800

    Revert the last two CMake changes.
    
    get_filename_component returns "/regstry" if the query is unsuccessful.
    We'll have to add a check for that if we query "Add Paths".
    
    Revert "CMake: Pass ABSOLUTE to get_filename_component."
    
    This reverts commit 4c03f4be000fd930a939b042e8d1b68c509ccebd.
    
    Revert "CMake: Look for Python using the "App Paths" key."
    
    This reverts commit 6d1b6cd39db80fe8dc77c250ae795d16ce08bf41.
    
    Change-Id: Ida17608467fa3652f4219e4eaf01edfa48120b1d
    Reviewed-on: https://code.wireshark.org/review/11512
    Reviewed-by: Gerald Combs <gerald@wireshark.org>
    (cherry picked from commit 5c5cc228fc84fe2efc7528a783d1f825c396bfb2)
    Reviewed-on: https://code.wireshark.org/review/11513

commit 72761a0
Author: Gerald Combs <gerald@wireshark.org>
Date:   Mon Nov 2 17:00:17 2015 -0800

    CMake: Pass ABSOLUTE to get_filename_component.
    
    Change-Id: Iecfc4aabe332cac930a7fa5bb6e342a55e7bc7b3
    Reviewed-on: https://code.wireshark.org/review/11510
    Reviewed-by: Gerald Combs <gerald@wireshark.org>
    (cherry picked from commit 4c03f4be000fd930a939b042e8d1b68c509ccebd)
    Reviewed-on: https://code.wireshark.org/review/11511

commit 9b57b2c
Author: Gerald Combs <gerald@wireshark.org>
Date:   Mon Nov 2 13:27:33 2015 -0800

    CMake: Look for Python using the "App Paths" key.
    
    Query HKLM\Software\Microsoft\Windows\CurrentVersion\App Paths\Python.exe
    and HKCU\Software\Microsoft\Windows\CurrentVersion\App Paths\Python.exe
    first before trying other methods.
    
    Change-Id: I83f54f6833149c68f1626c3c17f25ffe54d8ea5d
    Reviewed-on: https://code.wireshark.org/review/11506
    Petri-Dish: Gerald Combs <gerald@wireshark.org>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Gerald Combs <gerald@wireshark.org>
    (cherry picked from commit 6d1b6cd39db80fe8dc77c250ae795d16ce08bf41)
    Reviewed-on: https://code.wireshark.org/review/11508

commit 9d38a9a
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Mon Nov 2 14:48:34 2015 +0100

    PDCP LTE: fix dissection of signalling PDUs sent on common control channels
    
    For those crazy enough to try to decode PDUs sent in transparent mode ;)
    
    Change-Id: Iab0a1325a6764846e23d8f04bd3147625b970638
    Reviewed-on: https://code.wireshark.org/review/11498
    Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit 332b9cef51a7c97ff340933fbb3d06615a77e990)
    Reviewed-on: https://code.wireshark.org/review/11505

commit 0f7121a
Author: Alexis La Goutte <alexis.lagoutte@gmail.com>
Date:   Mon Nov 2 14:46:16 2015 +0100

    epan(.h): fix api reference
    
    The following parameters of proto_get_frame_protocols(const wmem_list_t *layers, gboolean *is_ip, gboolean *is_tcp, gboolean *is_udp, gboolean *is_sctp, gboolean *is_ssl, gboolean *is_rtp) are not documented:
      parameter 'is_rtp'
    
    Change-Id: I06d02e6caa29b950d9c5a324db494933f2843ea3
    Reviewed-on: https://code.wireshark.org/review/11496
    Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Michael Mann <mmann78@netscape.net>

commit acbb4ac
Author: Jim Young <jyoung@gsu.edu>
Date:   Sun Nov 1 01:40:41 2015 -0500

    ISIS Hello: Restore correct dissection of SPB BVID
    
    Commit 301a5b7ceac60d0569ce1717e839241d1072400 introduced a small
    regression with the dissection of the BVID.  BVID should be extracted
    from the 12 most significant bits not the 12 least significant bits.
    Make it so.
    
    Change-Id: Idcf0492eea1f6cb7282641ae243aa7092e5a1418
    Reviewed-on: https://code.wireshark.org/review/11472
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit 56d01272474f9022a0ace0011f649dd59f573813)
    Reviewed-on: https://code.wireshark.org/review/11503
    Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>

commit d64a210
Author: Stig Bjørlykke <stig@bjorlykke.org>
Date:   Mon Nov 2 14:56:17 2015 +0100

    BER: Removed erroneous callback from dissect_ber_external_U
    
    This callback was added by a mistake when adding support for
    P3 over RTSE in commit 0a6d1f98.
    
    Change-Id: Ifff0bed3b2a2a0fd2354f9c6b7072de3303dae27
    Reviewed-on: https://code.wireshark.org/review/11500
    Petri-Dish: Michael Mann <mmann78@netscape.net>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit 22a9376bb4336be32f4ac027188d9dbbc977f210)
    Reviewed-on: https://code.wireshark.org/review/11502

commit 5c104e6
Author: Gerald Combs <gerald@zing.org>
Date:   Sun Nov 1 15:58:33 2015 -0800

    Update some WSUG screenshots and markup.
    
    Updated the main window and main menu screenshots. Update the markup for
    the File and Edit menus.
    
    Change-Id: I31282e3913692895a35e749c54c77c8069c7167a
    Reviewed-on: https://code.wireshark.org/review/11487
    Reviewed-by: Gerald Combs <gerald@wireshark.org>
    (cherry picked from commit f015c85317a8fc134902addab48ec3a1eeceab3e)
    Reviewed-on: https://code.wireshark.org/review/11501

commit 78dcbaa
Author: Alexis La Goutte <alexis.lagoutte@gmail.com>
Date:   Mon Nov 2 09:48:13 2015 +0100

    srt_table(.h): fix api reference
    
    The following parameters of register_srt_table(const int proto_id, const char *tap_listener, int max_tables, tap_packet_cb srt_packet_func, srt_init_cb init_cb, srt_param_handler_cb param_cb) are not documented:
      parameter 'max_tables'
    
    The following parameters of init_srt_table(const char *name, const char *short_name, GArray *srt_array, int num_procs, const char *proc_column_name, const char *filter_string, srt_gui_init_cb gui_callback, void *gui_data, void *table_specific_data) are not documented:
      parameter 'table_specific_data'
    
    Change-Id: I7c14a46c89c58985a5000b1760ba088d9f0da293
    Reviewed-on: https://code.wireshark.org/review/11491
    Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit 7f10520d0442a51fc9747d702b144592b4915964)
    Reviewed-on: https://code.wireshark.org/review/11494

commit ceba686
Author: Alexis La Goutte <alexis.lagoutte@gmail.com>
Date:   Mon Nov 2 09:42:49 2015 +0100

    rtd_table(.h): fix api reference
    
    The following parameters of register_rtd_table(const int proto_id, const char *tap_listener, guint num_tables, guint num_timestats, const value_string *vs_type, tap_packet_cb rtd_packet_func, rtd_filter_check_cb filter_check_cb) are not documented:
      parameter 'num_tables'
    
    Change-Id: I93e9297d0755077ad619839c44d2feb7b2a0c18d
    Reviewed-on: https://code.wireshark.org/review/11490
    Reviewed-by: Anders Broman <a.broman58@gmail.com>
    (cherry picked from commit 4a8b20a9a90696e2c1828fa9accd80e907f70f40)
    Reviewed-on: https://code.wireshark.org/review/11493

commit 6379ae6
Author: Michael Mann <mmann78@netscape.net>
Date:   Tue Aug 18 23:14:09 2015 -0400

    udp_dissect_pdus follow-up
    
    Add heuristic support
    Better documentation
    
    Change-Id: I236c1f4d3613aa58d608aee0e5edc40c3b158d25
    Reviewed-on: https://code.wireshark.org/review/10120
    Petri-Dish: Michael Mann <mmann78@netscape.net>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit ad1b785fe80df6ecffee396a617960e1af390274)
    Reviewed-on: https://code.wireshark.org/review/11486

commit 0cb9273
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Sun Nov 1 17:58:23 2015 +0100

    Disable RTP player debug logs that were presumably left activated by mistake
    
    Change-Id: Ieeca052bba14735447cdd6e53de8ed7cda69a27f
    Reviewed-on: https://code.wireshark.org/review/11480
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit a4a5f2d0f0e993d4352e7db39a53407ab8985265)
    Reviewed-on: https://code.wireshark.org/review/11482

commit e5db88a
Author: Gerald Combs <gerald@wireshark.org>
Date:   Sun Nov 1 08:19:24 2015 -0800

    [Automatic update for 2015-11-01]
    
    Update manuf, services enterprise-numbers, translations, and other items.
    
    Change-Id: I7dfeccd0a771b477e42b7bc37e25d3660ad2cf74
    Reviewed-on: https://code.wireshark.org/review/11478
    Reviewed-by: Gerald Combs <gerald@wireshark.org>

commit 0fd5fe6
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Sun Nov 1 00:08:39 2015 +0100

    Qt: do not draw sequence analysis items with a display status set to false
    
    Change-Id: Ieff9d6838fcf5329c16df8b7d6367a4c6c3a5ee5
    Reviewed-on: https://code.wireshark.org/review/11467
    Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit 16f5b1138941b8f52bfff1eeffcf3e94059599ff)
    Reviewed-on: https://code.wireshark.org/review/11475

commit cf2b149
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Sat Oct 31 23:40:53 2015 +0100

    VoIP Calls: fix SIP calls state
    
    A request other than INVITE (like ACK for example) is not a call setup
    
    Change-Id: I2e78ed0163822a278b82e250e78aa91e673404cf
    Reviewed-on: https://code.wireshark.org/review/11466
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit 9df0b8f52567b825f2d07d2f872ba8f5ff812602)
    Reviewed-on: https://code.wireshark.org/review/11474

commit bf63b1a
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Sat Oct 31 23:36:13 2015 +0100

    voip_calls.c: add missing tap_draw callback to taps asking for a redraw
    
    Otherwise the GUI does not get populated properly
    
    Change-Id: I5e24ac5ab2909f3200c588405dbdc9c6bbb82a73
    Reviewed-on: https://code.wireshark.org/review/11465
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    (cherry picked from commit adc7bfe71d3b783301b3e86f86ecb096e7be2af9)
    Reviewed-on: https://code.wireshark.org/review/11473

commit c01faec
Author: Pascal Quantin <pascal.quantin@gmail.com>
Date:   Sat Oct 31 22:05:45 2015 +0100

    TCP: replace some dissector asserts by a return
    
    It prevents an assert in case of malformed packet
    
    Bug: 11662
    Change-Id: If5d7196c7e6ecd0ffe8ed97213dbd64bc1f69cbb
    Reviewed-on: https://code.wireshark.org/review/11464
    Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
    Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit ced7412c1062a74afc3f973fe1e3d1238a0acf40)
    Reviewed-on: https://code.wireshark.org/review/11469

commit b9f1ab6
Author: Michael Mann <mmann78@netscape.net>
Date:   Fri Oct 30 08:37:09 2015 -0400

    Add some "protocol placeholders" to remove confusion with Decode As.
    
    Change-Id: Icc4bf0149af81c35bc6b615add473168600468fb
    Reviewed-on: https://code.wireshark.org/review/11429
    Petri-Dish: Michael Mann <mmann78@netscape.net>
    Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
    Reviewed-by: Michael Mann <mmann78@netscape.net>
    (cherry picked from commit 6503689958399a57a2dea7c81b4fef6ac648693e)
    Reviewed-on: https://code.wireshark.org/review/11453

commit f6de2fb
Author: Guy Harris <guy@alum.mit.edu>
Date:   Fri Oct 30 15:12:00 2015 -0700

    Qualify that it's *ONC* RPC that's affected by the API change.
    
    Change-Id: I29fa16ef317d2df38ef55cc8dff8d9fcc08c7ae5
    Reviewed-on: https://code.wireshark.org/review/11452
    Reviewed-by: Guy Harris <guy@alum.mit.edu>

commit 53fab50
Author: Gerald Combs <gerald@wireshark.org>
Date:   Fri Oct 30 14:54:26 2015 -0700

    2.0.0rc2 → 2.0.0rc3.
    
    Change-Id: I6097a6222082cb1dc1608a6bdd48bcdfd5e3689a
    Reviewed-on: https://code.wireshark.org/review/11451
    Reviewed-by: Gerald Combs <gerald@wireshark.org>