forked from wireshark/wireshark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
18694 lines (14740 loc) · 704 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
------------------------------------------------------------------------
r20467 | lego | 2007-01-17 18:54:56 -0800 (Wed, 17 Jan 2007) | 4 lines
Changed paths:
M /trunk/epan/dfilter
M /trunk/epan/dfilter/Makefile.am
M /trunk/epan/dfilter/Makefile.nmake
A /trunk/epan/dfilter/dfilter-macro.c
A /trunk/epan/dfilter/dfilter-macro.h
M /trunk/epan/dfilter/dfilter.c
A /trunk/epan/dfilter/dfilter_macro_load.l
A /trunk/gtk/macros_dlg.c
A /trunk/gtk/macros_dlg.h
M /trunk/gtk/menu.c
display filter macros.
NOT to be copied over to release 0.99.5
------------------------------------------------------------------------
r20468 | lego | 2007-01-17 19:13:10 -0800 (Wed, 17 Jan 2007) | 2 lines
Changed paths:
M /trunk/version_info.c
the version string stated "without Lua" regardless or not Lua support was indeed built.
------------------------------------------------------------------------
r20469 | lego | 2007-01-17 19:17:33 -0800 (Wed, 17 Jan 2007) | 4 lines
Changed paths:
M /trunk/gtk/Makefile.common
not for 0.99.5
add macro_dlg.h and macro_dlg.c
------------------------------------------------------------------------
r20470 | lego | 2007-01-17 19:21:22 -0800 (Wed, 17 Jan 2007) | 4 lines
Changed paths:
M /trunk/gtk/Makefile.am
NOT for 0.99.5
macro_dlg.h was in this other file!
------------------------------------------------------------------------
r20471 | jake | 2007-01-17 23:10:02 -0800 (Wed, 17 Jan 2007) | 2 lines
Changed paths:
M /trunk/gtk/Makefile.am
Trying to get buildbot Ubuntu-5.10-x86 to build again.
Fix typo.
------------------------------------------------------------------------
r20472 | martinm | 2007-01-18 03:02:26 -0800 (Thu, 18 Jan 2007) | 6 lines
Changed paths:
M /trunk/epan/dfilter/semcheck.c
M /trunk/epan/dissectors/packet-catapult-dct2000.c
M /trunk/epan/dissectors/packet-ncp2222.inc
M /trunk/epan/dissectors/packet-smb-sidsnooping.c
M /trunk/epan/dissectors/packet-text-media.c
M /trunk/epan/ftypes/ftype-bytes.c
M /trunk/epan/ftypes/ftype-double.c
M /trunk/epan/ftypes/ftype-guid.c
M /trunk/epan/ftypes/ftype-integer.c
M /trunk/epan/ftypes/ftype-ipv4.c
M /trunk/epan/ftypes/ftype-none.c
M /trunk/epan/ftypes/ftype-pcre.c
M /trunk/epan/ftypes/ftype-string.c
M /trunk/epan/ftypes/ftype-time.c
M /trunk/epan/ftypes/ftype-tvbuff.c
M /trunk/epan/ftypes/ftypes.c
M /trunk/epan/ftypes/ftypes.h
M /trunk/epan/proto.c
M /trunk/epan/wslua/wslua_field.c
M /trunk/file.c
M /trunk/gtk/io_stat.c
M /trunk/gtk/proto_draw.c
M /trunk/gtk/rtp_analysis.c
M /trunk/print.c
M /trunk/tap-iostat.c
M /trunk/wiretap/catapult_dct2000.c
Add separate union entries to fvalue.value for signed and unsigned
32-bit numbers. Separate signed and unsigned accessors have been
added and used where appropriate.
Definitely not for 0.99.5.
------------------------------------------------------------------------
r20473 | jake | 2007-01-18 03:28:47 -0800 (Thu, 18 Jan 2007) | 2 lines
Changed paths:
M /trunk/epan/dfilter/Makefile.am
Trying to fix the build on Ubuntu-5.10-x86 buildbot again.
------------------------------------------------------------------------
r20474 | martinm | 2007-01-18 03:44:24 -0800 (Thu, 18 Jan 2007) | 2 lines
Changed paths:
M /trunk/epan/ftypes/ftype-pcre.c
Missed this one (I don't build with pcre)
------------------------------------------------------------------------
r20475 | guy | 2007-01-18 04:19:17 -0800 (Thu, 18 Jan 2007) | 2 lines
Changed paths:
M /trunk/AUTHORS
M /trunk/wiretap/AUTHORS
M /trunk/wiretap/snoop.c
From Clay Jones: Shomiti wireless packet support.
------------------------------------------------------------------------
r20476 | jake | 2007-01-18 04:22:21 -0800 (Thu, 18 Jan 2007) | 2 lines
Changed paths:
M /trunk/doc/README.plugins
Improve information on building plugins.
------------------------------------------------------------------------
r20477 | martinm | 2007-01-18 05:13:55 -0800 (Thu, 18 Jan 2007) | 2 lines
Changed paths:
M /trunk/epan/ftypes/ftype-pcre.c
Remove extra element.
------------------------------------------------------------------------
r20478 | lego | 2007-01-18 06:04:49 -0800 (Thu, 18 Jan 2007) | 3 lines
Changed paths:
M /trunk/Makefile.am
M /trunk/version_info.c
Fix version_info.c compilation
------------------------------------------------------------------------
r20479 | martinm | 2007-01-18 06:41:59 -0800 (Thu, 18 Jan 2007) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-udld.c
Filled in missing hf entries.
------------------------------------------------------------------------
r20480 | lego | 2007-01-18 06:56:03 -0800 (Thu, 18 Jan 2007) | 3 lines
Changed paths:
A /trunk/epan/dfilter/dfilter_macro_expand.l
The forgotten file strikes back...
------------------------------------------------------------------------
r20481 | lego | 2007-01-18 07:00:39 -0800 (Thu, 18 Jan 2007) | 3 lines
Changed paths:
M /trunk/epan/dfilter/Makefile.nmake
D /trunk/epan/dfilter/dfilter_macro_expand.l
I actually forgot that dfilter_macro_expand.l was not used
------------------------------------------------------------------------
r20482 | lego | 2007-01-18 07:32:01 -0800 (Thu, 18 Jan 2007) | 2 lines
Changed paths:
M /trunk/epan/dfilter/Makefile.nmake
fix the dfilter_macro_load.c rule
------------------------------------------------------------------------
r20483 | jake | 2007-01-18 08:36:10 -0800 (Thu, 18 Jan 2007) | 2 lines
Changed paths:
M /trunk/epan/libwireshark.def
Export the split fvalue_get_integer as fvalue_get_uinteger and fvalue_get_sinteger
------------------------------------------------------------------------
r20484 | guy | 2007-01-18 10:41:46 -0800 (Thu, 18 Jan 2007) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-ssl.c
guint32 requires %[doxu], not %l[doxu]. (We don't support ILP16
platforms, just ILP32, LP64, and LLP64.)
------------------------------------------------------------------------
r20485 | guy | 2007-01-18 10:43:30 -0800 (Thu, 18 Jan 2007) | 15 lines
Changed paths:
M /trunk/epan/addr_and_mask.h
M /trunk/epan/addr_resolv.h
M /trunk/epan/address.h
M /trunk/epan/afn.h
M /trunk/epan/aftypes.h
M /trunk/epan/arcnet_pids.h
M /trunk/epan/arptypes.h
M /trunk/epan/atalk-utils.h
M /trunk/epan/bitswap.h
M /trunk/epan/bridged_pids.h
M /trunk/epan/camel-persistentdata.h
M /trunk/epan/chdlctypes.h
M /trunk/epan/circuit.h
M /trunk/epan/column-utils.h
M /trunk/epan/column.h
M /trunk/epan/column_info.h
M /trunk/epan/conversation.h
M /trunk/epan/crc16.h
M /trunk/epan/crc32.h
M /trunk/epan/packet.h
M /trunk/epan/proto.h
M /trunk/wiretap/wtap.h
Put
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
...
#ifdef __cplusplus
}
#endif /* __cplusplus */
wrappers into some header files, for the benefit of C++ plugins. Also,
add multiple-include protections.
------------------------------------------------------------------------
r20486 | jake | 2007-01-18 12:21:35 -0800 (Thu, 18 Jan 2007) | 1 line
Changed paths:
M /trunk/epan/libwireshark.def
Trying to get buildbot Windows-XP-x86 to build again.
------------------------------------------------------------------------
r20489 | sfisher | 2007-01-18 12:53:24 -0800 (Thu, 18 Jan 2007) | 6 lines
Changed paths:
M /trunk/gtk/column_prefs.c
Change save & restart requirement sentence in column preferences to say just
that you must restart wireshark for the changes to take effect. The sentence
used to say to hit the save button first, which is now gone by default.
------------------------------------------------------------------------
r20490 | morriss | 2007-01-18 14:06:56 -0800 (Thu, 18 Jan 2007) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-mtp3.c
Add a preference (defaulted to off) to have the MTP3 dissector show the priority (which is a national option in ITU) of MSUs.
------------------------------------------------------------------------
r20491 | ulfl | 2007-01-18 15:57:03 -0800 (Thu, 18 Jan 2007) | 4 lines
Changed paths:
M /trunk/docbook/Makefile
the docbook generation also suffers from the cygwin bash CR/LF problem :-(
I've added a call to dos2unix to convert check_svn_version.sh that way
Is it safe to assume that dos2unix is available on a common UNIX developer machine?!?
------------------------------------------------------------------------
r20492 | ulfl | 2007-01-18 16:10:22 -0800 (Thu, 18 Jan 2007) | 1 line
Changed paths:
M /trunk/packaging/nsis/Makefile.nmake
M /trunk/packaging/nsis/wireshark.nsi
instead of getting the user-guide.chm file always from the docbook dir, copy the more recent one from docbook or win32-libs\user-guide dir into local nsis dir, and use that one to build the installer - seems to be the cleanest way
------------------------------------------------------------------------
r20493 | ulfl | 2007-01-18 16:12:01 -0800 (Thu, 18 Jan 2007) | 1 line
Changed paths:
M /trunk/docbook/Makefile
add a target to build a zipped version of user-guide.chm
------------------------------------------------------------------------
r20494 | ulfl | 2007-01-18 16:14:43 -0800 (Thu, 18 Jan 2007) | 1 line
Changed paths:
M /trunk/docbook/Makefile
add user-guide.zip to the clean target
------------------------------------------------------------------------
r20495 | ulfl | 2007-01-18 17:10:59 -0800 (Thu, 18 Jan 2007) | 1 line
Changed paths:
M /trunk/Makefile.nmake
M /trunk/tools/win32-setup.sh
add the user-guide as a component to the setup target
------------------------------------------------------------------------
r20496 | ulfl | 2007-01-18 17:21:17 -0800 (Thu, 18 Jan 2007) | 2 lines
Changed paths:
M /trunk/config.nmake
user-guide final step:
enable HHC_DIR as default, hopefully the buildbot will "get it right" now :-)
------------------------------------------------------------------------
r20497 | ulfl | 2007-01-18 18:41:25 -0800 (Thu, 18 Jan 2007) | 4 lines
Changed paths:
M /trunk/Makefile.nmake
As discussed on the devlist:
A clean_setup is done first now to ensure that the target dirs don't contain old files - probably remaining from a previous setup run.
explicit removing of the gtk2 dir is no longer required therefore
------------------------------------------------------------------------
r20498 | guy | 2007-01-18 21:22:43 -0800 (Thu, 18 Jan 2007) | 2 lines
Changed paths:
M /trunk/wiretap/wtap.h
Put in some information about RSSI.
------------------------------------------------------------------------
r20500 | gerald | 2007-01-18 22:34:07 -0800 (Thu, 18 Jan 2007) | 2 lines
Changed paths:
M /trunk/make-version.pl
Set our package version even if we're using the SVN client.
------------------------------------------------------------------------
r20501 | grahamb | 2007-01-19 08:20:48 -0800 (Fri, 19 Jan 2007) | 1 line
Changed paths:
M /trunk
M /trunk/epan
M /trunk/epan/wslua
M /trunk/image
M /trunk/packaging/nsis
M /trunk/plugins/agentx
M /trunk/plugins/artnet
M /trunk/plugins/asn1
M /trunk/plugins/ciscosm
M /trunk/plugins/docsis
M /trunk/plugins/enttec
M /trunk/plugins/gryphon
M /trunk/plugins/h223
M /trunk/plugins/irda
M /trunk/plugins/lwres
M /trunk/plugins/mate
M /trunk/plugins/megaco
M /trunk/plugins/mgcp
M /trunk/plugins/opsi
M /trunk/plugins/pcli
M /trunk/plugins/profinet
M /trunk/plugins/rlm
M /trunk/plugins/rtnet
M /trunk/plugins/rudp
M /trunk/plugins/sbus
M /trunk/plugins/stats_tree
M /trunk/plugins/v5ua
Updated svn:ignore props for win32 build artifacts
------------------------------------------------------------------------
r20502 | morriss | 2007-01-19 09:25:13 -0800 (Fri, 19 Jan 2007) | 10 lines
Changed paths:
M /trunk/epan/dissectors/packet-sccp.c
Reindent pretty heavily. It's still not 100% consistent but at least all the
code in each function is consistent (previously there were some sections of
code indented, oh, about 10 indentations too far). At the same time, remove
trailing white space and change spaces to tabs.
Remove one duplicated call to sccp_assoc() and s/isup_apm/sccp/g in the hf[]
array (apparently when the XUDT reassembly was put in it was copied from ISUP
but the filter names weren't changed).
------------------------------------------------------------------------
r20505 | morriss | 2007-01-19 15:27:24 -0800 (Fri, 19 Jan 2007) | 9 lines
Changed paths:
M /trunk/epan/dissectors/packet-sccp.c
M /trunk/epan/reassemble.c
M /trunk/epan/reassemble.h
Fix the SCCP dissector so it doesn't show non-segmented DT1 messages as
having been reassembled.
Fix the comments in reassembly.c and reassembly.h regarding what the reassembly
routines actually return in the 802.11 and no-sequence-number cases when they
are given the first and last packet (that is, a non-segmented packet): in
particular the routines return a pointer to a list containing just the one
fragment.
------------------------------------------------------------------------
r20506 | jake | 2007-01-19 15:56:42 -0800 (Fri, 19 Jan 2007) | 12 lines
Changed paths:
M /trunk/epan/dissectors/packet-ip.c
From Paul Moore:
This patch adds support for the IPv4 Commercial IP Security Option (CIPSO) as
defined in the IETF draft, draft-ietf-cipso-ipsecurity-01.txt. While this
draft has long since expired, it has become a de-facto standard for labeled
networking with support from several commercial Multi-Level Security (MLS)
operating systems such as HP-UX CMW and Trusted Solaris; in addition, Linux
Kernels 2.6.19 and later provide support for CIPSO in conjunction with
SELinux.
Copies of the expired CIPSO draft can be found at the NetLabel project page:
* http://netlabel.sf.net
------------------------------------------------------------------------
r20507 | gerald | 2007-01-19 18:05:49 -0800 (Fri, 19 Jan 2007) | 9 lines
Changed paths:
M /trunk/gtk/about_dlg.c
M /trunk/gtk/dlg_utils.c
M /trunk/gtk/dlg_utils.h
M /trunk/gtk/simple_dialog.c
Recent versions of GTK+ have added a "gtk-label-select-on-focus"
property, which selects the entire contents of a label when it comes
into focus. This property annoyingly defaults to TRUE, which meant that
the labels in simple dialogs and the about box would unexpectedly show
up selected.
Work around this by setting the focus on the "OK" button in the about
dialog and the first button specified in simple dialogs.
------------------------------------------------------------------------
r20508 | jake | 2007-01-20 06:08:05 -0800 (Sat, 20 Jan 2007) | 2 lines
Changed paths:
M /trunk/gtk/dlg_utils.c
Trying to get buildbot Windows-XP-x86 to build again.
Reverting GTK2 to GTK1.2 functionname
------------------------------------------------------------------------
r20509 | jake | 2007-01-20 08:46:42 -0800 (Sat, 20 Jan 2007) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-eth.c
M /trunk/epan/dissectors/packet-ethertype.c
From Graeme Hewson:
The attached patch adds Homeplug to the table of ethernet types.
------------------------------------------------------------------------
r20510 | ulfl | 2007-01-20 09:52:39 -0800 (Sat, 20 Jan 2007) | 9 lines
Changed paths:
M /trunk/gtk/graph_analysis.c
from Stephen Fisher:
A user asked what file format the flow graph is saved as, which isn't
apparent by looking at the dialog. I had to try saving a file and check
its type -- plain text file. Could someone please apply the attached
patch or similar change to graph_analysis.c. My patch updates the title
of the dialog box from "Wireshark: Save graph to file" to "Wireshark:
Save graph to text file".
However, I used the term "plain text file" instead ;-)
------------------------------------------------------------------------
r20511 | etxrab | 2007-01-20 13:45:38 -0800 (Sat, 20 Jan 2007) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-l2tp.c
Update some value strings.
------------------------------------------------------------------------
r20512 | sfisher | 2007-01-20 15:23:50 -0800 (Sat, 20 Jan 2007) | 7 lines
Changed paths:
M /trunk/gtk/packet_list.c
Fix a bug where the size of each column was being computed with the GTK+
default font of Sans 10 instead of the setting in Wireshark (such as
Monospace 10). On some systems this bug was causing the contents of columns
such as the command line specified (CLS) time to be cut off.
------------------------------------------------------------------------
r20513 | ulfl | 2007-01-20 20:48:49 -0800 (Sat, 20 Jan 2007) | 3 lines
Changed paths:
M /trunk/docbook/Makefile
M /trunk/docbook/developer-guide.xml
M /trunk/docbook/wsdg_src/WSDG_chapter_libraries.xml
A /trunk/docbook/wsdg_src/WSDG_chapter_quick_setup.xml
M /trunk/docbook/wsdg_src/WSDG_chapter_tools.xml
major redesign:
- add a chapter about a Win32 Quick Setup
- update MSVC information about Versions > 6
------------------------------------------------------------------------
r20514 | lego | 2007-01-21 09:05:33 -0800 (Sun, 21 Jan 2007) | 3 lines
Changed paths:
M /trunk/epan/wslua/wslua_gui.c
fix bug 1320
------------------------------------------------------------------------
r20515 | lego | 2007-01-21 09:06:16 -0800 (Sun, 21 Jan 2007) | 3 lines
Changed paths:
M /trunk/epan/wslua/template-init.lua
fix bug 1321
------------------------------------------------------------------------
r20516 | guy | 2007-01-21 14:28:54 -0800 (Sun, 21 Jan 2007) | 4 lines
Changed paths:
M /trunk/epan/dfilter/dfilter-macro.h
Set the appropriate keywords.
Add a newline at the end of the file.
------------------------------------------------------------------------
r20517 | guy | 2007-01-21 14:32:37 -0800 (Sun, 21 Jan 2007) | 2 lines
Changed paths:
M /trunk/epan/dfilter/dfilter-macro.c
M /trunk/epan/dfilter/dfilter_macro_load.l
Set the appropriate keywords.
------------------------------------------------------------------------
r20518 | sfisher | 2007-01-21 14:45:58 -0800 (Sun, 21 Jan 2007) | 8 lines
Changed paths:
M /trunk/epan/stats_tree.c
From Sebastien Tandel:
patch against a crash of wireshark with gtk1.2 when using packet
length statistics window. The crash was due to a difference of
implementation of g_strsplit between gtk1.2 and gtk2.
------------------------------------------------------------------------
r20519 | sfisher | 2007-01-21 15:02:07 -0800 (Sun, 21 Jan 2007) | 7 lines
Changed paths:
M /trunk/epan/dissectors/packet-frame.c
Change frame dissector to show "frame" instead of "packet" for all fields
for consistency. The frame.pkt_len filter is now deprecated, but still
supported as a hidden field for an easy transition. The new field name is
frame.len.
------------------------------------------------------------------------
r20520 | sfisher | 2007-01-21 15:36:53 -0800 (Sun, 21 Jan 2007) | 14 lines
Changed paths:
M /trunk/epan/dissectors/packet-bssap.c
From Tobias Witek:
I found a rare situation in which the BSSAP dissector seems to wrongly
assume a packet.
When a RANAP DirectTransfer message contains the GSM Supplementary
Service 'Call Confirmed' this seems to yield a message that the BSSAP
dissector recognizes as a BSSMAP BLOCK message (and from the perspective
of BSSAP, this is perfectly correct).
My patch includes code that checks this very special case.
------------------------------------------------------------------------
r20521 | guy | 2007-01-21 15:45:36 -0800 (Sun, 21 Jan 2007) | 17 lines
Changed paths:
M /trunk/airpcap_loader.c
M /trunk/airpcap_loader.h
M /trunk/capture-pcap-util-int.h
M /trunk/capture-pcap-util-unix.c
M /trunk/capture-pcap-util.c
M /trunk/capture-pcap-util.h
M /trunk/capture-wpcap.c
M /trunk/capture_opts.c
M /trunk/capture_ui_utils.c
M /trunk/gtk/capture_dlg.c
M /trunk/gtk/capture_if_dlg.c
M /trunk/gtk/capture_prefs.c
M /trunk/gtk/main.c
Have the routines to get interface lists take a pointer to a "gchar *"
as an argument, and, on an error, if they have an error message, have
them set that "gchar *" to point to a g_malloc()ed string containing the
error message, rather than taking a pointer to a buffer for that message
as an argument. That's more like what's done in Wiretap, and doesn't
impose an upper limit on the lengths of those error messages. If that
pointer is null, don't allocate the message string and return it.
Have that error message already have the "cant_get" processing applied
to it, so nobody other than those routines need to call the "cant_get"
routines to process the error messages.
Have get_airpcap_interface_list() explicitly set "*err" to the
appropriate error code.
Clean up indentation.
------------------------------------------------------------------------
r20522 | sfisher | 2007-01-21 16:20:33 -0800 (Sun, 21 Jan 2007) | 4 lines
Changed paths:
M /trunk/gtk/capture_file_dlg.c
M /trunk/gtk/decode_as_ber.c
M /trunk/gtk/expert_comp_table.c
M /trunk/gtk/firewall_dlg.c
M /trunk/gtk/proto_dlg.c
M /trunk/gtk/range_utils.c
Fix various compiler warnings
------------------------------------------------------------------------
r20523 | ulfl | 2007-01-21 20:03:17 -0800 (Sun, 21 Jan 2007) | 5 lines
Changed paths:
M /trunk/gtk/menu.c
as Bill Meier noted:
"The Help ! Contents and the Help ! User's Guide both display the User's
Guide."
Remove the duplicate Help!/User's Guide item
------------------------------------------------------------------------
r20524 | etxrab | 2007-01-22 13:32:17 -0800 (Mon, 22 Jan 2007) | 1 line
Changed paths:
M /trunk/epan/dfilter/Makefile.nmake
Add dfilter_macro_load.c to the distclean target to rebuild it if building from a tarball.
------------------------------------------------------------------------
r20526 | gerald | 2007-01-22 14:57:32 -0800 (Mon, 22 Jan 2007) | 2 lines
Changed paths:
M /trunk/config.nmake
M /trunk/configure.in
Bump the trunk version to 0.99.6.
------------------------------------------------------------------------
r20527 | gerald | 2007-01-22 17:25:57 -0800 (Mon, 22 Jan 2007) | 2 lines
Changed paths:
M /trunk/capture_errs.c
winpcap.mirror.wireshark.org doesn't exist, so remove it.
------------------------------------------------------------------------
r20528 | gerald | 2007-01-22 17:49:30 -0800 (Mon, 22 Jan 2007) | 3 lines
Changed paths:
M /trunk/capture_errs.c
Add a link to the Providence University WinPcap mirror, and a comment
linking to the WinPcap mirror page.
------------------------------------------------------------------------
r20529 | ulfl | 2007-01-23 00:12:20 -0800 (Tue, 23 Jan 2007) | 1 line
Changed paths:
M /trunk/docbook/wsdg_src/WSDG_chapter_quick_setup.xml
add correct link to vcredist_x86.exe
------------------------------------------------------------------------
r20530 | ulfl | 2007-01-23 00:20:59 -0800 (Tue, 23 Jan 2007) | 1 line
Changed paths:
M /trunk/packaging/nsis/wireshark.nsi
remove example_snmp_users_file at uninstall
------------------------------------------------------------------------
r20531 | sahlberg | 2007-01-23 01:38:41 -0800 (Tue, 23 Jan 2007) | 6 lines
Changed paths:
M /trunk/epan/dissectors/packet-iscsi.c
if DataSegmentLength is non zero for iscsi async messages the data segment contains
scsi sense information potentially followed by iscsi event data.
this is used by a target to tell an initiator (among other things) that the lun configuration has changed and now is a good time to rescan the target for lun changes.
------------------------------------------------------------------------
r20532 | guy | 2007-01-23 10:31:26 -0800 (Tue, 23 Jan 2007) | 4 lines
Changed paths:
M /trunk/epan/proto.c
DISSECTOR_ASSERT_NOT_REACHED() now, by default, throws a Wireshark
exception rather than aborting the program; using it means that
dissector bugs show up as such rather than as malformed packets.
------------------------------------------------------------------------
r20533 | lego | 2007-01-23 11:46:55 -0800 (Tue, 23 Jan 2007) | 3 lines
Changed paths:
M /trunk/gtk/Makefile.am
Have build succeed even if portaudio is located somewhere else than any other libraries in use.
------------------------------------------------------------------------
r20534 | lego | 2007-01-23 11:56:10 -0800 (Tue, 23 Jan 2007) | 3 lines
Changed paths:
M /trunk/example_snmp_users_file
Add a shord description on how the snmp_users_file can be used
------------------------------------------------------------------------
r20535 | gerald | 2007-01-23 12:12:09 -0800 (Tue, 23 Jan 2007) | 3 lines
Changed paths:
M /trunk/airpcap_loader.h
M /trunk/gtk/capture_dlg.c
M /trunk/gtk/capture_if_dlg.c
M /trunk/gtk/main.c
Propagate the recent interface list changes (r20521) to the AirPcap code.
Fix a mismatched declaration found by Gisle Vanem.
------------------------------------------------------------------------
r20536 | sahlberg | 2007-01-23 12:49:57 -0800 (Tue, 23 Jan 2007) | 4 lines
Changed paths:
M /trunk/epan/dissectors/packet-scsi-sbc.c
some iscsi/scsi initiators still use the ancient sbc1 commandset so add RESERVE6/RELEASE6 to the SBC dissector
------------------------------------------------------------------------
r20537 | sahlberg | 2007-01-23 12:59:50 -0800 (Tue, 23 Jan 2007) | 4 lines
Changed paths:
M /trunk/epan/dissectors/packet-scsi-sbc.c
add the obsolete RESERVE10/RELEASE10 to the sbc dissector
------------------------------------------------------------------------
r20538 | ulfl | 2007-01-23 13:19:46 -0800 (Tue, 23 Jan 2007) | 1 line
Changed paths:
M /trunk/docbook/Makefile
fix problem "no target to build user-guide.zip"
------------------------------------------------------------------------
r20539 | lego | 2007-01-23 15:34:41 -0800 (Tue, 23 Jan 2007) | 5 lines
Changed paths:
M /trunk/epan/wslua/wslua_pinfo.c
M /trunk/epan/wslua/wslua_tvb.c
tvb:range did not appear under Tvb in generated refman
pinfo.curr_proto appeared as pinfo.match
pinfo.columns in the refman was pinfo.cols in lua (now it is both in lua and in refman)
------------------------------------------------------------------------
r20540 | lego | 2007-01-23 15:36:28 -0800 (Tue, 23 Jan 2007) | 3 lines
Changed paths:
M /trunk/epan/wslua/wslua_tvb.c
add range to the metatable of Tvb.
------------------------------------------------------------------------
r20541 | gerald | 2007-01-23 17:06:24 -0800 (Tue, 23 Jan 2007) | 2 lines
Changed paths:
M /trunk/epan/wslua/wslua_tvb.c
Fix compilation (under Windows, at least).
------------------------------------------------------------------------
r20542 | gerald | 2007-01-23 17:16:45 -0800 (Tue, 23 Jan 2007) | 4 lines
Changed paths:
M /trunk/gtk/capture_if_details_dlg.c
Instead of checking for WinPcap 4.x versions, assume that if the version
is greater than 3 we can get detailed interface information. This should
limit the amount of work we have to do when new WinPcap releases come out.
------------------------------------------------------------------------
r20543 | gerald | 2007-01-23 17:17:48 -0800 (Tue, 23 Jan 2007) | 3 lines
Changed paths:
M /trunk/airpcap_loader.c
It's not an error if we don't find any AirPcap interfaces when AirPcap isn't
loaded.
------------------------------------------------------------------------
r20544 | sfisher | 2007-01-23 20:57:32 -0800 (Tue, 23 Jan 2007) | 6 lines
Changed paths:
M /trunk/epan/dissectors/packet-tacacs.c
Fix for bug #1308: tacacs decoding fails. Introduce TCP desegmentation for
data after the fixed length header as some implementations may not send
the header and payload in the same segment.
------------------------------------------------------------------------
r20545 | lego | 2007-01-24 09:19:44 -0800 (Wed, 24 Jan 2007) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-h248_q1950.c
dissect SDP encapsulated inside an Q1950 annex A.7 paramenter of H248
------------------------------------------------------------------------
r20546 | gerald | 2007-01-24 11:22:13 -0800 (Wed, 24 Jan 2007) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-ieee80211.c
Fix Coverity CID 230: Make sure we handle a negative tvb_length_remaining()
value correctly. Fix up indentation.
------------------------------------------------------------------------
r20547 | gerald | 2007-01-24 11:27:49 -0800 (Wed, 24 Jan 2007) | 2 lines
Changed paths:
M /trunk/NEWS
Update the NEWS file.
------------------------------------------------------------------------
r20548 | guy | 2007-01-24 15:30:23 -0800 (Wed, 24 Jan 2007) | 6 lines
Changed paths:
M /trunk/util.c
When parsing DISPLAY, mirror what __X11TransConnectDisplay() does - and
handle the case where the "host name" begins with "/", as some platforms
might allow the pathname of a UNIX domain socket to be given in DISPLAY.
Fix indentation of a comment.
------------------------------------------------------------------------
r20549 | gerald | 2007-01-24 17:24:14 -0800 (Wed, 24 Jan 2007) | 4 lines
Changed paths:
M /trunk/epan/crypt/airpdcap.c
M /trunk/epan/dissectors/packet-ieee80211.c
M /trunk/epan/strutil.c
Fix a key preference crash bug. Improve WPA passphrase and SSID length
handling. Free a byte array. Squelch a compiler warning. Fix a URI
string parsing bug.
------------------------------------------------------------------------
r20550 | gerald | 2007-01-24 18:54:14 -0800 (Wed, 24 Jan 2007) | 5 lines
Changed paths:
M /trunk/gtk/filter_dlg.c
Fix Coverity CIDs 217 and 218, and fix filter dialog autoselection in
the process. This change assumes that you can make a copy of a
GtkTreeIter and use it later (which may not be valid), and hasn't been
tested using GTK 1.
------------------------------------------------------------------------
r20551 | gerald | 2007-01-24 22:45:09 -0800 (Wed, 24 Jan 2007) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-scsi.c
Attempt to squelch Coverity CID 222.
------------------------------------------------------------------------
r20552 | gerald | 2007-01-24 22:51:30 -0800 (Wed, 24 Jan 2007) | 2 lines
Changed paths:
M /trunk/epan/emem.c
Squelch Coverity CIDs 225, 226, and 227.
------------------------------------------------------------------------
r20553 | gerald | 2007-01-24 23:06:47 -0800 (Wed, 24 Jan 2007) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-dcp-etsi.c
Remove dead code. Fixes Coverity CID 228. Squelch various compiler warnings.
------------------------------------------------------------------------
r20554 | jake | 2007-01-24 23:42:10 -0800 (Wed, 24 Jan 2007) | 5 lines
Changed paths:
M /trunk/plugins/h223/Makefile.nmake
M /trunk/plugins/h223/plugin.rc.in
Modification of version resource.
- FILEFLAGS should not contain VS_FF_SPECIAL_BUILD
- FILEOS changed to VOS_NT_WINDOWS32 since we no longer support pre-NT platforms
- Adding Comments string to include compiler, based on MSVC_VARIANT symbol
------------------------------------------------------------------------
r20555 | gal | 2007-01-25 09:37:54 -0800 (Thu, 25 Jan 2007) | 10 lines
Changed paths:
M /trunk/packaging/u3/win32/makefile.nmake
M /trunk/packaging/u3/win32/manifest.tmpl
Update manifest file (template) to:
a) remove schema reference
b) assign new GUID for 0.99.6
Update makefile.nmake to:
a) include user-guide.chm - user-guide.chm is copied from the nsis packaging directory
b) include the example_snmp_users_file
c) other tidy-ups
------------------------------------------------------------------------
r20556 | sfisher | 2007-01-25 12:47:37 -0800 (Thu, 25 Jan 2007) | 4 lines
Changed paths:
M /trunk/epan/proto.h
Fix indentation of field_info struct definition
------------------------------------------------------------------------
r20557 | sfisher | 2007-01-25 13:07:29 -0800 (Thu, 25 Jan 2007) | 5 lines
Changed paths:
M /trunk/docbook/wsdg_src/WSDG_chapter_quick_setup.xml
Remove extra space from a call .cmd file command line so it can be copied
and pasted out of the guide
------------------------------------------------------------------------
r20558 | sfisher | 2007-01-25 15:00:29 -0800 (Thu, 25 Jan 2007) | 7 lines
Changed paths:
M /trunk/proto_hier_stats.c
Fix for bug #1325: Protocol hierarchy display shows an empty line because of
the hop-by-hop option header tree in the main protocol tree. This fix skips
those entries that don't have a name assigned to them and goes on to the next
entry before adding it to the protocol hierarchy display.
------------------------------------------------------------------------
r20559 | wmeier | 2007-01-25 17:34:29 -0800 (Thu, 25 Jan 2007) | 2 lines
Changed paths:
M /trunk/config.h.win32
M /trunk/epan/dissectors/packet-dcp-etsi.c
M /trunk/epan/dissectors/packet-ssl.c
M /trunk/epan/ftypes/Makefile.nmake
M /trunk/epan/wslua/template-init.lua
M /trunk/version_info.c
M /trunk/version_info.h
A few more ethereal --> wireshark
------------------------------------------------------------------------
r20560 | gerald | 2007-01-25 22:34:05 -0800 (Thu, 25 Jan 2007) | 2 lines
Changed paths:
M /trunk/gtk/airpcap_dlg.c
Massive indentation fixes.
------------------------------------------------------------------------
r20561 | gerald | 2007-01-25 22:45:12 -0800 (Thu, 25 Jan 2007) | 2 lines
Changed paths:
M /trunk/airpcap_loader.c
M /trunk/airpcap_loader.h
M /trunk/gtk/airpcap_gui_utils.c
Spelling fixes.
------------------------------------------------------------------------
r20562 | jmayer | 2007-01-26 00:09:20 -0800 (Fri, 26 Jan 2007) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-tftp.c
If there is just a tftp response without a prior request,
dissection would fail with dissector assert.
------------------------------------------------------------------------
r20563 | martinm | 2007-01-26 02:40:34 -0800 (Fri, 26 Jan 2007) | 2 lines
Changed paths:
M /trunk/diameter/dictionary.xml
Fix bugs 1330 & 1333 (one wrong and one missing entry in XML description)
------------------------------------------------------------------------
r20564 | martinm | 2007-01-26 03:31:51 -0800 (Fri, 26 Jan 2007) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-cops.c
Make COPS dissector findable by name
------------------------------------------------------------------------
r20565 | kukosa | 2007-01-26 04:08:45 -0800 (Fri, 26 Jan 2007) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-ssl.c
TLS 1.0/1.1 just ignores unknown records - RFC 2246 chapter 6. The TLS Record Protocol
(some implementations use it like "keepalive")
------------------------------------------------------------------------
r20566 | martinm | 2007-01-26 04:14:06 -0800 (Fri, 26 Jan 2007) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-cops.c
Use previously unused hf_cops_obj_c_type (cops.c_type) field
------------------------------------------------------------------------
r20567 | lego | 2007-01-26 07:10:47 -0800 (Fri, 26 Jan 2007) | 7 lines
Changed paths:
M /trunk/radius/dictionary.redback
form Florian Lohoff
here is an addition to the redback radius dictionary - Attributes seen
in all authentications for PPPoE sessions ...
------------------------------------------------------------------------
r20568 | jake | 2007-01-26 09:06:17 -0800 (Fri, 26 Jan 2007) | 7 lines
Changed paths:
M /trunk/epan/dissectors/packet-scsi.c
From Patrick vd Lageweg:
This patch fixes three problems with the SCSI persistent reserve in command:
- The Additional length starts at offset 4 and not 0
- The len field contains the length used by the keys and doesn't include the header length.
So don't substract the header length from the length.
- The key list is traversed from the beginning to end end and not the other way around.
------------------------------------------------------------------------
r20569 | jake | 2007-01-26 09:12:00 -0800 (Fri, 26 Jan 2007) | 14 lines
Changed paths:
M /trunk/doc/README.developer
M /trunk/docbook/wsdg_src/WSDG_chapter_dissection.xml
From Graham Bloice:
In the Developers Guide, Section 9.3, Example 9.17. Decompressing data
packets for dissection
The code calls tvb_set_free_cb() for the newly created next_tvb. This
is unnecessary as the call to tvb_set_child_real_data() adds next_tvb to
the chained list of tvb, thus ensuring that next_tvb is correctly
deleted. In fact when I had the call in, Visual Studio kept breaking