1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
|
Original Author
-------- ------
Gerald Combs <gerald[AT]ethereal.com>
Contributors
------------
Gilbert Ramirez <gram[AT]alumni.rice.edu> {
Wiretap
Printing
Token-Ring, TR MAC
802.2 LLC
IPX, SPX, NCP
BOOTP/DHCP
LPD
Win32 support
tvbuffs
Miscellaneous enhancements and fixes
}
Hannes R. Boehm <hannes[AT]boehm.org> {
http://hannes.boehm.org/
OSPFv2
RIPv1, RIPv2
CDP (Cisco Discover Protocol Version 1)
}
Mike Hall <mlh[AT]io.com>{
TCP Follow
}
Bobo Rajec <bobo[AT]bsp-consulting.sk> {
DNS protocol support
}
Laurent Deniel <deniel[AT]worldnet.fr> {
Name resolution
Ethernet/Manufacturer files support
FDDI support
OMG GIOP/IIOP support
ISO/OSI CLNP/COTP support
Real time capture and display enhancement
Many display filters added
GUI enhancements (about & help windows)
Follow TCP stream for IPv6
Protocol activation/deactivation (Edit:protocols)
Ability to mark the frames and associated features
"Protocol Properties..." menu item
Miscellaneous enhancements and fixes
}
Don Lafontaine <lafont02[AT]cn.ca> {
Banyan Vines support
IGRP support
}
Guy Harris <guy[AT]alum.mit.edu> {
DNS and NetBIOS Name Service enhancements
Bitfield decoding
IP and TCP option decoding
HTTP support
NNTP support
ATM and LANE decoding
Q.931 decoding
Changes to the popup packet windows
Miscellaneous enhancements and fixes
}
Simon Wilkinson <sxw[AT]dcs.ed.ac.uk> {
AppleTalk support
}
Joerg Mayer <jmayer[AT]loplof.de> {
Banyan Vines support
NTP fixes
DHCP support for Intel PXEclient DHCP requests
Support for "-N" flag enabling selected forms of name resolution
Changes to structure initializations to initialize all members
Define __USE_XOPEN in files that use "strptime()"
Various signed vs. unsigned fixes
Crank up the warning level in GCC
Skinny (Official Name: SCCP)
Remove trailing blanks from hex dump in print/Tethereal
Remove unused variables and declarations of non-existent
functions
In configure scripts, if the compiler is GCC, add to CFLAGS a -D
flag to define _U_ as something that marks an argument
unused in GCC, and as nothing for other compilers
Add _U_ to unused arguments, and turn off "-Wno-unused"
.cvsignore fixes
Make a pile of stuff not used outside one source file static
Clean up #includes
Mark last packet of TFTP transfer as such in the Info column
Dissect both the BOOTP server and client ports as bootp/DHCP
Fix some small memleaks found by valgrind
}
Martin Maciaszek <fastjack[AT]i-s-o.net> {
RPM .spec file
}
Didier Jorand <Didier.Jorand[AT]alcatel.fr> {
SNMP support
}
Jun-ichiro itojun Hagino <itojun[AT]itojun.org> {
http://www.itojun.org/
IPv6 support
RIPng support
IPsec support
PIM (Prototocol-Independent Multicast) support
IPComp (IP Payload Compression) support
BGP (Border Gateway Protocol) support
}
Richard Sharpe <sharpe[AT]ns.aus.com> {
TFTP, FTP, POP, Telnet support
Infrastructure changes for the benefit of TFTP
SMB support
}
John McDermott <jjm[AT]jkintl.com> {
Packet coloring support
Pseudo-real-time capture
}
Jeff Jahr <jjahr[AT]shastanets.com> {
PPP over Ethernet (PPPoe)
}
Brad Robel-Forrest <bradr[AT]watchguard.com> {
ISAKMP, GRE, PPTP
}
Ashok Narayanan <ashokn[AT]cisco.com> {
RSVP
Match Selected functionality
Support for reading compressed capture files
MPLS
}
Aaron Hillegass <aaron[AT]classmax.com> {
Summary dialogue
}
Jason Lango <jal[AT]netapp.com> {
RTSP, SDP
RTCP fixes
}
Johan Feyaerts <Johan.Feyaerts[AT]siemens.atea.be> {
RADIUS
}
Olivier Abad <oabad[AT]cybercable.fr> {
X.25 support in iptrace files and Sniffer files
Support for files from RADCOM WAN/LAN analyzers
and HP-UX nettl traces
LAPB, X.25
Plugins support
Support for capturing packet data from pipes
Support for writing NetXRay 2.x (Windows Sniffer) format captures
}
Thierry Andry <Thierry.Andry[AT]advalvas.be> {
Linux ATM Classical IP support
}
Jeff Foster <jfoste[AT]woodward.com> {
NetBEUI/NBF support (NetBIOS atop 802.2 LLC, the
original NetBIOS encapsulation)
SMB Mailslot and Netlogin protocol support
Popup packet windows
Support for protocols registering themselves with dissectors for
protocols on top of which they run
Rlogin support
Support for associating a dissector with a conversation, and for
use of that dissector by TCP and UDP
SOCKS support
Microsoft Proxy protocol support
Support for conversations with "wildcard" destination addresses
and/or ports
Initial support for constructing filter expressions
Support for reading Sniffer Frame Relay captures
Partial support for determining the type of "Internetwork
analyzer" Sniffer captures (we don't yet have enough captures
to do it all)
}
Peter Torvals <petertv[AT]xoommail.com> {
Internet Cache Protocol support
}
Christophe Tronche <ch.tronche[AT]computer.org> {
http://tronche.com/
BPDU (spanning tree protocol) support
X11 requests support
}
Nathan Neulinger <nneul[AT]umr.edu> {
Yahoo messenger and pager protocol support
NTP (Network Time Protocol) support
RX protocol support
Andrew File System protocol support
802.1q VLAN support
Misc. RPC program dissectors
TNS/Oracle dissector
Tacacs+/XTacacs dissector
IRC dissector
AppleTalk NBP dissector
AppleTalk RTMP response dissector
Automake and autoconf updates to handle the current CVS versions
of automake (which will probably eventually become the next
releases of automake and autoconf)
Additional cipher suite names for SSL
}
Tomislav Vujec <tvujec[AT]carnet.hr> {
Additional NTP support
}
Kojak <kojak[AT]bigwig.net> {
ICQ support
}
Uwe Girlich <Uwe.Girlich[AT]philosys.de> {
ONC RPC support
NFS support
Mount Protocol support started
NLM support started
PCNFSD support started
TSP support
Quake dissector
QuakeWorld dissector
Quake II dissector
Quake 3 Arena dissector
}
Warren Young <tangent[AT]mail.com> {
"Print" button support in "Tools:Follow TCP Stream" window
}
Heikki Vatiainen <hessu[AT]cs.tut.fi> {
Cisco Auto-RP protocol support
SAP (Session Announcement Protocol) support
VRRP (Virtual Router Redundancy)
HSRP (Hot Standby Router Protocol)
option to control whether to interpret the IPv4 TOS field as
such or as the DiffServ field
COPS
SIP (Session Initiation Protocol)
BGP tvbuffification
IPv6 and ICMPv6 tvbuffification
PIM enhancements and fixes
Support for Enter/Return toggling expansion of selected protocol
tree item
IGMP fixes and multicast traceroute support
MSDP support
IPv6 name resolution support on Solaris 8
Enhancements to the "bad sed" tests
Make "get_host_ipaddr()" require dotted-quad IP addresses to
really be quads
CGMP-over-Ethernet II support
Fix the test for IS-IS virtual links
Documentation improvements
}
Greg Hankins <gregh[AT]twoguys.org> {
http://www.twoguys.org/~gregh
updates to BGP (Border Gateway Protocol) support
}
Jerry Talkington <jerryt[AT]netapp.com> {
updates to HTTP support
Filter selection/editing GUI improvements
WCCP 1.0 support
Right-mouse-button menu support
}
Dave Chapeskie <dchapes[AT]ddm.on.ca> {
updates to ISAKMP support
}
James Coe <jammer[AT]cin.net> {
SRVLOC (Service Location Protocol) support
NCP over IP support
}
Bert Driehuis <driehuis[AT]playbeing.org> {
I4B (ISDN for BSD) wiretap module
V.120
}
Stuart Stanley <stuarts[AT]mxmail.net> {
ISIS on CLNP support
}
John Thomes <john[AT]ensemblecom.com> {
L2TP support
}
Laurent Cazalet <laurent.cazalet[AT]mailclub.net> {
updates to L2TP support
}
Thomas Parvais <thomas.parvais[AT]advalvas.be> {
updates to L2TP support
}
Gerrit Gehnen <G.Gehnen[AT]atrie.de> {
support for "Inactive Subset" of ISO CLNP
Decoding of OSI COTP TSAPs as text when they're plain text
Sinec H1 protocol support
}
Craig Newell <craign[AT]cheque.uq.edu.au> {
TFTP options (RFC 2347) support
}
Ed Meaney <emeaney[AT]cisco.com> {
Win32 support
}
Dietmar Petras <DPetras[AT]ELSA.de> {
Time protocol support
Fix to handling of SNMPv2 TRAP PDUs
}
Fred Reimer <fwr[AT]ga.prestige.net> {
TCP segment length in TCP packet summary
}
Florian Lohoff <flo[AT]rfc822.org> {
Various enhancements to RADIUS support
Fixes to L2TP result and error code dissection
}
Jochen Friedrich <jochen+ethereal[AT]scram.de> {
Fix to IPv6 fragment handling
SMUX and SNMPv3 support
Zebra
SNA HPR-over-PPP and SNA-over-LLC-over-PPP (RFC 2043)
HPR/UDP (RFC 2353, Enterprise Extender)
}
Paul Welchinski <paul.welchinski[AT]telusplanet.net> {
Fixes to Win32 packet capture code
}
Doug Nazar <nazard[AT]dragoninc.on.ca> {
LDAP support
}
Andreas Sikkema <andreas.sikkema[AT]philips.com> {
Fixes to SMB dissector
Fixes to capture file handling on Win32
RTCP, RTP, TPKT (RFC 1006), H.261
}
Mark Muhlestein <mmm[AT]netapp.com> {
CIFS-over-TCP support
}
Graham Bloice <graham.bloice[AT]trihedral.com> {
Win32 icon for Ethereal, and Win32 resource-compiler files to
add version/copyright/etc. information to Win32 executables
Support for sorting columns in the summary by clicking on them
Win32 Makefile improvements
Support for "Update list of packets in real time" during capture
on Win32
Support for inverse video rather than boldface highlighting of
the bytes, in the hex dump window, corresponding to a selected
field
}
Ralf Schneider <ralf.schneider[AT]alcatel.se> {
Enhancements to OSI CLNP, CLTP, and ISIS support
OSI ESIS support
}
Yaniv Kaul <ykaul[AT]netvision.net.il> {
Enhancements to ISAKMP
CPHA support
}
Paul Ionescu <paul[AT]acorp.ro> {
IPX-over-GRE support
EIGRP support
Cisco IGRP support
X.25-over-TCP support
DEC LANBridge Spanning Tree Protocol support
X.25-over-LLC support
IP Prefix field support in CDP
Frame Relay support
Frame-Relay-over-GRE support
IPX SAP over IPX EIGRP support
Fleshed out TACACS/XTACACS/TACACS+ dissector
DLSw support
}
Mark Burton <markb[AT]ordern.com> {
Assorted SMB fixes and enhancements
iSCSI support
}
Stefan Raab <sraab[AT]cisco.com> {
Mobile IP
}
Mark Clayton <clayton[AT]shore.net> {
Support for capturing on ATM interfaces on Linux
}
Michael Rozhavsky <mike[AT]tochna.technion.ac.il> {
OSPF enhancements
CRLDP support
}
Dug Song <dugsong[AT]monkey.org> {
RPCSEC_GSS credential/verifier dissection for ONC RPC
}
Michael Tuexen <Michael.Tuexen[AT]icn.siemens.de> {
SCTP support
M3UA support
ISDN Q.921-User Adaptation Layer (IUA) support
SUA and SUA Light support
MTP3 support
MacOS X support
Update of M2PA support for later Internet drafts
MTP2 support
SCTP support in text2pcap
SCCP-atop-M3UA support
M2UA support
ASAP support
Fix SCTP port number for M2PA
}
Bruce Korb <bkorb[AT]sco.com> {
Improved autogen.sh script
}
Jose Pedro Oliveira <jpo[AT]di.uminho.pt> {
DHCP enhancements
}
David Frascone <dave[AT]frascone.com> {
DIAMETER
Bug fixes and enhancements to Mobile IP
Support for Mobile IP's use of ICMP Router Advertisements
Removal of unused variables and functions
}
Peter Kjellerstedt <pkj[AT]axis.com> {
SRVLOC fixes
ICQ enhancements
}
Phil Techau <phil_t[AT]altavista.net> {
Added "col_append_str()"
Signed integer support in display filters and in the protocol tree
BOOTP fixes
Additional NTP reference clock identifiers
}
Wes Hardaker <wjhardaker[AT]ucdavis.edu> {
Kerberos 5 support
}
Robert Tsai <rtsai[AT]netapp.com> {
Rsh support
Support for embedded newlines in SDP fields
Support for leading LWS in RTSP headers
}
Craig Metz <cmetz[AT]inner.net> {
OSPF type 7 LSA dissection
}
Per Flock <per.flock[AT]axis.com> {
A6 and DNAME resource record support
RFC 2673 bitstring label support
}
Jack Keane <jkeane[AT]OpenReach.com> {
ISAKMP fixes to handle malformed packets
}
Brian Wellington <bwelling[AT]xbill.org> {
Support for DNS CERT, KX, TSIG, and TKEY records
Support for NOTIFY and UPDATE DNS opcodes
Support for YXDOMAIN, YXRRSSET, NXRRRSET, NOTAUTH, NOTZONE, and
TSIG/TKEY error DNS reply codes
Partial support for DNS-over-TCP
}
Santeri Paavolainen <santtu[AT]ssh.com> {
"Capture->Stop" menu bar item
Improved capture statistics box
}
Ulrich Kiermayr <uk[AT]ap.univie.ac.at> {
ECN Extension support
}
Neil Hunter <neil.hunter[AT]energis-squared.com> {
WAP support
}
Ralf Holzer <ralf[AT]well.com> {
AIM/OSCAR support
}
Craig Rodrigues <rodrigc[AT]mediaone.net> {
GIOP 1.2 support and other GIOP enhancements
Handle current versions of RPM, which compress man pages
}
Ed Warnicke <hagbard[AT]physics.rutgers.edu> {
MGCP dissector plugin
}
Johan Jorgensen <johan.jorgensen[AT]axis.com> {
IEEE 802.11 support
}
Frank Singleton <frank.singleton[AT]ericsson.com> {
Short integer CDR support for GIOP
Support for protocols running atop GIOP
GIOP CosNaming support
}
Kevin Shi <techishi[AT]ms22.hinet.net> {
GVRP support
}
Mike Frisch <mfrisch[AT]isurfer.ca> {
NFSv4 support
HCLNFSD support
rquota support
AUTH_DES support
Tvbuffified NFS dissector
RPCSEC_GSS fixes
PCNFSD updates
}
Burke Lau <burke_lau[AT]agilent.com> {
PPP FCS checking
Cisco HDLC support in PPP dissector
MPLS-over-PPP support
}
Martti Kuparinen <martti.kuparinen[AT]iki.fi> {
Mobile IPv6 support
HMIPv6 support
}
David Hampton <dhampton[AT]mac.com> {
Support for HTTP methods added by GENA (the uPnP protocol)
Support for the HTTP-based SSDP protocol
"Decode As" dialog
}
Kent Engström <kent[AT]unit.liu.se> {
CDP VTP Management Domain item support
}
Ronnie Sahlberg <sahlberg[AT]optushome.com.au> {
NLM dissector enhancements
Mount dissector enhancements
Support for status monitor protocol and status monitor callback
protocol
YPSERV dissector enhancements
BOOTPARAM dissector enhancements
RWALL support
HCLNFSD dissector enhancements
IP fragment reassembly
YPPASSWD support
KLM support
SPRAY support
rquota support completed
XDR array support
NIS+ support
Rewritten IGMP dissector
Tvbuffified and bug-fixed RX and AFS dissectors
Support for filtering on absolute and relative time fields
DVMRP support
MRDISC support
MSNIP support
Tvbuffified ISIS dissector
Tvbuffified SMB NETLOGON dissector
Tvbuffified SMB BROWSER dissector
TCP segment reassembly and support for it in ONC RPC and NBSS
dissectors
Filterable fields for XoT and RIP
Times in NFS done as FT_ABSOLUTE_TIME and FT_RELATIVE_TIME
FT_UINT64 support, code to handle 64-bit integers without
requiring compiler support for them, and updates to the
Diameter, L2TP, NFS, and NLM dissectors to use it and to the
ONC RPC dissector to allow ONC RPC subdissectors to use it
SMB tvbuffication and enhancement
NDMPv3 support
Add time between request and reply as a field to ONC RPC replies
File handle to file name resolution in NFS and related protocols
DCE RPC enhancements
SAMR updates
NETLOGON implementation
LSA updates
NFS AUTH stub implementation
MAPI skeleton dissector
DCE/RPC fragment reassembly
TCP ACK/SEQ number analysis and relative sequence numbers
}
Borosa Tomislav <tomislav.borosa[AT]SIEMENS.HR> {
Updates to mobile IPv6
}
Alexandre P. Ferreira <alexandref[AT]tcoip.com.br> {
WTLS support
WSP fixes and enhancements
}
Simharajan Srishylam <Simharajan.Srishylam[AT]netapp.com> {
Assorted WCCP2 enhancements
ICAP support
}
Greg Kilfoyle <gregk[AT]redback.com> {
BOOTP option 82 (Relay Agent Information option) support
}
James E. Flemer <jflemer[AT]acm.jhu.edu> {
Hidden Boolean fields set if the IP or ICMP checksums are bad
}
Peter Lei <peterlei[AT]cisco.com> {
RFC 3024 reverse tunneling support for the Mobile IP dissector
}
Thomas Gimpel <thomas.gimpel[AT]ferrari.de> {
Fixes to the Q.931 dissector
}
Albert Chin <china[AT]thewrittenword.com> {
Fixes to Lemon to get it to compile on platforms (such as some
versions of Tru64 UNIX) that define TRUE and FALSE
Fixes for various non-GCC compiler warnings
Fix to TCP graph code to eliminate a GCCism
Simplify some autoconf code
}
Charles Levert <charles[AT]comm.polymtl.ca> {
CUPS browsing protocol support
}
Todd Sabin <tas[AT]webspan.net> {
DCE RPC support
Cleaned up "get_column_format_matches()"
Skeleton NSPI dissector
}
Eduardo Pérez Ureta <eperez[AT]dei.inf.uc3m.es> {
GUI fixes
}
Martin Thomas <martin_a_thomas[AT]yahoo.com> {
Support for TPKT being used for its original purpose (TCP port
102, containing OSI transport layer PDUs)
Handle address lengths based on TOA bit in X.25
}
Hartmut Mueller <hartmut[AT]wendolene.ping.de> {
BACNET support
}
Michal Melerowicz <Michal.Melerowicz[AT]nokia.com> {
GTP support
GTPv1 support and GTPv0 improvements
}
Hannes Gredler <hannes[AT]juniper.net> {
OSI network layer over PPP support
Many IS-IS enhancements
Juniper Networks vendor ID in RADIUS dissector
HELLO message support in RSVP
Many BGP enhancements and bug fixes
Fix display of OSI system IDs to use a dot rather than a dash
before the PSN byte
}
Inoue <inoue[AT]ainet.or.jp> {
Preference dialog crash fix
}
Olivier Biot <Olivier.Biot[AT]siemens.atea.be> {
Various WTP fixes and enhancements
}
Patrick Wolfe <pjw[AT]zocalo.cellular.ameritech.com> {
WTLS client and trusted key ID handling enhancements
}
Martin Held <Martin.Held[AT]icn.siemens.de> {
RANAP support
}
Riaan Swart <rswart[AT]cs.sun.ac.za> {
Modbus/TCP support
}
Christian Lacunza <celacunza[AT]gmx.net> {
Command-line option to control automatic scrolling in "Update
list of packets in real time" captures
}
Scott Renfro <scott[AT]renfro.org> {
LDAP checks for invalid packets
"-t" flag for editcap, to adjust timestamps in frames
SSL/TLS support
Mergecap utility for merging capture files
Fixes for some calls to "localtime()" that didn't check whether
the call succeeded (it doesn't always do so on Windows, for
example)
}
Juan Toledo <toledo[AT]users.sourceforge.net> {
Passive FTP support
}
Jean-Christian Pennetier <jeanchristian.pennetier[AT]rd.francetelecom.fr> {
ISIS IPv6 routing TLV dissection
ISIS traffic engineering TLV dissection
IS neighbor and IP reachability TLVs given their own subtree
types
Assorted other ISIS fixes
}
Jian Yu <bgp4news[AT]yahoo.com> {
BGP enhancements
}
Eran Mann <emann[AT]opticalaccess.com> {
Fix to LDP prefix FEC dissection for IPv4
}
Andy Hood <ahood[AT]westpac.com.au> {
"--with-ssl" configuration option, to use if UCD SNMP is
compiled with crypto support and needs -lcrypto
On Solaris, with GCC, add flags to reduce warnings from
inadequacies of function declarations in X11 headers
Translate enterprise OIDs in SNMP traps to strings if possible
AODV6 dissector compile fixes for AIX
}
Randy McEoin <rmceoin[AT]pe.net> {
Appletalk Data Stream Interface (used by AFP-over-TCP) support
Xyplex protocol support
}
Edgar Iglesias <edgar.iglesias[AT]axis.com> {
Fix to TCP reassembly code for retransmitted data
}
Martina Obermeier <Martina.Obermeier[AT]icn.siemens.de> {
ISUP (ISDN User Part, ITU-T recommendation Q.763) support
}
Javier Achirica <achirica[AT]ttd.net> {
IEEE 802.11 bug fixes and WEP support
}
B. Johannessen <bob[AT]havoq.com> {
Gnutella support
}
Thierry Pelle <thierry.pelle[AT]rd.francetelecom.fr> {
MP-BGP message support
Redback vendor-specific items for RADIUS and L2TP
}
Francisco Javier Cabello <fjcabello[AT]vtools.es> {
RFC 2250 MPEG1 support
}
Laurent Rabret <laurent.rabret[AT]rd.francetelecom.fr> {
LCP-over Ethernet and IPCP-over-Ethernet support (to handle
captures on Windows; PPP packets show up as Ethernet
packets, courtesy of NDISWAN, and apparently internal-to-PPP
protocols get passed through, with PPP protocol types
appearing in the Ethernet protocol type field)
PAP support
BGP bug fix
}
nuf si <gnippiks[AT]yahoo.com> {
RTSP fixes
}
Jeff Morriss <jeff.morriss[AT]ulticom.com> {
M2PA support
Support for ANSI flavor of MTP3
SCCP support
}
Aamer Akhter <aakhter[AT]cisco.com> {
Support for draft-rosen-vpn-ospf-bgp-mpls
Support for additional BGP extended communities
LDP support for draft-martini-l2circuit-trans-mpls, LDP status
code updates, and small LDP cleanups
LDP support for draft-martini-l2circuit-encap-mpls for
Ethernet-over-MPLS
Fix initialization of ett_slarp in CHDLC dissector
}
Pekka Savola <pekkas[AT]netcore.fi> {
Autoconf support for glibc IPv6 support
}
David Eisner <cradle[AT]Glue.umd.edu> {
NCP-over-IP bug fix
}
Steve Dickson <steved[AT]talarian.com> {
PGM (Pragmatic General Multicast) support
}
Markus Seehofer <mseehofe[AT]nt.hirschmann.de> {
GMRP support
}
Lee Berger <lberger[AT]roy.org> {
Fix to FT_UINT_STRING handling
}
Motonori Shindo <mshindo[AT]mshindo.net> {
Shiva PAP, EAP, and CBCP negotiation in LCP Callback Operation
support in PPP dissector
Support for decoding additional data, for CHAP, in LCP
Authentication Protocol option
Additional vendor (CoSine) for Radius
CoSine VSA support for Radius
Patches to PPP for CHAP support
Patches to packet-x11-keysym.h to clean up 8-bit chars
Fixes to take the Vendor-Specific attribute into consideration
when dissecting L2TP
L2TP Dissconnect Cause Information AVP support
PPP CCP support
PPP compressed packet support
Cooperative Route Filtering Capability support in BGP
Route Refresh Message bug fix in BGP
CBCP support in PPP
Fix Ascend/Lucent trace reading code to handle later trace
formats that have an ASCII dump at the end of the line
Get rid of "send output to /dev/null" hack in Ascend/Lucent
trace reading code's Flex scanner
BACP and BAP support in PPP dissector
Add necessary cast in TCP graph code
Fix up the generation of PDB files, clean them up on a "nmake -f
makefile.nmake clean", and put all the PDB files into the
Windows binary distribution
Delete installed data files on a Windows uninstallation
OSPF fixes
Support for reading CoSine L2 debug output
Assorted LDP enhancements and fixes
}
Terje Krogdahl <tekr[AT]nextra.com> {
Additional AVPs, and Event-Timestamp support, in RADIUS
}
Jean-Francois Mule <jfmule[AT]clarent.com> {
Additional SIP methods
}
Thomas Wittwer <thomas.wittwer[AT]iclip.ch> {
HTTP dissector registered by name
"prefs_register_string_preference()" made available to plugins
Remove unnecessary calls to "prefs_module_foreach()"
Support for stopping capture at specified capture file size or
capture duration
}
Matthias Nyffenegger <matthias.nyffenegger[AT]iclip.ch> {
Support for stopping capture at specified capture file size or
capture duration
}
Palle Lyckegaard <Palle[AT]lyckegaard.dk> {
OSPFv3 support
}
Nicolas Balkota <balkota[AT]mac.com> {
GTPv1 support and GTPv0 improvements
}
Tom Uijldert <Tom.Uijldert[AT]cmg.nl> {
WTP fixes
MMSE support
Push-traffic dissecting for WSP/WTLS
UCP support
SMPP support
multipart-content support in WSP/MMSE
WTP reassembly
WTP TPI dissection
}
Endoh Akira <endoh[AT]netmarks.co.jp> {
Support for dissecting multiple BGP capabilities
Sync PPP protocol names with the IANA database
MPLSCP, CDPCP, and CDP over PPP support
}
Graeme Hewson <graeme.hewson[AT]oracle.com> {
Additional Ascend codes, and IETF codes, for Radius
Fix various capture problems
Add some sanity checks to DNS dissector to avoid loops
Command-line interface cleanups
Varargs code cleanup in "simple_dialog.c"
Make dialog box pop up only after a minimum period of time
}
Pasi Eronen <pasi.eronen[at]nixu.com> {
Patches to the dcerpc dissector for data representation decoding
XDMCP support
Support for PCT cipher suites and record layer in SSL
}
Georg von Zezschwitz <gvz[AT]2scale.net> {
WSP fixes
Support for concatenated PDUs
Put URL of WSP GET/POST in the Info column
Fix a bug with WSP Connect requests with headers > 256 bytes
Implement attributes of WSP Suspend/Resume
}
Steffen Weinreich <steve[AT]weinreich.org> {
UCP fixes
}
Marc Milgram <mmilgram[AT]arrayinc.com> {
VMS TCPIPtrace wiretap module
DBS Etherwatch wiretap module
}
Gordon McKinney <gordon[AT]night-ray.com> {
Enhanced Ethereal icon for Windows
Support for time stamping packets in text2pcap
Fix to text2pcap to handle colons after offset field
Make IP-over-PPP work with the TCP graph code
}
Pavel Novotny <Pavel.Novotny[AT]icn.siemens.de> {
Additional items for RADIUS tunnels
}
Shinsuke Suzuki <suz[AT]kame.net> {
Fix to IPv6 PIM checksum calculation
}
Andrew C. Feren <aferen[AT]cetacean.com> {
Makefile fix
Solaris packaging fixes
Add ifdefs to the top-level Makefile.nmake to avoid using
Python if PYTHON isn't defined
make-manuf fix
Put all of Cisco's OUIs into manuf.tmpl
Put human-readable descriptions in the combo box entries for
"Interface:" on Windows
}
Tomas Kukosa <tomas.kukosa[AT]anfdata.cz> {
Additional routines made available to plugins
Support in Wiretap for DLT_HHDLC
}
Andreas Stockmeier <a.stockmeier[AT]avm.de> {
IPCOMP transformation and ID_IPV4_ADDR_SUBNET for ISAKMP
Fix the file dialog box code to use "g_strdup()", not "strdup()"
to copy strings
}
Pekka Nikander <pekka.nikander[AT]nomadiclab.com> {
IEEE 802.1x, a/k/a EAPOL
PPP/EAPOL EAP support
}
Hamish Moffatt <hamish[AT]cloud.net.au> {
MPLS support for handling either IPv4 or IPv6 as the payload
protocol type
Win32 Makefile fixes
Use pod2html rather than man2html to build HTML man pages
Fix ethereal.nsi.in for recent versions of NSIS
}
Kazushi Sugyo <k-sugyou[AT]nwsl.mesh.ad.jp> {
Fix to display of AH length field
Fix to code to scan the SIOCGIFCONF list
}
Tim Potter <tpot[AT]samba.org> {
Support for DCE RPC atop SMB
Support for several Microsoft DCE RPC services used with SMB
Added code to call request and reply subdissectors in DCE RPC
Display the FID in the Info column of NT Create and X replies
Display the setup words in some SMB Transaction messages and
extract the FID from them
Use the FID, for DCE RPC-over-SMB, as part of the conversation
matching
Assorted SMB fixes
NT SID dissection
}
Raghu Angadi <rangadi[AT]inktomi.com> {
WCCP capability info dissection bug fix
}
Taisuke Sasaki <sasaki[AT]soft.net.fujitsu.co.jp> {
OSPFv3 fixes
}
Tim Newsham <newsham[AT]lava.net> {
Support for 802.11+Prism II monitor-mode link-layer headers
}
Tom Nisbet <Tnisbet[AT]VisualNetworks.com> {
Support for reading Visual Networks traffic capture files
}
Darren New <dnew[AT]san.rr.com> {
BXXP dissector modified to be a BEEP dissector
}
Pavel Mores <pvl[AT]uh.cz> {
TCP time-sequence, round-trip time, and throughput graphs
}
Bernd Becker <bb[AT]bernd-becker.de> {
Support for LOCATION_FORWARD, LOCATION_FORWARD_PERM and
NEEDS_ADDRESSING_MODE replies in GIOP
ethereal_gen.py cleanups
Reset the Protocol column to GIOP if no heuristic dissectors
succeed
Enhancements to TNS dissector, including desegmentation
}
Heinz Prantner <Heinz.Prantner[AT]radisys.com> {
M2TP support
}
Irfan Khan <ikhan[AT]qualcomm.com> {
pppdump reader fixes
Van Jacobson decompression support for PPP
}
Jayaram V.R <vjayar[AT]cisco.com> {
PPP multiplexing support
}
Dinesh Dutt <ddutt[AT]cisco.com> {
SCSI dissector, for use by iSCSI and other protocols that
transport SCSI operations
}
Nagarjuna Venna <nvenna[AT]Brixnet.com> {
Only display the reason in BYE RTCP packets if it's present
}
Jirka Novak <j.novak[AT]netsystem.cz> {
Support for generating filter expressions based on packet list
column values
Support for adding filter expressions generated from column or
protocol tree field values to the current expression rather
than replacing the current expression
Support for hex dump mode in "Follow TCP Stream" window showing
hex and ASCII data
}
Ricardo Barroetaveña <rbarroetavena[AT]veufort.com> {
Enhanced LDP support
Support TCP reassembly requiring multiple steps (e.g.,
reassemble the PDU header to get the length of the PDU, then
reassemble the PDU based on that length)
}
Alan Harrison <alanharrison[AT]mail.com> {
Fixes to EtherPeek file reader code
}
Mike Frantzen <frantzen[AT]w4g.org> {
Support for capturing on, and reading captures from, OpenBSD
firewall logging virtual interface
}
Charlie Duke <cduke[AT]fvc.com> {
Added routines to the plugin table
}
Alfred Arnold <Alfred.Arnold[AT]elsa.de> {
IAPP support
}
Dermot Bradley <dermot.bradley[AT]openwave.com> {
Support for Openwave-specific WSP headers
Support for Openwave-specific WSP field names
Support for additional WSP content types from Openwave
Support for additional WSP language values
}
Adam Sulmicki <adam[AT]cfar.umd.edu> {
Add more type values for EAP.
Fix off-by-one bug when displaying Code of EAP message.
Additional AVPs for RADIUS, and making RD_TP_CONNECT_INFO a
RADIUS_STRING rather than a RADIUS_STRING_TAGGED
Dissect EAP messages inside RADIUS
Dissect SSL-encoded stuff inside EAP
Cisco LEAP support
EAP-TLS reassembly
Other EAP enhancements
}
Kari Tiirikainen <kari.tiirikainen[AT]nokia.com>
COPS-PR extension support
}
John Mackenzie <John.A.Mackenzie[AT]t-online.de> {
Put missing initializations of table entries in "plugins.c"
Register GIOP dissector as a UDP heuristic dissector
}
Peter Valchev <pvalchev[AT]openbsd.org> {
Fix editcap to assign the result of "getopt()" to an "int" and
to check "getopt()"s return value with -1 rather than EOF
}
Alex Ruzin <alexr[AT]nbase.co.il> {
Support for IEEE 802.1w RST BPDUs
}
Jouni Malinen <jkmaline[AT]cc.hut.fi> {
802.11 authentication frame dissection bug fix
Fix offset of challenge element in 802.11 dissector
Show fragmented 802.11 frames as fragments
}
Paul E. Erkkila <pee[AT]erkkila.org> {
Skinny Client Control Protocol enhancements
}
Jakob Schlyter <jakob[AT]crt.se> {
SIP method additions
}
Jim Sienicki <sienicki[AT]issanni.com> {
Additional vendor (Issani) for Radius
Issani VSA support for Radius
}
Steven French <sfrench[AT]us.ibm.com> {
Add names for some additional spool service RPCs
Decode NT Rename SMB
}
Diana Eichert <deicher[AT]sandia.gov> {
"-q" flag to Tethereal to suppress packet count display
}
Blair Cooper <blair[AT]teamon.com> {
WebDAV support
}
Kikuchi Ayamura <ayamura[AT]ayamura.org> {
Include <ucd-snmp/ucd-snmp-config.h> to fix IRIX compilation
problems
}
Didier Gautheron <dgautheron[AT]magic.fr> {
X11 bug fix
AppleTalk Transaction Protocol, AppleTalk Stream Protocol, and
AppleTalk Filing Protocol support
DSI updates
"frame.marked" field set on marked frames
Don't show progress bar for quick "Find Frame" searches
Add "Find Next" and "Find Previous" to repeat searches
Move port number from AppleTalk addresses to separate column
Put in hidden fields for AppleTalk source and destination
addresses
AppleTalk Zone Information Protocol support
}
Phil Williams <csypbw[AT]comp.leeds.ac.uk> {
Support for looking up fields by name
}
Kevin Humphries <khumphries[AT]networld.com> {
Additional PIM hello options support
}
Erik Nordström <erik.nordstrom[AT]it.uu.se> {
AODV dissection support
}
Devin Heitmueller <dheitmueller[AT]netilla.com> {
Additional RAP error code
Give the user a warning if they click "New" in the filter list
editing code without having specified a filter name and string
Fix to treat the "send buffer length" in SMB RAP messages as
being present in the packet
Dissection of NTLMSSP packets for DCERPC
}
Chenjiang Hu <chu[AT]chiaro.com> {
ISIS bug fix for dissecting unreserved bandwidths
}
Kan Sasaki <sasaki[AT]fcc.ad.jp> {
VSA decoding and other changes to RADIUS
}
Stefan Wenk <stefan.wenk[AT]gmx.at> {
SIP heuristic dissector
}
Ruud Linders <ruud[AT]lucent.com> {
Report errors from "g_module_open()"
}
Andrew Esh <Andrew.Esh[AT]tricord.com> {
Support for additional interest levels in
TRANS2_QUERY_FS_INFORMATION, and fix handling of level 1022
to treat the file name as always being in Unicode
Fix a compiler warning
}
Greg Morris <GMORRIS[AT]novell.com> {
NCP - NetWare Core Protocol
}
Dirk Steinberg <dws[AT]dirksteinberg.de> {
Fixes to BGP problems
}
Kari Heikkila <kari.o.heikkila[AT]nokia.com> {
Fix for WTP PDUs not containing user data
}
Olivier Dreux <Olivier.Dreux[AT]alcatel.fr> {
Add PPP support to GTP
}
Michael Stiller <ms[AT]2scale.net> {
Java RMI protocol support
}
Antti Tuominen <ajtuomin[AT]tml.hut.fi> {
AODV6 support
}
Martin Gignac <lmcgign[AT]mobilitylab.net> {
Various MMSE fixes
}
John Wells <wells[AT]ieee.org> {
MIP fix.
}
Loic Tortay <tortay[AT]cc.in2p3.fr> {
AFS fix
}
Steve Housley <Steve_Housley[AT]eur.3com.com> {
802.3ad LACP support
}
Peter Hawkins <peter[AT]hawkins.emu.id.au> {
Various bounds-check fixes
}
Bill Fumerola <billf[AT]FreeBSD.org> {
Recognize "Option negotiated failed" error in TFTP
}
Chris Waters <chris[AT]waters.co.nz> {
Don't use "bool" as a variable name or structure member, as it's
a C++ keyword
Check 802.11 FCS if present
}
Solomon Peachy <pizza[AT]shaftnet.org> {
WEP support and other mangling of the 802.11 disector
}
Jaime Fournier <jafour1[AT]yahoo.com> {
Handle DCE RPC connectionless CANCEL PDUs with no body
}
Markus Steinmann <ms[AT]seh.de> {
Add IPX SAP for SEH's InterCon Printserver
Support for writing LANalyzer files
}
Tsutomu Mieno <iitom[AT]utouto.com> {
DHCPv6 updates
}
Yasuhiro Shirasaki <yasuhiro[AT]gnome.gr.jp> {
DHCPv6 updates
}
Anand V. Narwani <anarwani[AT]cisco.com> {
gtk/Makefile.am fix
DOCSIS support, including support for "Ethernet" captures where
the raw frame is a DOCSIS frame rather than an Ethernet
frame (some Cisco cable-modem head-end gear can send out a
trace of all traffic on an Ethernet, but what it sends are
the raw bytes of DOCSIS frames, not Ethernet frames)
}
Christopher K. St. John <cks[AT]distributopia.com> {
Apache JServ Protocol v1.3 support
}
Nix <nix[AT]esperi.demon.co.uk> {
Don't add "-I/usr/include" to CFLAGS or CPPFLAGS
Expand the plugin directory path at install time
}
Liviu Daia <Liviu.Daia[AT]imar.ro> {
Fix to eliminate crash when setting "column.format" preference
from the command line
}
Richard Urwin <rurwin[AT]schenck.co.uk> {
Developer documentation fixes and updates
}
Prabhakar Krishnan <Prabhakar.Krishnan[AT]netapp.com> {
Add item to SMB protocol tree for time between request and
response
}
Jim McDonough <jmcd[AT]us.ibm.com> {
Support for LsaQueryInformationPolicy2 in the LSA dissector
}
Sergei Shokhor <sshokhor[AT]uroam.com> {
Bugfix for EPM
}
Hidetaka Ogawa <ogawa[AT]bs2.qnes.nec.co.jp> {
Fix PPP FCS computation to include address and control field if
present
}
Jan Kratochvil <short[AT]ucw.cz> {
Fix to MMSE handling of strings with specified character set
}
Alfred Koebler <ak[AT]icon-sult.de> {
Support for interpreting Ethernet captures as CheckPoint
FireWall-1 monitor files (those files look like snoop
files for Ethernet)
}
Vassilii Khachaturov <Vassilii.Khachaturov[AT]comverse.com> {
Put protocol blurbs into tables generated with the "-G fields"
flag
}
Bill Studenmund <wrstuden[AT]wasabisystems.com> {
Fix handling of SCSI mode sense
}
Brian Bruns <camber[AT]ais.org> {
TDS
}
Flavio Poletti <flavio[AT]polettix.it> {
Fix bug in decoding of maximum uplink and downlink rate in GTP
v1
Handle 3GPP QoS in RADIUS messages
}
Marcus Haebler <haeblerm[AT]yahoo.com> {
Handle a sub-protocol field of 0x00 as PPP
}
Ulf Lamping <ulf.lamping[AT]web.de> {
Put "bytes" after the byte counts for the frame sizes in the
top-level item for the "Frame" protocol
Put the source and destination MAC addresses into the top-level
item for Ethernet
Added more information to progress dialog box
}
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to
give his permission to use his version of snprintf.c.
Dan Lasley <dlasley[AT]promus.com> gave permission for his dumpit() hex-dump
routine to be used.
Mattia Cazzola <mattiac[AT]alinet.it> provided a patch to the hex dump
display routine.
We use the exception module from Kazlib, a C library written by
Kaz Kylheku <kaz[AT]ashi.footprints.net>. Thanks goes to him for his
well-written library. The Kazlib home page can be found at
http://users.footprints.net/~kaz/kazlib.html
|