forked from wireshark/wireshark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
11142 lines (9255 loc) · 429 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
------------------------------------------------------------------------
r28815 | gerald | 2009-06-22 15:38:29 -0700 (Mon, 22 Jun 2009) | 5 lines
Changed paths:
M /trunk/epan/dissectors/packet-afs.c
Instead of tvb_get_ptr + ep_alloc + proto_tree_add_string to fetch a string and
add it to the tree, just call proto_tree_add_item. Fixes bug 3564.
Replace another tvb_get_ptr call with tvb_format_text.
------------------------------------------------------------------------
r28816 | morriss | 2009-06-22 15:48:35 -0700 (Mon, 22 Jun 2009) | 1 line
Changed paths:
M /trunk
M /trunk/doc/Makefile.am
Copy AUTHORS-SHORT to the top-level directory so Help->About can find it when run from the build directory.
------------------------------------------------------------------------
r28817 | stig | 2009-06-22 23:02:12 -0700 (Mon, 22 Jun 2009) | 6 lines
Changed paths:
M /trunk/asn1/h248/packet-h248-template.c
M /trunk/asn1/pkix1explicit/packet-pkix1explicit-template.c
M /trunk/asn1/pkixcmp/packet-cmp-template.c
M /trunk/asn1/q932/packet-q932-template.c
M /trunk/asn1/qsig/packet-qsig-template.c
M /trunk/asn1/ranap/packet-ranap-template.c
M /trunk/asn1/rtse/packet-rtse-template.c
M /trunk/asn1/s1ap/packet-s1ap-template.c
M /trunk/asn1/sabp/packet-sabp-template.c
M /trunk/asn1/smrse/packet-smrse-template.c
M /trunk/asn1/spnego/packet-spnego-template.c
M /trunk/asn1/t38/packet-t38-template.c
M /trunk/asn1/tcap/packet-tcap-template.c
M /trunk/asn1/x509af/packet-x509af-template.c
M /trunk/asn1/x509ce/packet-x509ce-template.c
M /trunk/asn1/x509if/packet-x509if-template.c
From Kovarththanan Rajaratnam:
Clean up header field info in asn1/*-template.c files.
From me:
Fixed a few typos in the patch.
------------------------------------------------------------------------
r28818 | jake | 2009-06-22 23:45:59 -0700 (Mon, 22 Jun 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-icmpv6.c
From Shinsuke SUZUKI:
Due to an incorrect offset setting in packet-icmpv6.c Wireshark cannot parse RA router-lifetime and RA flags properly.
------------------------------------------------------------------------
r28819 | jake | 2009-06-22 23:49:38 -0700 (Mon, 22 Jun 2009) | 12 lines
Changed paths:
M /trunk/epan/dissectors/Makefile.common
A /trunk/epan/dissectors/packet-btamp.c
M /trunk/epan/dissectors/packet-btl2cap.c
M /trunk/epan/dissectors/packet-btl2cap.h
From Kovarththanan Rajaratnam:
The Bluetooth AMP Manager protocol was recently adopted by the Bluetooth SIG.
This protocol sits on top of L2CAP and requires a few changes in order to
accommodate the new move/create channel request.
This patch includes:
* a new Bluetooth AMP Manager Protocol dissector
* changes to L2CAP to handle the new move/create channel signals
* introduce a dissector table for fixed channel, allowing btamp dissector to
handle the BT AMP Manager Protocol channel
* Preliminary changes in L2CAP to support the new enhanced L2CAP modes
(enhanced retransmission/streaming mode)
------------------------------------------------------------------------
r28820 | etxrab | 2009-06-23 06:49:46 -0700 (Tue, 23 Jun 2009) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-gtp.c
Try to fix indentation a bit.
------------------------------------------------------------------------
r28821 | etxrab | 2009-06-23 07:16:28 -0700 (Tue, 23 Jun 2009) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-gtp.c
Revert(Try to fix indentation a bit.)
------------------------------------------------------------------------
r28822 | etxrab | 2009-06-23 09:01:55 -0700 (Tue, 23 Jun 2009) | 1 line
Changed paths:
M /trunk/diameter/dictionary.xml
Update 3GPP AVP:s
------------------------------------------------------------------------
r28823 | jake | 2009-06-23 14:05:47 -0700 (Tue, 23 Jun 2009) | 4 lines
Changed paths:
M /trunk/AUTHORS
A /trunk/epan/dissectors/packet-hpteam.c
M /trunk/epan/dissectors/packet-llc.c
M /trunk/epan/oui.h
From Nathan Hartwell:
This patch attempt should more closely align with the Wireshark "layout" of using
a dissector rather than a "hack" to the packet-llc dissector.
------------------------------------------------------------------------
r28824 | wmeier | 2009-06-23 17:29:54 -0700 (Tue, 23 Jun 2009) | 3 lines
Changed paths:
M /trunk/epan/dissectors/Makefile.common
M /trunk/epan/dissectors/packet-hpteam.c
if (!initialized) ... not req'd + other addt'l minor revisions;
Also: add packet-hpteam.c to Makefile.common so it gets built as part oif Wireshark.
------------------------------------------------------------------------
r28825 | wmeier | 2009-06-23 17:49:54 -0700 (Tue, 23 Jun 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-btamp.c
Remove two unused includes
------------------------------------------------------------------------
r28826 | stig | 2009-06-23 18:40:54 -0700 (Tue, 23 Jun 2009) | 3 lines
Changed paths:
M /trunk/asn1/ansi_map/ansi_map.cnf
M /trunk/asn1/ansi_map/packet-ansi_map-template.c
M /trunk/asn1/camel/packet-camel-template.c
M /trunk/asn1/ftam/packet-ftam-template.c
M /trunk/asn1/gsmmap/packet-gsmmap-template.c
M /trunk/asn1/h225/packet-h225-template.c
M /trunk/asn1/h450/packet-h450-template.c
M /trunk/asn1/ocsp/packet-ocsp-template.c
M /trunk/asn1/qsig/packet-qsig-template.c
From Kovarththanan Rajaratnam:
More asn1/* header field info cleanup
------------------------------------------------------------------------
r28827 | stig | 2009-06-23 19:05:51 -0700 (Tue, 23 Jun 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/ncp2222.py
More hf_register_info related cleanup.
------------------------------------------------------------------------
r28828 | stig | 2009-06-23 19:07:16 -0700 (Tue, 23 Jun 2009) | 4 lines
Changed paths:
M /trunk/epan/dissectors/process-x11-fields.pl
M /trunk/epan/dissectors/x11-fields
From Kovarththanan Rajaratnam:
More hf_register_info related cleanup
* Fix process-x11-fields.pl (packet-x11.c)
------------------------------------------------------------------------
r28829 | stig | 2009-06-23 19:08:14 -0700 (Tue, 23 Jun 2009) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-nisplus.c
Change hf_nisplus_dummy to use "dummy" as name instead of " "
(this is the only place where " " was used)
------------------------------------------------------------------------
r28830 | stig | 2009-06-23 19:11:11 -0700 (Tue, 23 Jun 2009) | 5 lines
Changed paths:
M /trunk/epan/dissectors/packet-cimetrics.c
M /trunk/epan/dissectors/packet-cisco-oui.c
M /trunk/epan/dissectors/packet-extreme.c
M /trunk/epan/dissectors/packet-force10-oui.c
M /trunk/epan/dissectors/packet-iana-oui.c
M /trunk/epan/dissectors/packet-nt-oui.c
From Kovarththanan Rajaratnam:
Cleanup hf_register_info declaration passed to llc_add_oui(). While there,
change the declaration to an array in order to be consistent with the rest
of packet-*.c files.
------------------------------------------------------------------------
r28831 | stig | 2009-06-23 19:12:13 -0700 (Tue, 23 Jun 2009) | 3 lines
Changed paths:
M /trunk/plugins/m2m/packet-m2m.c
From Kovarththanan Rajaratnam:
Move hf_register_info declarations in packet-m2m.c to function scope
------------------------------------------------------------------------
r28832 | stig | 2009-06-23 19:17:12 -0700 (Tue, 23 Jun 2009) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-diameter.c
M /trunk/epan/dissectors/packet-infiniband.h
M /trunk/epan/dissectors/packet-jxta.c
M /trunk/epan/dissectors/packet-tpncp.c
M /trunk/epan/oids.c
M /trunk/plugins/unistim/header_field.h
From Kovarththanan Rajaratnam:
More hf_register_info related cleanup.
------------------------------------------------------------------------
r28833 | wmeier | 2009-06-23 19:42:43 -0700 (Tue, 23 Jun 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-hpteam.c
Remove superflous code; #include <stdio.h> not needed.
------------------------------------------------------------------------
r28834 | stig | 2009-06-23 20:03:25 -0700 (Tue, 23 Jun 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-cip.c
M /trunk/epan/dissectors/packet-enip.c
More hf_register_info related cleanup.
------------------------------------------------------------------------
r28835 | stig | 2009-06-23 22:54:19 -0700 (Tue, 23 Jun 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-homeplug.c
Fixed field types for some reserved fields.
------------------------------------------------------------------------
r28836 | jake | 2009-06-23 23:21:45 -0700 (Tue, 23 Jun 2009) | 4 lines
Changed paths:
M /trunk/epan/dissectors/packet-slowprotocols.c
From Artem Tamazov:
Added: ESMC support as per G.8264 (Slow Protocol Subtype 0x0a).
* QL codes are dissected according to G.781 5.5.1.1 "Option I SDH".
Added: support for Timestamp entities in ESMC PDU as per WD56 proposal.
------------------------------------------------------------------------
r28837 | stig | 2009-06-24 12:10:50 -0700 (Wed, 24 Jun 2009) | 3 lines
Changed paths:
M /trunk/epan/addr_resolv.c
From Kovarththanan Rajaratnam via bug 3555:
Cancel hostname lookup timers if c-ares is not initialized.
------------------------------------------------------------------------
r28838 | jake | 2009-06-24 13:27:58 -0700 (Wed, 24 Jun 2009) | 2 lines
Changed paths:
M /trunk/wiretap/dct3trace.c
From Duncan Salerno:
Ensure dct3trac packets never longer than 23 bytes.
------------------------------------------------------------------------
r28839 | stig | 2009-06-24 18:50:56 -0700 (Wed, 24 Jun 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-infiniband.c
Remove a tvb_free() call.
------------------------------------------------------------------------
r28840 | stig | 2009-06-24 19:07:17 -0700 (Wed, 24 Jun 2009) | 3 lines
Changed paths:
M /trunk/epan/to_str.c
M /trunk/epan/to_str.h
From Nathan Hartwell via bug 2733:
Added time_secs_to_str_unsigned().
------------------------------------------------------------------------
r28841 | stig | 2009-06-24 19:08:06 -0700 (Wed, 24 Jun 2009) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-bootp.c
From Nathan Hartwell via bug 2733:
Use time_secs_to_str_unsigned().
------------------------------------------------------------------------
r28842 | stig | 2009-06-24 19:13:35 -0700 (Wed, 24 Jun 2009) | 2 lines
Changed paths:
M /trunk/epan/to_str.c
Unsigned does not have msign.
------------------------------------------------------------------------
r28843 | etxrab | 2009-06-24 22:59:04 -0700 (Wed, 24 Jun 2009) | 1 line
Changed paths:
M /trunk/asn1/spnego/packet-spnego-template.c
tvb_new_real_data()->tvb_child_new_real_data()
------------------------------------------------------------------------
r28844 | stig | 2009-06-25 19:38:23 -0700 (Thu, 25 Jun 2009) | 6 lines
Changed paths:
M /trunk/epan/dissectors/Makefile.common
M /trunk/epan/dissectors/packet-cip.c
M /trunk/epan/dissectors/packet-cip.h
M /trunk/epan/dissectors/packet-enip.c
A /trunk/epan/dissectors/packet-enip.h
From Joakim Wiberg via bug 3103:
Various improvements to the CIP and ENIP dissectors.
From me:
Updated to latest trunk changes.
------------------------------------------------------------------------
r28845 | stig | 2009-06-25 20:20:12 -0700 (Thu, 25 Jun 2009) | 2 lines
Changed paths:
M /trunk/asn1/spnego/packet-spnego-template.c
tvb_child_new_real_data() -> tvb_new_child_real_data()
------------------------------------------------------------------------
r28846 | stig | 2009-06-25 20:24:08 -0700 (Thu, 25 Jun 2009) | 2 lines
Changed paths:
M /trunk/doc/README.developer
Use NULL for empty blurb.
------------------------------------------------------------------------
r28847 | stig | 2009-06-25 20:37:30 -0700 (Thu, 25 Jun 2009) | 2 lines
Changed paths:
M /trunk/gtk/main.c
Small whitespace cleanup.
------------------------------------------------------------------------
r28848 | stig | 2009-06-25 20:59:01 -0700 (Thu, 25 Jun 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-acp133.c
M /trunk/epan/dissectors/packet-ansi_map.c
M /trunk/epan/dissectors/packet-camel.c
M /trunk/epan/dissectors/packet-cmip.c
M /trunk/epan/dissectors/packet-crmf.c
M /trunk/epan/dissectors/packet-dap.c
M /trunk/epan/dissectors/packet-disp.c
M /trunk/epan/dissectors/packet-dop.c
M /trunk/epan/dissectors/packet-dsp.c
M /trunk/epan/dissectors/packet-ftam.c
M /trunk/epan/dissectors/packet-gnm.c
M /trunk/epan/dissectors/packet-goose.c
M /trunk/epan/dissectors/packet-gsm_map.c
M /trunk/epan/dissectors/packet-h225.c
M /trunk/epan/dissectors/packet-h235.c
M /trunk/epan/dissectors/packet-h245.c
M /trunk/epan/dissectors/packet-h245.h
M /trunk/epan/dissectors/packet-h248.c
M /trunk/epan/dissectors/packet-h282.c
M /trunk/epan/dissectors/packet-h283.c
M /trunk/epan/dissectors/packet-h450.c
M /trunk/epan/dissectors/packet-h460.c
M /trunk/epan/dissectors/packet-h501.c
M /trunk/epan/dissectors/packet-inap.c
M /trunk/epan/dissectors/packet-ldap.c
M /trunk/epan/dissectors/packet-lte-rrc.c
M /trunk/epan/dissectors/packet-mms.c
M /trunk/epan/dissectors/packet-mpeg-audio.c
M /trunk/epan/dissectors/packet-mpeg-pes.c
M /trunk/epan/dissectors/packet-nbap.c
M /trunk/epan/dissectors/packet-p7.c
M /trunk/epan/dissectors/packet-p7.h
M /trunk/epan/dissectors/packet-pcap.c
M /trunk/epan/dissectors/packet-pkix1explicit.c
M /trunk/epan/dissectors/packet-pkixtsp.c
M /trunk/epan/dissectors/packet-q932.c
M /trunk/epan/dissectors/packet-qsig.c
M /trunk/epan/dissectors/packet-rnsap.c
M /trunk/epan/dissectors/packet-rrc.c
M /trunk/epan/dissectors/packet-smrse.c
M /trunk/epan/dissectors/packet-spnego.c
M /trunk/epan/dissectors/packet-t125.c
M /trunk/epan/dissectors/packet-ulp.c
M /trunk/epan/dissectors/packet-x2ap.c
M /trunk/epan/dissectors/packet-x411.c
M /trunk/epan/dissectors/packet-x411.h
M /trunk/epan/dissectors/packet-x420.c
M /trunk/epan/dissectors/packet-x509af.c
M /trunk/epan/dissectors/packet-x509ce.c
M /trunk/epan/dissectors/packet-x509if.c
M /trunk/epan/dissectors/packet-x509sat.c
Re-generate asn1 dissectors after hf_register_info cleanup.
------------------------------------------------------------------------
r28849 | etxrab | 2009-06-25 22:48:03 -0700 (Thu, 25 Jun 2009) | 3 lines
Changed paths:
M /trunk/Makefile.am
M /trunk/diameter/dictionary.xml
A /trunk/diameter/eap.xml
M /trunk/diameter/nasreq.xml
M /trunk/epan/dissectors/packet-diameter.c
M /trunk/packaging/nsis/wireshark.nsi
From Sebastien Decugis:
Add Missing Diameter EAP support.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3600
------------------------------------------------------------------------
r28850 | tuexen | 2009-06-26 08:08:04 -0700 (Fri, 26 Jun 2009) | 12 lines
Changed paths:
M /trunk/wiretap/pcapng.c
* Allocate enough memory for reading a packet.
* Initialize pseudoheader.
* Add some input validation / protection code.
* Fix some return values.
* Clean up some whitespaces.
This fixes Bug 3565. Thanks to Tyson Key how reported
the issue and provided capture files for debugging.
This fix is scheduled for inclusion in Wireshark 1.2.1
and higher.
------------------------------------------------------------------------
r28851 | tuexen | 2009-06-26 08:25:22 -0700 (Fri, 26 Jun 2009) | 2 lines
Changed paths:
M /trunk/wiretap/pcapng.c
Disable debug output.
------------------------------------------------------------------------
r28852 | gerald | 2009-06-26 14:25:09 -0700 (Fri, 26 Jun 2009) | 3 lines
Changed paths:
M /trunk/AUTHORS
M /trunk/dumpcap.c
Unfortunately, r28452 seems to cause more problems than it fixes. Back
out the change for now.
------------------------------------------------------------------------
r28853 | gerald | 2009-06-26 16:05:04 -0700 (Fri, 26 Jun 2009) | 2 lines
Changed paths:
M /trunk/gtk/prefs_column.c
Add a tooltip in case it's not obvious how to rearrange the columns.
------------------------------------------------------------------------
r28854 | rbalint | 2009-06-26 23:32:52 -0700 (Fri, 26 Jun 2009) | 2 lines
Changed paths:
M /trunk/configure.in
Strictly require flex instead of allowing lex, too.
------------------------------------------------------------------------
r28855 | rbalint | 2009-06-27 01:13:39 -0700 (Sat, 27 Jun 2009) | 2 lines
Changed paths:
M /trunk/configure.in
Revert commit 28854.
------------------------------------------------------------------------
r28856 | etxrab | 2009-06-27 03:31:42 -0700 (Sat, 27 Jun 2009) | 5 lines
Changed paths:
M /trunk/epan/dissectors/dcerpc/drsuapi/template.c
M /trunk/epan/dissectors/dcerpc/idl2wrs.c
M /trunk/epan/dissectors/ncp2222.py
M /trunk/epan/dissectors/pidl/atsvc.cnf
M /trunk/epan/dissectors/pidl/mapi/mapi.cnf
M /trunk/epan/dissectors/pidl/mapi/request.cnf.c
M /trunk/epan/dissectors/pidl/mapi/response.cnf.c
From Kovarththanan Rajaratnam:
- Fix ncp2222.py and all the epan/dissectors/dcerpc dissectors. The
latter required changes to idl2wrs which used variadic macros (not supported in MSVC 6.0).
- Cleanup PIDL conformance files
------------------------------------------------------------------------
r28857 | tuexen | 2009-06-27 04:39:47 -0700 (Sat, 27 Jun 2009) | 8 lines
Changed paths:
M /trunk/wiretap/libpcap.c
M /trunk/wiretap/pcap-common.c
M /trunk/wiretap/pcap-common.h
M /trunk/wiretap/pcapng.c
This commit
* adds an encap argument to pcap_process_pseudo_header.
* adds support for reading pseudo headers.
It fixes Bug 3560.
Thanks to Tyson Key for reporting the bug and providing
trace files. This fix will be scheduled for inclusion in
Wireshark 1.2.1 and higher.
------------------------------------------------------------------------
r28858 | tuexen | 2009-06-27 05:14:18 -0700 (Sat, 27 Jun 2009) | 10 lines
Changed paths:
M /trunk/wiretap/pcapng.c
If all interfaces use the same encapsulation, use
this a the file encapsulation.
This fixes a bug where you can not save a file
in libpcap format when you captured it as a
pcapng one.
This fix will be scheduled for Wireshark 1.2.1
and higher.
------------------------------------------------------------------------
r28859 | tuexen | 2009-06-27 05:41:06 -0700 (Sat, 27 Jun 2009) | 7 lines
Changed paths:
M /trunk/wiretap/libpcap.c
M /trunk/wiretap/pcap-common.c
M /trunk/wiretap/pcap-common.h
M /trunk/wiretap/pcapng.c
This patch
* adds an encapsulation argument to pcap_write_phdr.
* writes the pseudo header when writing pcapng files.
This fixes a bug where you could not write pcapng files
when using encapsulations requiring pseudo headers.
------------------------------------------------------------------------
r28860 | etxrab | 2009-06-27 05:41:39 -0700 (Sat, 27 Jun 2009) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-ieee80211.c
From Greg Schwendimann:
802.11 decryption is broken
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3590
------------------------------------------------------------------------
r28861 | etxrab | 2009-06-27 06:37:03 -0700 (Sat, 27 Jun 2009) | 2 lines
Changed paths:
M /trunk/asn1/h248/h248.cnf
M /trunk/asn1/h248/packet-h248-template.c
M /trunk/epan/dissectors/packet-h248.c
M /trunk/epan/dissectors/packet-h248.h
From yin sun:
h248 term wildcard enhancement
------------------------------------------------------------------------
r28862 | tuexen | 2009-06-27 08:20:44 -0700 (Sat, 27 Jun 2009) | 9 lines
Changed paths:
M /trunk/wiretap/pcapng.c
M /trunk/wiretap/wtap-int.h
Add support for writing pcapng files with multiple
encapsulations.
This fixes a bug reported by Sake during the
Sharkfest 09. Thanks for providing a
Netscreen tracefile with multiple link layer
types.
This patch will be included in Wireshark 1.2.1
and higher.
------------------------------------------------------------------------
r28863 | tuexen | 2009-06-27 09:08:18 -0700 (Sat, 27 Jun 2009) | 3 lines
Changed paths:
M /trunk/wiretap/libpcap.c
M /trunk/wiretap/pcap-common.c
M /trunk/wiretap/pcap-common.h
M /trunk/wiretap/pcapng.c
Cleanup. Should be included in Wireshark 1.2.1 and higher to keep
merging future bug fixes simple.
------------------------------------------------------------------------
r28864 | tuexen | 2009-06-27 10:33:23 -0700 (Sat, 27 Jun 2009) | 3 lines
Changed paths:
M /trunk/wiretap/pcapng.c
Another cleanup. We are now back to Ulf's original
model of data handling.
------------------------------------------------------------------------
r28865 | tuexen | 2009-06-27 11:10:10 -0700 (Sat, 27 Jun 2009) | 3 lines
Changed paths:
M /trunk/wiretap/libpcap.c
Fix copy/paste error introduced in rev. 28863.
Thanks to Guy for finding and reporting it.
------------------------------------------------------------------------
r28866 | tuexen | 2009-06-27 11:50:13 -0700 (Sat, 27 Jun 2009) | 6 lines
Changed paths:
M /trunk/wiretap/pcapng.c
Accept file snaplen larger than WTAP_MAX_PACKET_SIZE,
text2pcap uses 102400.
This fixes bug 3620. Thanks to Tyson Key for reporting the bug
and providing capture files.
This fix should be included in Wireshark 1.2.1 and higher.
------------------------------------------------------------------------
r28867 | rbalint | 2009-06-27 21:20:10 -0700 (Sat, 27 Jun 2009) | 4 lines
Changed paths:
M /trunk/configure.in
Strictly require flex instead of allowing lex, too.
It compiles now.
This fixes bug 1641.
------------------------------------------------------------------------
r28868 | tuexen | 2009-06-28 04:09:24 -0700 (Sun, 28 Jun 2009) | 7 lines
Changed paths:
M /trunk/wiretap/pcapng.c
Stop loading a pcapng file with multiple section header blocks.
This fixes a bug reported by Tyson Key as a follow up of Bug 3560.
Also some cleanups and debug output improvements.
Thanks to Tyson Key for reporting the bug and providing a tracefile.
This fix will be included in Wireshark 1.2.1 and higher.
------------------------------------------------------------------------
r28869 | gerald | 2009-06-28 08:03:26 -0700 (Sun, 28 Jun 2009) | 1 line
Changed paths:
M /trunk/epan/enterprise-numbers
M /trunk/manuf
[Automatic manuf and enterprise-numbers update for 2009-06-28]
------------------------------------------------------------------------
r28872 | etxrab | 2009-06-28 08:18:27 -0700 (Sun, 28 Jun 2009) | 4 lines
Changed paths:
M /trunk/epan/dissectors/packet-homeplug.c
From Jon Smirl:
More packet decoding for Intellon powerline devices.
From me put proto_register_homeplug() last in the file and whitespace changes.
------------------------------------------------------------------------
r28873 | etxrab | 2009-06-28 08:22:43 -0700 (Sun, 28 Jun 2009) | 3 lines
Changed paths:
M /trunk/gtk/tcp_graph.c
From Sean Walberg:
The title in the TCP sequence graphs is too short.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3556
------------------------------------------------------------------------
r28874 | rbalint | 2009-06-28 09:31:27 -0700 (Sun, 28 Jun 2009) | 4 lines
Changed paths:
D /trunk/aclocal-fallback/libgnutls.m4
M /trunk/configure.in
Detect gnutls via pkg-config instead of the deprecated libgnutls-config.
Based on patch from Andreas Metzler.
This fixes bug 3627.
------------------------------------------------------------------------
r28875 | jake | 2009-06-28 09:39:31 -0700 (Sun, 28 Jun 2009) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-hip.c
Make dissector handle unexpected data better.
------------------------------------------------------------------------
r28876 | guy | 2009-06-28 10:23:07 -0700 (Sun, 28 Jun 2009) | 3 lines
Changed paths:
M /trunk/aclocal-flags
We only support GLib 2.x/GTK+ 2.x, which uses pkg-config, not
gtk-config; use it instead.
------------------------------------------------------------------------
r28877 | tuexen | 2009-06-28 11:22:15 -0700 (Sun, 28 Jun 2009) | 3 lines
Changed paths:
M /trunk/wiretap/pcap-common.c
M /trunk/wiretap/wtap.h
Add support for DLT_PPP_WITH_DIR. This fixes bug 3619.
Thanks for Tyson Key for reporting the issue.
------------------------------------------------------------------------
r28878 | wmeier | 2009-06-28 13:01:37 -0700 (Sun, 28 Jun 2009) | 3 lines
Changed paths:
M /trunk/gtk/proto_dlg.c
Analyze!Enabled Protocols: Fix so type-ahead find OK w/o needing to first select a row.
Ditto when clicking on a column header to change the sort order.
------------------------------------------------------------------------
r28879 | ulfl | 2009-06-28 14:13:51 -0700 (Sun, 28 Jun 2009) | 3 lines
Changed paths:
M /trunk/gtk/capture_if_details_dlg_win32.c
fix bug #3439 (thanks to Kovarththanan Rajaratnam), make WS compilable under MSVC2005(EE) again.
Some definitions are not available on MSVC2005. This fix "detects" the MSVC version used, it might still not work with MSVC2008EE though (I guess the required definitions are depending on the Windows SDK installed).
------------------------------------------------------------------------
r28880 | gal | 2009-06-29 06:01:54 -0700 (Mon, 29 Jun 2009) | 9 lines
Changed paths:
D /trunk/packaging/portableapps/win32/WiresharkPortable.ini
M /trunk/packaging/portableapps/win32/WiresharkPortable.nsi
A /trunk/packaging/portableapps/win32/WiresharkPortable.tmpl
M /trunk/packaging/portableapps/win32/makefile.nmake
Changes to address bug 3547:
1) Make sure WiresharkPortable.nsi uses correct WinPcap version (from config.nmake), and also vcredist.
2) Automatically generate WiresharkPortable.ini with correct default values
3) Include readme.txt in the distribution so that users know how to use WiresharkPortable.ini
Thanks to Kovarththanan Rajaratnam for basic patch.
------------------------------------------------------------------------
r28881 | etxrab | 2009-06-29 12:24:14 -0700 (Mon, 29 Jun 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/Makefile.common
M /trunk/epan/dissectors/packet-atm.c
M /trunk/epan/dissectors/packet-atm.h
M /trunk/epan/dissectors/packet-bfd.c
M /trunk/epan/dissectors/packet-mpls.c
M /trunk/epan/dissectors/packet-pw-atm.c
A /trunk/epan/dissectors/packet-pw-atm.h
M /trunk/epan/dissectors/packet-pw-cesopsn.c
M /trunk/epan/dissectors/packet-pw-common.c
M /trunk/epan/dissectors/packet-pw-common.h
M /trunk/epan/dissectors/packet-pw-satop.c
M /trunk/epan/packet_info.h
From Artem Tamazov:
Added: PW ATM 1:1, AAL5 SDU, AAL5 PDU support + BFD fix + PW ATM OAM fix
------------------------------------------------------------------------
r28882 | stig | 2009-06-29 13:16:20 -0700 (Mon, 29 Jun 2009) | 2 lines
Changed paths:
M /trunk/packaging/Makefile.am
M /trunk/packaging/portableapps/win32
WiresharkPortable.ini -> WiresharkPortable.tmpl
------------------------------------------------------------------------
r28883 | jmayer | 2009-06-29 13:35:47 -0700 (Mon, 29 Jun 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-glbp.c
Add value for vfstate: active
------------------------------------------------------------------------
r28884 | wmeier | 2009-06-29 13:59:26 -0700 (Mon, 29 Jun 2009) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-btl2cap.c
From Kovarththanan Rajaratnam: Fix for Bug #3572
[http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3572]
------------------------------------------------------------------------
r28885 | rbalint | 2009-06-29 15:22:30 -0700 (Mon, 29 Jun 2009) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-data.c
Added option to show not dissected packet data on a separate packet bytes pane.
It makes offsets in the not dissected data easier to follow.
------------------------------------------------------------------------
r28886 | gerald | 2009-06-29 16:08:05 -0700 (Mon, 29 Jun 2009) | 3 lines
Changed paths:
M /trunk/gtk/airpcap_dlg.c
M /trunk/gtk/airpcap_dlg.h
M /trunk/gtk/airpcap_gui_utils.c
M /trunk/gtk/airpcap_gui_utils.h
M /trunk/gtk/keys.h
M /trunk/gtk/main_airpcap_toolbar.c
Fix a couple of AirPcap channel/offset bugs. Remove an unused
routine. Fixup whitespace in a couple of places.
------------------------------------------------------------------------
r28887 | guy | 2009-06-29 17:32:20 -0700 (Mon, 29 Jun 2009) | 2 lines
Changed paths:
M /trunk/gtk/airpcap_gui_utils.c
Put in missing newline at the end.
------------------------------------------------------------------------
r28888 | stig | 2009-06-30 01:28:21 -0700 (Tue, 30 Jun 2009) | 2 lines
Changed paths:
M /trunk/asn1/ldap/packet-ldap-template.c
M /trunk/epan/dissectors/packet-ldap.c
Cleanup protocol name for ldap.
------------------------------------------------------------------------
r28889 | stig | 2009-06-30 03:38:00 -0700 (Tue, 30 Jun 2009) | 6 lines
Changed paths:
M /trunk/asn1/ldap/packet-ldap-template.c
M /trunk/epan/dissectors/packet-ldap.c
Changed check for having multiple ldap PDU's in one frame.
The previous check is incorrect when the first ldap frame in the capture is
selected and the filter is changed, or selecting "Follow TCP Stream".
Also removed check_col().
------------------------------------------------------------------------
r28890 | stig | 2009-06-30 05:26:11 -0700 (Tue, 30 Jun 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-simulcrypt.c
Always register to tcp.port to be able to decode as.
------------------------------------------------------------------------
r28891 | wmeier | 2009-06-30 06:57:26 -0700 (Tue, 30 Jun 2009) | 6 lines
Changed paths:
M /trunk/epan/dissectors/packet-radius.c
packet-radius: Fix exception CLEANUP handling when malformed attribute list/pair seen;
Fixes crash reported in Bug #3578. [https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3578]
Essentially: CLEANUP_CALL_AND_POP wasn't being executed for certain error exits from
dissect_attribute_pairs() thus leaving a CLEANUP entry on the exception stack.
Also: vsa_buffer_table wasn't being destroyed if an exception occurred in dissect_attribute_pairs.
------------------------------------------------------------------------
r28892 | sfisher | 2009-06-30 11:05:04 -0700 (Tue, 30 Jun 2009) | 14 lines
Changed paths:
M /trunk/color_filters.c
M /trunk/file.c
M /trunk/gtk/Makefile.common
M /trunk/gtk/capture_file_dlg.c
M /trunk/gtk/color_dlg.c
M /trunk/gtk/drag_and_drop.c
M /trunk/gtk/font_utils.c
M /trunk/gtk/gtkglobals.h
M /trunk/gtk/main.c
M /trunk/gtk/main.h
M /trunk/gtk/main_packet_list.c
M /trunk/gtk/main_packet_list.h
M /trunk/gtk/main_proto_draw.c
M /trunk/gtk/main_toolbar.c
M /trunk/gtk/menus.c
A /trunk/gtk/new_packet_list.c
A /trunk/gtk/new_packet_list.h
A /trunk/gtk/packet_list_store.c
A /trunk/gtk/packet_list_store.h
M /trunk/gtk/prefs_column.c
M /trunk/gtk/prefs_gui.c
M /trunk/gtk/prefs_stream.c
M /trunk/gtk/recent.c
M /trunk/ui_util.h
Introduce experimental new feature: GTK2 tree view based packet list
To use the GTK2 based packet list, define NEW_PACKET_LIST when compiling.
To do this with gcc, set the environment variable CPPFLAGS to
"-DNEW_PACKET_LIST" and re-run configure.
Many features do not yet work. This work began with prototypes by Ulf
quite a while back. I've put quite a bit of work into this so far and
as discussed with a few of the core team members at Sharkfest09 and it was
decided that it would be best to commit what I have so far to allow others to
help work on this.
------------------------------------------------------------------------
r28893 | guy | 2009-06-30 12:09:18 -0700 (Tue, 30 Jun 2009) | 2 lines
Changed paths:
M /trunk/gtk/menus.c
Fix typo.
------------------------------------------------------------------------
r28894 | guy | 2009-06-30 12:10:11 -0700 (Tue, 30 Jun 2009) | 2 lines
Changed paths:
M /trunk/gtk/main_packet_list.c
Fix typo.
------------------------------------------------------------------------
r28895 | wmeier | 2009-06-30 12:52:43 -0700 (Tue, 30 Jun 2009) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-tte.c
From: Benjamin Roch: Enhancements and small fixes for packet-tte.c dissector;
Also: a few minor mostly formatting changes by me.
------------------------------------------------------------------------
r28896 | gerald | 2009-06-30 13:28:26 -0700 (Tue, 30 Jun 2009) | 2 lines
Changed paths:
M /trunk/tools/checkAPIs.pl
Add assert and assert_perror to the 'abort' list.
------------------------------------------------------------------------
r28897 | gerald | 2009-06-30 13:59:51 -0700 (Tue, 30 Jun 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-sflow.c
Add some length checks. Fixes bug 3567.
------------------------------------------------------------------------
r28898 | guy | 2009-06-30 16:49:34 -0700 (Tue, 30 Jun 2009) | 4 lines
Changed paths:
M /trunk/epan/dissectors/packet-mtp3.c
Get rid of assert() call; either the pointer will never be null, in
which case it won't crash, or it will be null, in which case that just
trades one crash for another, and we should fix the crash.
------------------------------------------------------------------------
r28899 | guy | 2009-06-30 16:52:20 -0700 (Tue, 30 Jun 2009) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-pw-common.c
Don't crash if a null pointer is passed, just skip the appending of the
items.
------------------------------------------------------------------------
r28900 | guy | 2009-06-30 16:56:26 -0700 (Tue, 30 Jun 2009) | 5 lines
Changed paths:
M /trunk/epan/dissectors/packet-pw-atm.c
Replace one assert() with DISSECTOR_ASSET(), so we don't crash, and get
rid of another, as the pointer in question is non-null in all calls (if
somebody adds another call with a null pointer, it'll crash when
dereferencing the pointer in any case).
------------------------------------------------------------------------
r28901 | jmayer | 2009-06-30 22:27:34 -0700 (Tue, 30 Jun 2009) | 5 lines
Changed paths:
M /trunk/epan/dissectors/packet-ismp.c
- Put ISMP.EDP into the protocol column to make it clearer
that filtering on edp is not going to help
- Make it possible to filter on ismp.edp
- In case of edp fill info column
------------------------------------------------------------------------
r28902 | stig | 2009-07-01 00:21:13 -0700 (Wed, 01 Jul 2009) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-simulcrypt.c
Added support for Simulcrypt EMMG <-> MUX,
and generic support for other interfaces.
------------------------------------------------------------------------
r28903 | etxrab | 2009-07-01 01:23:32 -0700 (Wed, 01 Jul 2009) | 2 lines
Changed paths:
M /trunk/config.h.win32
M /trunk/config.nmake
M /trunk/gtk/capture_file_dlg.c
Make it possible to configure use of NEW_PACKET_LIST and fix
one compile error. It still fails in file.c trying to include gtk/gtk.h in new_packet_list.h
------------------------------------------------------------------------
r28904 | stig | 2009-07-01 02:05:13 -0700 (Wed, 01 Jul 2009) | 2 lines
Changed paths:
M /trunk/gtk/capture_file_dlg.c
Added NEW_PACKET_LIST guard for new_packet_list.h
------------------------------------------------------------------------
r28905 | stig | 2009-07-01 04:12:58 -0700 (Wed, 01 Jul 2009) | 2 lines
Changed paths:
M /trunk/Makefile.nmake
M /trunk/config.nmake
Try to fix HAVE_NEW_PACKET_LIST handling.
------------------------------------------------------------------------
r28906 | etxrab | 2009-07-01 04:40:24 -0700 (Wed, 01 Jul 2009) | 1 line
Changed paths:
M /trunk/config.nmake
Sligtly modify Stig's fix, I forgot the makefile change :-(
------------------------------------------------------------------------
r28907 | etxrab | 2009-07-01 07:37:02 -0700 (Wed, 01 Jul 2009) | 1 line
Changed paths:
M /trunk/file.c
M /trunk/gtk/new_packet_list.c
M /trunk/gtk/new_packet_list.h
M /trunk/gtk/packet_list_store.c
M /trunk/ui_util.h
Make the new packet list compile on Windows.
------------------------------------------------------------------------
r28908 | gerald | 2009-07-01 08:56:12 -0700 (Wed, 01 Jul 2009) | 3 lines
Changed paths:
M /trunk/gtk/airpcap_dlg.c
M /trunk/gtk/airpcap_gui_utils.c
M /trunk/gtk/airpcap_gui_utils.h
M /trunk/gtk/main_airpcap_toolbar.c
Fix a key entry bug in the decryption key dialog. Remove some unused /
unnecessary functions. Clean up code in a couple of places.
------------------------------------------------------------------------
r28909 | etxrab | 2009-07-01 10:39:19 -0700 (Wed, 01 Jul 2009) | 1 line
Changed paths:
M /trunk/file.c
M /trunk/gtk/new_packet_list.c
M /trunk/gtk/new_packet_list.h
M /trunk/ui_util.h
Realy make the new packet list compile under Windows...
------------------------------------------------------------------------
r28910 | guy | 2009-07-01 10:40:08 -0700 (Wed, 01 Jul 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-pw-atm.c
Thou shalt not call assert() in dissectors.
------------------------------------------------------------------------
r28911 | gerald | 2009-07-01 12:36:24 -0700 (Wed, 01 Jul 2009) | 4 lines
Changed paths:
M /trunk/epan/dissectors/packet-netflow.c
Try to fix fuzzing errors in bug 3636. When dissecting an options
template, differentiate between Netflow v9 and IPFIX, which require
different interpretations. Add other minor fixes and comments.
------------------------------------------------------------------------
r28912 | gerald | 2009-07-01 13:56:03 -0700 (Wed, 01 Jul 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-netflow.c
Add a couple of IPFIX labels where they differ from Netflow.
------------------------------------------------------------------------
r28913 | stig | 2009-07-01 14:20:18 -0700 (Wed, 01 Jul 2009) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-simulcrypt.c
Added error value tables.