forked from wireshark/wireshark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
5701 lines (4368 loc) · 225 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
------------------------------------------------------------------------
r18953 | guy | 2006-08-18 17:24:40 -0700 (Fri, 18 Aug 2006) | 2 lines
Changed paths:
M /trunk/Makefile.nmake
Fix cut-and-pasteo.
------------------------------------------------------------------------
r18954 | guy | 2006-08-18 19:56:16 -0700 (Fri, 18 Aug 2006) | 2 lines
Changed paths:
M /trunk/asn1/ldap/packet-ldap-template.c
M /trunk/epan/dissectors/packet-ldap.c
Squelch a compiler warning.
------------------------------------------------------------------------
r18955 | guy | 2006-08-18 19:58:48 -0700 (Fri, 18 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-gsm_sms.c
Define "char_def_alphabet_ext_decode()" with a return type - and define
it as static as it's not used outside this file.
------------------------------------------------------------------------
r18956 | guy | 2006-08-18 20:00:16 -0700 (Fri, 18 Aug 2006) | 2 lines
Changed paths:
M /trunk/epan/guid-utils.c
Squelch a compiler warning.
------------------------------------------------------------------------
r18957 | guy | 2006-08-18 20:01:15 -0700 (Fri, 18 Aug 2006) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-dcom.c
Fix some format strings and format string arguments.
------------------------------------------------------------------------
r18958 | guy | 2006-08-18 20:01:53 -0700 (Fri, 18 Aug 2006) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-dcom-cba-acco.c
Fix some g_warning() calls.
------------------------------------------------------------------------
r18959 | sahlberg | 2006-08-19 02:22:20 -0700 (Sat, 19 Aug 2006) | 4 lines
Changed paths:
M /trunk/epan/dissectors/packet-windows-common.c
M /trunk/epan/dissectors/packet-windows-common.h
add some well known rids from s4 security.idl and code to show the name of this rid
when dissecting a security descriptor
------------------------------------------------------------------------
r18960 | etxrab | 2006-08-19 14:42:25 -0700 (Sat, 19 Aug 2006) | 1 line
Changed paths:
M /trunk/plugins/megaco/packet-megaco.c
Improve parsing a bit and correctly dissect errorDescriptor in Reply.
------------------------------------------------------------------------
r18961 | gerald | 2006-08-19 18:19:56 -0700 (Sat, 19 Aug 2006) | 2 lines
Changed paths:
M /trunk/airpcap_loader.c
Make sure a preference exists before we try to use it.
------------------------------------------------------------------------
r18964 | sahlberg | 2006-08-19 22:18:10 -0700 (Sat, 19 Aug 2006) | 4 lines
Changed paths:
M /trunk/epan/dissectors/packet-tcp.c
we have to search for multisegments starting PRIOR to the start of the current semgent or elsae it will break for the case when one multisegment ends in this segment there are a few smaller ones completely within this segment and then another segment starts that spans across future segments.
------------------------------------------------------------------------
r18965 | sahlberg | 2006-08-19 23:00:16 -0700 (Sat, 19 Aug 2006) | 7 lines
Changed paths:
M /trunk/asn1/ldap/packet-ldap-template.c
M /trunk/epan/dissectors/packet-ldap.c
in LDAP over TCP
use tcp_dissect_pdus() which works insterad of trying to do the pdu tracking and signalling for reassembly manually.
This makes ldap pdu tracking and reassembly work properly for cases when hosts are streaming lpad over tcp and there is little or none alignlemt of pdus to the start of a segment
------------------------------------------------------------------------
r18966 | etxrab | 2006-08-20 14:18:43 -0700 (Sun, 20 Aug 2006) | 1 line
Changed paths:
M /trunk/asn1/h245/h245-exp.cnf
M /trunk/asn1/h245/h245.cnf
M /trunk/epan/dissectors/packet-h245.c
M /trunk/epan/dissectors/packet-h245.h
M /trunk/epan/libwireshark.def
M /trunk/plugins/megaco/packet-megaco.c
Dissect some more H.245 messages in MEGACO
------------------------------------------------------------------------
r18967 | sahlberg | 2006-08-21 04:26:34 -0700 (Mon, 21 Aug 2006) | 5 lines
Changed paths:
M /trunk/gtk/scsi_stat.c
make the scsi statistics dialogs easier to understand for scsi novices
explain what the commandsets refer to SBC==disk SSC=tape MMC=cd
------------------------------------------------------------------------
r18968 | martinm | 2006-08-21 04:41:32 -0700 (Mon, 21 Aug 2006) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-rtcp.c
Use FT_UINT_STRING for TBCP DENY reason-phrase
------------------------------------------------------------------------
r18969 | martinm | 2006-08-21 04:45:37 -0700 (Mon, 21 Aug 2006) | 1 line
Changed paths:
M /trunk/epan/proto.c
Make apply-as-filter strings work for FT_UINT_STRING (rather than using frame[...])
------------------------------------------------------------------------
r18970 | martinm | 2006-08-21 04:52:20 -0700 (Mon, 21 Aug 2006) | 1 line
Changed paths:
M /trunk/dtds/reginfo.dtd
The xmlns attribute isn't really part of the schema, so probably shouldn't be #REQUIRED (not that the XML dissector currently uses this property)
------------------------------------------------------------------------
r18971 | sahlberg | 2006-08-21 05:41:59 -0700 (Mon, 21 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-rpc.c
remove two hashtables and replace with binary trees
------------------------------------------------------------------------
r18972 | sahlberg | 2006-08-21 06:00:55 -0700 (Mon, 21 Aug 2006) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-3com-njack.c
M /trunk/epan/dissectors/packet-aim-chat.c
move a few arrays off the stack
------------------------------------------------------------------------
r18973 | sahlberg | 2006-08-21 06:05:18 -0700 (Mon, 21 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-tcp.c
get rid of a rotating buffer
------------------------------------------------------------------------
r18974 | sahlberg | 2006-08-21 06:32:07 -0700 (Mon, 21 Aug 2006) | 17 lines
Changed paths:
M /trunk/asn1/mms/mms-exp.cnf
M /trunk/asn1/mms/mms.asn
M /trunk/epan/dissectors/packet-mms.c
M /trunk/epan/dissectors/packet-mms.h
from Angel de Juan
make mms bitstrings easier to read
--
Hi, this is my new mms with some changes in order to display some data in
binary instead of hex.
Excuse me because is not a diff from the repository, but I don't know how to
create a diff.
I also have the compiled packet-mms.c and packet-mms.h if you want it only
mail me.
------------------------------------------------------------------------
r18975 | sahlberg | 2006-08-21 06:44:37 -0700 (Mon, 21 Aug 2006) | 3 lines
Changed paths:
M /trunk/asn1/mms/mms.cnf
M /trunk/epan/dissectors/packet-mms.c
prettify the MMS dissector by at least putting the pdu name in the info column
------------------------------------------------------------------------
r18976 | gerald | 2006-08-21 07:40:05 -0700 (Mon, 21 Aug 2006) | 5 lines
Changed paths:
M /trunk/gtk/menu.c
AirPcap fix from Florent Drouin:
Since version 18928, there is a GTK warning at wireshark startup.
I think a #ifdef HAVE_AIRPCAP is missing in ./gtk/menu.c
------------------------------------------------------------------------
r18978 | jmayer | 2006-08-21 09:16:01 -0700 (Mon, 21 Aug 2006) | 1 line
Changed paths:
M /trunk/manuf
Update manuf list
------------------------------------------------------------------------
r18979 | jmayer | 2006-08-21 09:17:24 -0700 (Mon, 21 Aug 2006) | 1 line
Changed paths:
M /trunk/FAQ
M /trunk/help/faq.txt
Update FAQ
------------------------------------------------------------------------
r18981 | gerald | 2006-08-21 12:22:33 -0700 (Mon, 21 Aug 2006) | 2 lines
Changed paths:
M /trunk/airpcap_loader.c
M /trunk/airpcap_loader.h
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
Fix up copyrights and whitespace.
------------------------------------------------------------------------
r18984 | etxrab | 2006-08-21 14:19:48 -0700 (Mon, 21 Aug 2006) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-bssap.c
From Florent Drouin:
This patch allow to change the value of the SSN associated to the bssap dissector.
------------------------------------------------------------------------
r18985 | etxrab | 2006-08-21 14:24:42 -0700 (Mon, 21 Aug 2006) | 4 lines
Changed paths:
M /trunk/epan/dissectors/packet-gsm_a.c
From Florent Drouin:
This patch provide a correction for the element "Channel Needed" in the Paging message. and some improvements for the display of AUTH,SRES,RAND etc..
With some further changes to APDU and LSA Identifier dissection.
------------------------------------------------------------------------
r18986 | etxrab | 2006-08-21 14:58:30 -0700 (Mon, 21 Aug 2006) | 2 lines
Changed paths:
M /trunk/asn1/camel/camel.asn
M /trunk/asn1/camel/camel.cnf
M /trunk/asn1/camel/packet-camel-template.c
M /trunk/epan/dissectors/packet-camel.c
From Florent Drouin:
This patch introduce the decoding of the RP-Cause element in the Release SMS message for Camel.
------------------------------------------------------------------------
r18987 | guy | 2006-08-21 16:06:40 -0700 (Mon, 21 Aug 2006) | 2 lines
Changed paths:
M /trunk/dumpcap.c
Add to a comment.
------------------------------------------------------------------------
r18988 | guy | 2006-08-21 16:23:22 -0700 (Mon, 21 Aug 2006) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-windows-common.c
Squelch a compiler warning.
------------------------------------------------------------------------
r18989 | guy | 2006-08-21 16:28:19 -0700 (Mon, 21 Aug 2006) | 13 lines
Changed paths:
M /trunk/capture_loop.c
M /trunk/capture_opts.c
M /trunk/tshark.c
Initialize the cfilter field of a capture_opts structure to a null
pointer, so we can determine whether a capture filter has been set or
not.
Use that to check in TShark whether the user specified a filter with
"-f" or not, rather than using the no-longer-set
"capture_filter_specified" variable.
Also, check for multiple "-f" options.
If no capture filter is specified, use a null string, to work around
broken versions of Linux libpcap.
------------------------------------------------------------------------
r18990 | guy | 2006-08-21 16:36:59 -0700 (Mon, 21 Aug 2006) | 3 lines
Changed paths:
M /trunk/doc/tshark.pod
Indicate in the synopsis that you can put the capture filter at the end
of the command line without "-f".
------------------------------------------------------------------------
r18991 | martinm | 2006-08-22 07:00:18 -0700 (Tue, 22 Aug 2006) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-iuup.c
Fix iuup.delta FT_ type mismatch
------------------------------------------------------------------------
r18992 | gerald | 2006-08-22 07:46:51 -0700 (Tue, 22 Aug 2006) | 8 lines
Changed paths:
M /trunk/epan/dissectors/packet-q2931.c
From Florent Drouin:
I found a loop in the q2931 dissector, whereas I was dissecting Ranap
Traces with a bad wireshark configuration.
Wireshark did crash, after eating all the memory.
Make other loop checks more paranoid.
------------------------------------------------------------------------
r18995 | gerald | 2006-08-22 08:55:42 -0700 (Tue, 22 Aug 2006) | 4 lines
Changed paths:
M /trunk/plugins/megaco/packet-megaco.c
Bail out of an infinite loop. Fixes bug 1048. (This was introduced after
the 0.99.3 trunk was created.) Remove a couple of static buffers. Fix up
whitespace.
------------------------------------------------------------------------
r18996 | ulfl | 2006-08-22 12:42:04 -0700 (Tue, 22 Aug 2006) | 1 line
Changed paths:
M /trunk/plugins/profinet/packet-pn-mrp.c
fix TLB block alignment to be compatible with the current MRP draft. Would be nice if included in the 0.99.3
------------------------------------------------------------------------
r18997 | ulfl | 2006-08-22 12:43:38 -0700 (Tue, 22 Aug 2006) | 1 line
Changed paths:
M /trunk/plugins/profinet/packet-pn-mrp.c
(slightly) further dissection of the Option (Organizationally specific) block
------------------------------------------------------------------------
r18998 | etxrab | 2006-08-22 12:55:31 -0700 (Tue, 22 Aug 2006) | 2 lines
Changed paths:
M /trunk/epan/dissectors/Makefile.common
A /trunk/epan/dissectors/packet-epl.c
A /trunk/epan/dissectors/packet-epl.h
M /trunk/epan/dissectors/packet-ethertype.c
M /trunk/epan/etypes.h
M /trunk/manuf
M /trunk/wka.tmpl
From David Buechi:
Add support for the ETHERNET Powerlink protocol
------------------------------------------------------------------------
r18999 | etxrab | 2006-08-22 13:39:20 -0700 (Tue, 22 Aug 2006) | 1 line
Changed paths:
M /trunk/asn1/rrlp/Makefile.nmake
M /trunk/asn1/umts_rrc/Makefile.nmake
M /trunk/asn1/umts_rrc_Internode-defs/Makefile.nmake
M /trunk/asn1/umts_rrc_ies/Makefile.nmake
M /trunk/asn1/umts_rrc_pdu_def/Makefile.nmake
Complete clean targets
------------------------------------------------------------------------
r19001 | sahlberg | 2006-08-23 00:41:43 -0700 (Wed, 23 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-epl.c
move the include for emem.h so that size_t is defined before emem.h is invoked
------------------------------------------------------------------------
r19002 | sahlberg | 2006-08-23 01:05:28 -0700 (Wed, 23 Aug 2006) | 6 lines
Changed paths:
M /trunk/asn1/snmp/snmp.cnf
M /trunk/epan/dissectors/packet-snmp.c
Counter64 should be a FT_UINT64 and not a FT_UINT32
fixes bug 1047
------------------------------------------------------------------------
r19003 | sahlberg | 2006-08-23 02:48:16 -0700 (Wed, 23 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-dns.c
testdrive the request/response README and implement request/response matching for DNS
------------------------------------------------------------------------
r19007 | jake | 2006-08-23 08:51:15 -0700 (Wed, 23 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-ntp.c
From Toralf Foerster (in bug 1044):
Add new primary sources, fix typo.
------------------------------------------------------------------------
r19008 | ulfl | 2006-08-23 14:19:02 -0700 (Wed, 23 Aug 2006) | 1 line
Changed paths:
M /trunk/gtk/capture_file_dlg.c
M /trunk/gtk/win32-file-dlg.c
fix #927: Win32: delete an existing file, if the user want's to overwrite a file and confirmed this already
------------------------------------------------------------------------
r19012 | gerald | 2006-08-24 09:19:49 -0700 (Thu, 24 Aug 2006) | 2 lines
Changed paths:
M /trunk/Makefile.am
Add missing files to the distribution.
------------------------------------------------------------------------
r19014 | gerald | 2006-08-24 09:23:32 -0700 (Thu, 24 Aug 2006) | 2 lines
Changed paths:
M /trunk/config.nmake
M /trunk/configure.in
Bump the version to 0.99.4.
------------------------------------------------------------------------
r19015 | gerald | 2006-08-24 09:29:49 -0700 (Thu, 24 Aug 2006) | 2 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/NEWS
M /trunk/docbook/release-notes.xml
Copy over files from the release.
------------------------------------------------------------------------
r19016 | etxrab | 2006-08-24 10:27:45 -0700 (Thu, 24 Aug 2006) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-gsm_a.c
M /trunk/epan/dissectors/packet-gsm_a.h
M /trunk/epan/dissectors/packet-gtp.c
Dissect 'User Location Information' IE and MS Time Zone' IE.
------------------------------------------------------------------------
r19017 | etxrab | 2006-08-24 12:01:01 -0700 (Thu, 24 Aug 2006) | 1 line
Changed paths:
M /trunk/asn1/Makefile.nmake
Add missing Clean target
------------------------------------------------------------------------
r19018 | etxrab | 2006-08-24 14:15:15 -0700 (Thu, 24 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-ansi_map.c
From Jeff Morriss:
however there's a bug in the ANSI MAP dissector
SSN preference code - it's deleting an ANSI SSN and adding an ITU one
------------------------------------------------------------------------
r19019 | etxrab | 2006-08-24 14:19:49 -0700 (Thu, 24 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/Makefile.common
M /trunk/epan/dissectors/packet-bssgp.c
A /trunk/epan/dissectors/packet-bssgp.h
M /trunk/epan/dissectors/packet-gsm_a.h
M /trunk/epan/dissectors/packet-gtp.c
BSSGP: Wrong length on IE and preparation to export IE dissection.
GSM_a: Add an if_def
GTP: Update comments
------------------------------------------------------------------------
r19020 | ulfl | 2006-08-24 14:40:53 -0700 (Thu, 24 Aug 2006) | 2 lines
Changed paths:
M /trunk/gtk/capture_if_dlg.c
M /trunk/gtk/capture_info_dlg.c
M /trunk/gtk/compat_macros.h
M /trunk/gtk/dlg_utils.c
M /trunk/gtk/help_dlg.c
M /trunk/gtk/help_dlg.h
M /trunk/gtk/toolbar.c
capture interfaces dialog: use capture stock icons instead of plain text buttons
capture info dialog: add a "Help" and use stock buttons
------------------------------------------------------------------------
r19021 | ulfl | 2006-08-24 14:44:30 -0700 (Thu, 24 Aug 2006) | 1 line
Changed paths:
M /trunk/gtk/capture_if_details_dlg.c
add WinPcap 4.0 beta 1 to the list of known and tested versions
------------------------------------------------------------------------
r19022 | gerald | 2006-08-24 15:05:26 -0700 (Thu, 24 Aug 2006) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-http.c
Make sure a string pointer exists before we try to use it. Fixes bug 1050.
------------------------------------------------------------------------
r19023 | etxrab | 2006-08-24 22:49:37 -0700 (Thu, 24 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/Makefile.common
A /trunk/epan/dissectors/packet-mp2t.c
From Erwin Rol:
this patch adds support for MPEG2 transport stream packets in RTP (type
MP2T). It currently dissects the headers of the MPEG2 packets
------------------------------------------------------------------------
r19024 | ulfl | 2006-08-25 00:24:58 -0700 (Fri, 25 Aug 2006) | 1 line
Changed paths:
M /trunk/Makefile.am
A /trunk/image/toolbar/capture_details_24.xpm
add a missing icon from yesterdays commit
------------------------------------------------------------------------
r19025 | ulfl | 2006-08-25 01:04:38 -0700 (Fri, 25 Aug 2006) | 6 lines
Changed paths:
M /trunk/gtk/color_dlg.c
ugly workaround for bug #699 (Up/Down buttons don't work properly)
After experimenting a bit, this is a GTK bug IMHO, I don't see a better way to simply use the GTK1.x code for now, which is working ok.
GTK2.4 was working properly, GTK2.6 and 2.8 has this bug, hopefully GTK2.10 will fix it again.
------------------------------------------------------------------------
r19026 | kukosa | 2006-08-25 01:07:26 -0700 (Fri, 25 Aug 2006) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-dtls.c
M /trunk/epan/dissectors/packet-ssl-utils.c
M /trunk/epan/dissectors/packet-ssl-utils.h
M /trunk/epan/dissectors/packet-ssl.c
M /trunk/epan/libwireshark.def
new ssl_dissector_add() function which can be called from another dissectors (similar to dissector_add())
------------------------------------------------------------------------
r19027 | guy | 2006-08-25 01:10:35 -0700 (Fri, 25 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-rpc.c
If the length of a GSS token is zero, it's a null token, and the opaque
data shouldn't be dissected.
------------------------------------------------------------------------
r19028 | kukosa | 2006-08-25 04:28:00 -0700 (Fri, 25 Aug 2006) | 1 line
Changed paths:
A /trunk/epan/dissectors/packet-ssl.h
commit forgotten file
------------------------------------------------------------------------
r19029 | ulfl | 2006-08-25 12:13:02 -0700 (Fri, 25 Aug 2006) | 1 line
Changed paths:
M /trunk/gtk/dlg_utils.c
fix bug #1057: remove "start" completely
------------------------------------------------------------------------
r19030 | ulfl | 2006-08-25 12:15:55 -0700 (Fri, 25 Aug 2006) | 1 line
Changed paths:
M /trunk/gtk/menu.c
don't put "..." in front of a menu item
------------------------------------------------------------------------
r19031 | ulfl | 2006-08-25 12:19:21 -0700 (Fri, 25 Aug 2006) | 1 line
Changed paths:
M /trunk/gtk/capture_dlg.c
don't show the "Wireless Settings" button if HAVE_AIRPCAP isn't defined
------------------------------------------------------------------------
r19032 | ulfl | 2006-08-25 13:02:57 -0700 (Fri, 25 Aug 2006) | 1 line
Changed paths:
M /trunk/docbook/Makefile
M /trunk/docbook/developer-guide.xml
M /trunk/docbook/user-guide.xml
D /trunk/docbook/wsdg_graphics/ethereal-capture-sync.dia
D /trunk/docbook/wsdg_graphics/ethereal-capture-sync.png
D /trunk/docbook/wsdg_graphics/ethereal-capture_internals.dia
D /trunk/docbook/wsdg_graphics/ethereal-capture_internals.png
D /trunk/docbook/wsdg_graphics/ethereal-function-blocks.dia
D /trunk/docbook/wsdg_graphics/ethereal-function-blocks.png
D /trunk/docbook/wsdg_graphics/wireshark-logo.png
A /trunk/docbook/wsdg_graphics/ws-capture-sync.dia (from /trunk/docbook/wsdg_graphics/ethereal-capture-sync.dia:19024)
A /trunk/docbook/wsdg_graphics/ws-capture-sync.png (from /trunk/docbook/wsdg_graphics/ethereal-capture-sync.png:19024)
A /trunk/docbook/wsdg_graphics/ws-capture_internals.dia (from /trunk/docbook/wsdg_graphics/ethereal-capture_internals.dia:19024)
A /trunk/docbook/wsdg_graphics/ws-capture_internals.png (from /trunk/docbook/wsdg_graphics/ethereal-capture_internals.png:19024)
A /trunk/docbook/wsdg_graphics/ws-function-blocks.dia (from /trunk/docbook/wsdg_graphics/ethereal-function-blocks.dia:19024)
A /trunk/docbook/wsdg_graphics/ws-function-blocks.png (from /trunk/docbook/wsdg_graphics/ethereal-function-blocks.png:19024)
A /trunk/docbook/wsdg_graphics/ws-logo.png (from /trunk/docbook/wsdg_graphics/wireshark-logo.png:19024)
D /trunk/docbook/wsug_graphics/ethereal-3pane.png
D /trunk/docbook/wsug_graphics/ethereal-analyze-menu.png
D /trunk/docbook/wsug_graphics/ethereal-bytes-pane-popup-menu.png
D /trunk/docbook/wsug_graphics/ethereal-bytes-pane-tabs.png
D /trunk/docbook/wsug_graphics/ethereal-bytes-pane.png
D /trunk/docbook/wsug_graphics/ethereal-capture-info.png
D /trunk/docbook/wsug_graphics/ethereal-capture-interfaces.png
D /trunk/docbook/wsug_graphics/ethereal-capture-menu.png
D /trunk/docbook/wsug_graphics/ethereal-capture-options.png
D /trunk/docbook/wsug_graphics/ethereal-capture-preferences.png
D /trunk/docbook/wsug_graphics/ethereal-choose-color-rule.png
D /trunk/docbook/wsug_graphics/ethereal-coloring-rules-dialog.png
D /trunk/docbook/wsug_graphics/ethereal-decode-as-show.png
D /trunk/docbook/wsug_graphics/ethereal-decode-as.png
D /trunk/docbook/wsug_graphics/ethereal-details-pane-popup-menu.png
D /trunk/docbook/wsug_graphics/ethereal-details-pane.png
D /trunk/docbook/wsug_graphics/ethereal-display-filter-tcp.png
D /trunk/docbook/wsug_graphics/ethereal-edit-color-rule-dialog.png
D /trunk/docbook/wsug_graphics/ethereal-edit-menu.png
D /trunk/docbook/wsug_graphics/ethereal-empty.png
D /trunk/docbook/wsug_graphics/ethereal-enabled-protocols.png
D /trunk/docbook/wsug_graphics/ethereal-error-file-exists.png
D /trunk/docbook/wsug_graphics/ethereal-error-open.png
D /trunk/docbook/wsug_graphics/ethereal-export-pdml.png
D /trunk/docbook/wsug_graphics/ethereal-export-plain.png
D /trunk/docbook/wsug_graphics/ethereal-export-ps.png
D /trunk/docbook/wsug_graphics/ethereal-export-psml.png
D /trunk/docbook/wsug_graphics/ethereal-export-selected.png
D /trunk/docbook/wsug_graphics/ethereal-file-menu.png
D /trunk/docbook/wsug_graphics/ethereal-file-set-dialog.png
D /trunk/docbook/wsug_graphics/ethereal-filter-add-expression.png
D /trunk/docbook/wsug_graphics/ethereal-filter-toolbar.png
D /trunk/docbook/wsug_graphics/ethereal-filters-2.png
D /trunk/docbook/wsug_graphics/ethereal-filters.png
D /trunk/docbook/wsug_graphics/ethereal-find-packet.png
D /trunk/docbook/wsug_graphics/ethereal-follow-stream.png
D /trunk/docbook/wsug_graphics/ethereal-go-menu.png
D /trunk/docbook/wsug_graphics/ethereal-goto-packet.png
D /trunk/docbook/wsug_graphics/ethereal-gui-colors-preferences.png
D /trunk/docbook/wsug_graphics/ethereal-gui-columns-preferences.png
D /trunk/docbook/wsug_graphics/ethereal-gui-font-preferences.png
D /trunk/docbook/wsug_graphics/ethereal-gui-layout-preferences.png
D /trunk/docbook/wsug_graphics/ethereal-gui-preferences.png
D /trunk/docbook/wsug_graphics/ethereal-help-menu.png
D /trunk/docbook/wsug_graphics/ethereal-list-pane.png
D /trunk/docbook/wsug_graphics/ethereal-main-toolbar.png
D /trunk/docbook/wsug_graphics/ethereal-menu.png
D /trunk/docbook/wsug_graphics/ethereal-merge.png
D /trunk/docbook/wsug_graphics/ethereal-nameresolution-preferences.png
D /trunk/docbook/wsug_graphics/ethereal-open.png
D /trunk/docbook/wsug_graphics/ethereal-packet-format.png
D /trunk/docbook/wsug_graphics/ethereal-packet-pane-popup-menu.png
D /trunk/docbook/wsug_graphics/ethereal-packet-range.png
D /trunk/docbook/wsug_graphics/ethereal-packet-selected.png
D /trunk/docbook/wsug_graphics/ethereal-packet-sep-win.png
D /trunk/docbook/wsug_graphics/ethereal-print.png
D /trunk/docbook/wsug_graphics/ethereal-printing-preferences.png
D /trunk/docbook/wsug_graphics/ethereal-save-as.png
D /trunk/docbook/wsug_graphics/ethereal-statistics-menu.png
D /trunk/docbook/wsug_graphics/ethereal-stats-conversations.png
D /trunk/docbook/wsug_graphics/ethereal-stats-endpoints.png
D /trunk/docbook/wsug_graphics/ethereal-stats-hierarchy.png
D /trunk/docbook/wsug_graphics/ethereal-stats-iographs.png
D /trunk/docbook/wsug_graphics/ethereal-stats-srt-dcerpc-filter.png
D /trunk/docbook/wsug_graphics/ethereal-stats-srt-dcerpc.png
D /trunk/docbook/wsug_graphics/ethereal-stats-summary.png
D /trunk/docbook/wsug_graphics/ethereal-statusbar-empty.png
D /trunk/docbook/wsug_graphics/ethereal-statusbar-loaded.png
D /trunk/docbook/wsug_graphics/ethereal-statusbar-selected.png
D /trunk/docbook/wsug_graphics/ethereal-time-reference.png
D /trunk/docbook/wsug_graphics/ethereal-view-menu.png
A /trunk/docbook/wsug_graphics/toolbar/stock_apply_20.png
A /trunk/docbook/wsug_graphics/toolbar/stock_clear_24.png
D /trunk/docbook/wsug_graphics/wireshark-logo.png
D /trunk/docbook/wsug_graphics/wireshark-main.png
A /trunk/docbook/wsug_graphics/ws-analyze-menu.png (from /trunk/docbook/wsug_graphics/ethereal-analyze-menu.png:19024)
A /trunk/docbook/wsug_graphics/ws-bytes-pane-popup-menu.png (from /trunk/docbook/wsug_graphics/ethereal-bytes-pane-popup-menu.png:19024)
A /trunk/docbook/wsug_graphics/ws-bytes-pane-tabs.png (from /trunk/docbook/wsug_graphics/ethereal-bytes-pane-tabs.png:19024)
A /trunk/docbook/wsug_graphics/ws-bytes-pane.png (from /trunk/docbook/wsug_graphics/ethereal-bytes-pane.png:19024)
A /trunk/docbook/wsug_graphics/ws-capture-info.png (from /trunk/docbook/wsug_graphics/ethereal-capture-info.png:19024)
A /trunk/docbook/wsug_graphics/ws-capture-interfaces.png (from /trunk/docbook/wsug_graphics/ethereal-capture-interfaces.png:19024)
A /trunk/docbook/wsug_graphics/ws-capture-menu.png (from /trunk/docbook/wsug_graphics/ethereal-capture-menu.png:19024)
A /trunk/docbook/wsug_graphics/ws-capture-options.png (from /trunk/docbook/wsug_graphics/ethereal-capture-options.png:19024)
A /trunk/docbook/wsug_graphics/ws-capture-preferences.png (from /trunk/docbook/wsug_graphics/ethereal-capture-preferences.png:19024)
A /trunk/docbook/wsug_graphics/ws-choose-color-rule.png (from /trunk/docbook/wsug_graphics/ethereal-choose-color-rule.png:19024)
A /trunk/docbook/wsug_graphics/ws-coloring-fields.png
A /trunk/docbook/wsug_graphics/ws-coloring-rules-dialog.png (from /trunk/docbook/wsug_graphics/ethereal-coloring-rules-dialog.png:19024)
A /trunk/docbook/wsug_graphics/ws-decode-as-show.png (from /trunk/docbook/wsug_graphics/ethereal-decode-as-show.png:19024)
A /trunk/docbook/wsug_graphics/ws-decode-as.png (from /trunk/docbook/wsug_graphics/ethereal-decode-as.png:19024)
A /trunk/docbook/wsug_graphics/ws-details-pane-popup-menu.png (from /trunk/docbook/wsug_graphics/ethereal-details-pane-popup-menu.png:19024)
A /trunk/docbook/wsug_graphics/ws-details-pane.png (from /trunk/docbook/wsug_graphics/ethereal-details-pane.png:19024)
A /trunk/docbook/wsug_graphics/ws-display-filter-tcp.png (from /trunk/docbook/wsug_graphics/ethereal-display-filter-tcp.png:19024)
A /trunk/docbook/wsug_graphics/ws-edit-color-rule-dialog.png (from /trunk/docbook/wsug_graphics/ethereal-edit-color-rule-dialog.png:19024)
A /trunk/docbook/wsug_graphics/ws-edit-menu.png (from /trunk/docbook/wsug_graphics/ethereal-edit-menu.png:19024)
A /trunk/docbook/wsug_graphics/ws-enabled-protocols.png (from /trunk/docbook/wsug_graphics/ethereal-enabled-protocols.png:19024)
A /trunk/docbook/wsug_graphics/ws-export-pdml.png (from /trunk/docbook/wsug_graphics/ethereal-export-pdml.png:19024)
A /trunk/docbook/wsug_graphics/ws-export-plain.png (from /trunk/docbook/wsug_graphics/ethereal-export-plain.png:19024)
A /trunk/docbook/wsug_graphics/ws-export-ps.png (from /trunk/docbook/wsug_graphics/ethereal-export-ps.png:19024)
A /trunk/docbook/wsug_graphics/ws-export-psml.png (from /trunk/docbook/wsug_graphics/ethereal-export-psml.png:19024)
A /trunk/docbook/wsug_graphics/ws-export-selected.png (from /trunk/docbook/wsug_graphics/ethereal-export-selected.png:19024)
A /trunk/docbook/wsug_graphics/ws-file-menu.png (from /trunk/docbook/wsug_graphics/ethereal-file-menu.png:19024)
A /trunk/docbook/wsug_graphics/ws-file-set-dialog.png (from /trunk/docbook/wsug_graphics/ethereal-file-set-dialog.png:19024)
A /trunk/docbook/wsug_graphics/ws-filter-add-expression.png (from /trunk/docbook/wsug_graphics/ethereal-filter-add-expression.png:19024)
A /trunk/docbook/wsug_graphics/ws-filter-toolbar.png (from /trunk/docbook/wsug_graphics/ethereal-filter-toolbar.png:19024)
A /trunk/docbook/wsug_graphics/ws-filters.png (from /trunk/docbook/wsug_graphics/ethereal-filters.png:19024)
A /trunk/docbook/wsug_graphics/ws-find-packet.png (from /trunk/docbook/wsug_graphics/ethereal-find-packet.png:19024)
A /trunk/docbook/wsug_graphics/ws-follow-stream.png (from /trunk/docbook/wsug_graphics/ethereal-follow-stream.png:19024)
A /trunk/docbook/wsug_graphics/ws-go-menu.png (from /trunk/docbook/wsug_graphics/ethereal-go-menu.png:19024)
A /trunk/docbook/wsug_graphics/ws-goto-packet.png (from /trunk/docbook/wsug_graphics/ethereal-goto-packet.png:19024)
A /trunk/docbook/wsug_graphics/ws-gui-colors-preferences.png (from /trunk/docbook/wsug_graphics/ethereal-gui-colors-preferences.png:19024)
A /trunk/docbook/wsug_graphics/ws-gui-columns-preferences.png (from /trunk/docbook/wsug_graphics/ethereal-gui-columns-preferences.png:19024)
A /trunk/docbook/wsug_graphics/ws-gui-font-preferences.png (from /trunk/docbook/wsug_graphics/ethereal-gui-font-preferences.png:19024)
A /trunk/docbook/wsug_graphics/ws-gui-layout-preferences.png (from /trunk/docbook/wsug_graphics/ethereal-gui-layout-preferences.png:19024)
A /trunk/docbook/wsug_graphics/ws-gui-preferences.png (from /trunk/docbook/wsug_graphics/ethereal-gui-preferences.png:19024)
A /trunk/docbook/wsug_graphics/ws-help-menu.png (from /trunk/docbook/wsug_graphics/ethereal-help-menu.png:19024)
A /trunk/docbook/wsug_graphics/ws-list-pane.png (from /trunk/docbook/wsug_graphics/ethereal-list-pane.png:19024)
A /trunk/docbook/wsug_graphics/ws-logo.png (from /trunk/docbook/wsug_graphics/wireshark-logo.png:19024)
A /trunk/docbook/wsug_graphics/ws-main-toolbar.png (from /trunk/docbook/wsug_graphics/ethereal-main-toolbar.png:19024)
A /trunk/docbook/wsug_graphics/ws-main.png (from /trunk/docbook/wsug_graphics/wireshark-main.png:19024)
A /trunk/docbook/wsug_graphics/ws-menu.png (from /trunk/docbook/wsug_graphics/ethereal-menu.png:19024)
A /trunk/docbook/wsug_graphics/ws-merge.png (from /trunk/docbook/wsug_graphics/ethereal-merge.png:19024)
A /trunk/docbook/wsug_graphics/ws-nameresolution-preferences.png (from /trunk/docbook/wsug_graphics/ethereal-nameresolution-preferences.png:19024)
A /trunk/docbook/wsug_graphics/ws-open.png (from /trunk/docbook/wsug_graphics/ethereal-open.png:19024)
A /trunk/docbook/wsug_graphics/ws-packet-format.png (from /trunk/docbook/wsug_graphics/ethereal-packet-format.png:19024)
A /trunk/docbook/wsug_graphics/ws-packet-pane-popup-menu.png (from /trunk/docbook/wsug_graphics/ethereal-packet-pane-popup-menu.png:19024)
A /trunk/docbook/wsug_graphics/ws-packet-range.png (from /trunk/docbook/wsug_graphics/ethereal-packet-range.png:19024)
A /trunk/docbook/wsug_graphics/ws-packet-selected.png (from /trunk/docbook/wsug_graphics/ethereal-packet-selected.png:19024)
A /trunk/docbook/wsug_graphics/ws-packet-sep-win.png (from /trunk/docbook/wsug_graphics/ethereal-packet-sep-win.png:19024)
A /trunk/docbook/wsug_graphics/ws-print.png (from /trunk/docbook/wsug_graphics/ethereal-print.png:19024)
A /trunk/docbook/wsug_graphics/ws-printing-preferences.png (from /trunk/docbook/wsug_graphics/ethereal-printing-preferences.png:19024)
A /trunk/docbook/wsug_graphics/ws-save-as.png (from /trunk/docbook/wsug_graphics/ethereal-save-as.png:19024)
A /trunk/docbook/wsug_graphics/ws-statistics-menu.png (from /trunk/docbook/wsug_graphics/ethereal-statistics-menu.png:19024)
A /trunk/docbook/wsug_graphics/ws-stats-conversations.png (from /trunk/docbook/wsug_graphics/ethereal-stats-conversations.png:19024)
A /trunk/docbook/wsug_graphics/ws-stats-endpoints.png (from /trunk/docbook/wsug_graphics/ethereal-stats-endpoints.png:19024)
A /trunk/docbook/wsug_graphics/ws-stats-hierarchy.png (from /trunk/docbook/wsug_graphics/ethereal-stats-hierarchy.png:19024)
A /trunk/docbook/wsug_graphics/ws-stats-iographs.png (from /trunk/docbook/wsug_graphics/ethereal-stats-iographs.png:19024)
A /trunk/docbook/wsug_graphics/ws-stats-srt-dcerpc-filter.png (from /trunk/docbook/wsug_graphics/ethereal-stats-srt-dcerpc-filter.png:19024)
A /trunk/docbook/wsug_graphics/ws-stats-srt-dcerpc.png (from /trunk/docbook/wsug_graphics/ethereal-stats-srt-dcerpc.png:19024)
A /trunk/docbook/wsug_graphics/ws-stats-summary.png (from /trunk/docbook/wsug_graphics/ethereal-stats-summary.png:19024)
A /trunk/docbook/wsug_graphics/ws-statusbar-empty.png (from /trunk/docbook/wsug_graphics/ethereal-statusbar-empty.png:19024)
A /trunk/docbook/wsug_graphics/ws-statusbar-loaded.png (from /trunk/docbook/wsug_graphics/ethereal-statusbar-loaded.png:19024)
A /trunk/docbook/wsug_graphics/ws-statusbar-selected.png (from /trunk/docbook/wsug_graphics/ethereal-statusbar-selected.png:19024)
A /trunk/docbook/wsug_graphics/ws-time-reference.png (from /trunk/docbook/wsug_graphics/ethereal-time-reference.png:19024)
A /trunk/docbook/wsug_graphics/ws-view-menu.png
M /trunk/docbook/wsug_src/WSUG_chapter_capture.xml
M /trunk/docbook/wsug_src/WSUG_chapter_customize.xml
M /trunk/docbook/wsug_src/WSUG_chapter_use.xml
M /trunk/docbook/wsug_src/WSUG_chapter_work.xml
User's/Developer's Guide: finish Ethereal to Wireshark transition by "reshoot" *all* screenshots (and rename them) and update some of the menu items that changed in the meantime.
------------------------------------------------------------------------
r19033 | sahlberg | 2006-08-25 14:33:23 -0700 (Fri, 25 Aug 2006) | 9 lines
Changed paths:
M /trunk/epan/dissectors/packet-eth.c
from Stephen F
ethernet IG/LG bit changes with minor modifications
(only dissect LG if it is a unicast address
put a hint what locally administered means in the dissect tree
)
------------------------------------------------------------------------
r19034 | sahlberg | 2006-08-25 14:53:37 -0700 (Fri, 25 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-eth.c
remove the code that conditionally dissects LG only if IG is set
------------------------------------------------------------------------
r19035 | guy | 2006-08-25 16:59:25 -0700 (Fri, 25 Aug 2006) | 3 lines
Changed paths:
M /trunk/image/toolbar/capture_details_16.xpm
M /trunk/image/toolbar/capture_details_24.xpm
Constify the capture details icons, and get rid of the CRs in
capture_details_24.xpm and give it the appropriate Subversion keywords.
------------------------------------------------------------------------
r19036 | guy | 2006-08-25 17:03:59 -0700 (Fri, 25 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-mp2t.c
Don't use %ld for guint64 - use PRIu64. (Also, don't use %d for guint32
- use %u.)
------------------------------------------------------------------------
r19037 | guy | 2006-08-25 17:05:26 -0700 (Fri, 25 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-dtls.c
Fix some compiler warnings (some by getting rid of variables unused if
you don't have GNU TLS).
------------------------------------------------------------------------
r19038 | guy | 2006-08-25 17:06:40 -0700 (Fri, 25 Aug 2006) | 5 lines
Changed paths:
M /trunk/epan/dissectors/packet-ieee80211.c
Don't define the Aironet/Cisco Wireless OUI ourselves; get it from
<epan/oui.h>.
Fix indentation.
------------------------------------------------------------------------
r19039 | guy | 2006-08-25 17:07:13 -0700 (Fri, 25 Aug 2006) | 2 lines
Changed paths:
M /trunk/gtk/capture_dlg.c
Get rid of unused variable.
------------------------------------------------------------------------
r19040 | guy | 2006-08-25 17:08:51 -0700 (Fri, 25 Aug 2006) | 2 lines
Changed paths:
M /trunk/gtk/firewall_dlg.c
Get rid of aun unused routine.
------------------------------------------------------------------------
r19041 | guy | 2006-08-25 17:12:12 -0700 (Fri, 25 Aug 2006) | 4 lines
Changed paths:
M /trunk/gtk/capture_if_dlg.c
Clean up indentation.
Only define cap_air_w if we have AirPcap.
------------------------------------------------------------------------
r19042 | sahlberg | 2006-08-26 02:16:38 -0700 (Sat, 26 Aug 2006) | 4 lines
Changed paths:
M /trunk/epan/dissectors/Makefile.common
A /trunk/epan/dissectors/packet-image-png.c
initial PNG dissector (Portable Network Graphics)
------------------------------------------------------------------------
r19043 | ulfl | 2006-08-26 04:03:41 -0700 (Sat, 26 Aug 2006) | 1 line
Changed paths:
M /trunk/docbook/wsug_src/WSUG_chapter_work.xml
rework the pop-up menu section
------------------------------------------------------------------------
r19044 | sahlberg | 2006-08-26 04:57:28 -0700 (Sat, 26 Aug 2006) | 5 lines
Changed paths:
M /trunk/epan/dissectors/packet-image-png.c
fix wrong constant in a valuestring
add two more chunks to be dissected
------------------------------------------------------------------------
r19045 | sahlberg | 2006-08-26 05:26:19 -0700 (Sat, 26 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-image-png.c
two more chunks
------------------------------------------------------------------------
r19046 | gal | 2006-08-26 10:55:21 -0700 (Sat, 26 Aug 2006) | 5 lines
Changed paths:
M /trunk/epan/filesystem.c
M /trunk/epan/libwireshark.def
M /trunk/gtk/Makefile.common
M /trunk/gtk/file_dlg.c
M /trunk/gtk/main.c
A /trunk/gtk/u3.c
A /trunk/gtk/u3.h
A /trunk/packaging/u3
A /trunk/packaging/u3/win32
A /trunk/packaging/u3/win32/README.txt
A /trunk/packaging/u3/win32/makefile.nmake
A /trunk/packaging/u3/win32/manifest.tmpl
A /trunk/packaging/u3/win32/u3util.c
U3 packaging, utility and Wireshark modifications that allows Wireshark to be run from a U3 USB device.
For more details see packaging/u3/win32/README.txt
------------------------------------------------------------------------
r19047 | guy | 2006-08-26 11:36:09 -0700 (Sat, 26 Aug 2006) | 10 lines
Changed paths:
M /trunk/capture_loop.c
M /trunk/capture_opts.c
M /trunk/capture_opts.h
M /trunk/gtk/main.c
M /trunk/tshark.c
Go back to setting the capture filter to an empty string when we start;
that obviates the need to check for a null capture filter string, and
fixes bug 1055.
Keep track of whether it was set from the command line, though, so we
can catch attempts to set the filter more than once, and attempts to set
it when we're not capturing.
Clean up white space.
------------------------------------------------------------------------
r19048 | gal | 2006-08-27 01:19:55 -0700 (Sun, 27 Aug 2006) | 3 lines
Changed paths:
M /trunk/asn1/dap/dap-exp.cnf
M /trunk/asn1/dap/dap.asn
M /trunk/asn1/dap/dap.cnf
M /trunk/epan/dissectors/packet-dap.c
M /trunk/epan/dissectors/packet-dap.h
Support for X.500 strong authentication - used by DAP, DISP, DSP and DOP.
------------------------------------------------------------------------
r19049 | gal | 2006-08-27 01:31:29 -0700 (Sun, 27 Aug 2006) | 3 lines
Changed paths:
M /trunk/epan/dissectors/packet-tpkt.c
Register tpkt as a dissector so subdissectors can register tpkt on ports other than 102.
------------------------------------------------------------------------
r19050 | gal | 2006-08-27 02:03:21 -0700 (Sun, 27 Aug 2006) | 4 lines
Changed paths:
M /trunk/asn1/acse/acse-exp.cnf
M /trunk/asn1/acse/acse.asn
M /trunk/epan/dissectors/packet-acse.c
M /trunk/epan/dissectors/packet-acse.h
An octet string form of the ASO-qualifier used by some systems from the days when it was an ANY.
Really just an elaboration of the "...".
------------------------------------------------------------------------
r19051 | ulfl | 2006-08-27 03:41:30 -0700 (Sun, 27 Aug 2006) | 1 line
Changed paths:
M /trunk/gtk/capture_if_dlg.c
M /trunk/gtk/gui_utils.c
M /trunk/gtk/gui_utils.h
fix a warning by removing now unused code
------------------------------------------------------------------------
r19052 | ulfl | 2006-08-27 04:27:47 -0700 (Sun, 27 Aug 2006) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-radius.c
M /trunk/epan/dissectors/packet-rmcp.c
M /trunk/epan/guid-utils.c
M /trunk/gtk/stats_tree_stat.c
squelch some compiler warnings
------------------------------------------------------------------------
r19053 | ulfl | 2006-08-27 04:46:02 -0700 (Sun, 27 Aug 2006) | 1 line
Changed paths:
M /trunk/doc/README.capture
M /trunk/docbook/wsug_src/WSUG_app_howitworks.xml
M /trunk/help/capturing.txt
fix #1063, some leftover typo's: Etheral -> Wireshark
------------------------------------------------------------------------
r19054 | ulfl | 2006-08-27 05:35:26 -0700 (Sun, 27 Aug 2006) | 3 lines
Changed paths:
M /trunk/gtk/print_mswin.c
fix #707: "It's not possible to print each packet on a new page"
Win32: detect "form feed" char and create a new page in that case
------------------------------------------------------------------------
r19055 | etxrab | 2006-08-27 12:15:20 -0700 (Sun, 27 Aug 2006) | 1 line
Changed paths:
M /trunk/gtk/stats_tree_stat.c
Fixa a typo.
------------------------------------------------------------------------
r19056 | etxrab | 2006-08-27 13:30:01 -0700 (Sun, 27 Aug 2006) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-bssgp.c
M /trunk/epan/dissectors/packet-bssgp.h
M /trunk/epan/dissectors/packet-gtp.c
Do some more of the relase 6 stuff.
------------------------------------------------------------------------
r19057 | gerald | 2006-08-27 19:06:28 -0700 (Sun, 27 Aug 2006) | 6 lines
Changed paths:
M /trunk/epan/dissectors/packet-image-png.c
Don't abort the entire program if we have bad data. Just mark the
packet as malformed and continue on our merry way. This should fix
bugs 1064 - 1073.
Fix up whitespace.
------------------------------------------------------------------------
r19058 | etxrab | 2006-08-27 22:32:16 -0700 (Sun, 27 Aug 2006) | 1 line
Changed paths:
M /trunk/epan/dissectors/packet-gtp.c
More release 6 changes.
------------------------------------------------------------------------
r19059 | kukosa | 2006-08-28 00:05:02 -0700 (Mon, 28 Aug 2006) | 5 lines
Changed paths:
M /trunk/asn1/h225/packet-h225-template.c
M /trunk/epan/dissectors/packet-h225.c
M /trunk/epan/dissectors/packet-q931.c
M /trunk/epan/dissectors/packet-sip.c
M /trunk/epan/dissectors/packet-ssl-utils.c
M /trunk/epan/dissectors/packet-ssl.c
M /trunk/epan/dissectors/packet-ssl.h
M /trunk/epan/libwireshark.def
M /trunk/epan/proto.c
M /trunk/epan/proto.h
- new function ssl_dissector_delete()
- register H.225.0 over TLS (configurable port 1300)
- register SIP over TLS (fixed port 5061)
- new function proto_tree_get_root()
------------------------------------------------------------------------
r19060 | gmorris | 2006-08-28 05:24:24 -0700 (Mon, 28 Aug 2006) | 2 lines
Changed paths:
M /trunk/epan/dissectors/packet-srvloc.c
Fix the decoding of SLP attributes. Open SLP has the ability to pass back multiple attribute types in each reply. Previously the dissector only would dissect address attributes. The change adds parsing of attributes and proper dissection of names and address attributes contained in the same reply payload.
------------------------------------------------------------------------
r19061 | jmayer | 2006-08-28 09:55:03 -0700 (Mon, 28 Aug 2006) | 7 lines
Changed paths:
M /trunk/epan/dissectors/packet-ppp.c