aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 7d15d87e5dd8fbbc588488f90bee428139d0301f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2004-03-26 00:28  guy

	* AUTHORS, packet-sip.c, gtk/Makefile.common, gtk/sip_stat.c:

	  From Martin Mathieson: SIP statistics tap.

2004-03-26 00:21  guy

	* packet-ber.c, packet-ber.h, packet-kerberos.c:

	  Fix a typo.

	  Clean up white space.

2004-03-26 00:01  guy

	* plugins/: Xass-list, Xplugin_api.c, Xplugin_api.h,
	  Xplugin_api_decls.h, Xplugin_table.h:

	  Update for Tomas Kukosa's new APIs to get the parent and the
	  nth-grandparent-up for a protocol tree item and to get the last
	  item created by the BER dissector (that API and the new names for
	  the universal tags were supplied by him - the checkin item didn't
	  give him credit).

2004-03-26 00:00  guy

	* packet-kerberos.c:

	  From Tomas Kukosa: use the "proto_item_get_parent()" and
	  "proto_item_get_parent_nth()" routines, and use the new name for
	  some of the constants for universal tags.

2004-03-25 23:59  guy

	* packet-q931.c:

	  From Tomas Kukosa: put the number string for a number IE into the
	  top-level item for the IE tree.

2004-03-25 23:58  guy

	* packet-per.c:

	  From Tomas Kukosa: don't allow the PER protocol to be disabled.

2004-03-25 23:57  guy

	* packet-ber.c, packet-ber.h:

	  Add constants and names for all universal tags.

	  Add "get_ber_last_created_item()" to get the last created item -
	  you can't access the global variable from a plugin.

2004-03-25 23:55  guy

	* epan/proto.c, epan/proto.h, plugins/plugin_api_list.c:

	  From Tomas Kukosa: add APIs to get the parent of a protocol tree
	  item and the item N levels up from a protocol tree item.

2004-03-25 23:25  tuexen

	* packet-m3ua.c:

	  Fix tags for 07 version.

2004-03-25 23:11  guy

	* plugins/: ciscosm/.cvsignore, rlm/.cvsignore, rudp/.cvsignore:

	  Add .cvsignore files to the new plugins.

2004-03-25 23:09  guy

	* plugins/: ciscosm/packet-sm.c, rlm/packet-rlm.c,
	  rudp/packet-rudp.c:

	  Squelch compiler warnings, and remove some trailing blanks from
	  lines.

2004-03-25 19:11  guy

	* plugins/: ciscosm/AUTHORS, ciscosm/COPYING, ciscosm/ChangeLog,
	  ciscosm/INSTALL, ciscosm/NEWS, rlm/AUTHORS, rlm/COPYING,
	  rlm/ChangeLog, rlm/INSTALL, rlm/NEWS, rudp/AUTHORS, rudp/COPYING,
	  rudp/ChangeLog, rudp/INSTALL, rudp/NEWS:

	  Add the usual extra files to the new plugins.

2004-03-25 16:01  ulfl

	* doc/README.developer:

	  added hint to use g_snprintf instead of snprintf and sprintf

2004-03-25 11:21  guy

	* AUTHORS, Makefile.am, configure.in, doc/ethereal.pod,
	  packaging/nsis/Makefile.nmake, packaging/nsis/ethereal.nsi,
	  plugins/Makefile.am, plugins/Makefile.nmake,
	  plugins/ciscosm/Makefile.am, plugins/ciscosm/Makefile.nmake,
	  plugins/ciscosm/moduleinfo.h, plugins/ciscosm/packet-sm.c,
	  plugins/rlm/Makefile.am, plugins/rlm/Makefile.nmake,
	  plugins/rlm/moduleinfo.h, plugins/rlm/packet-rlm.c,
	  plugins/rudp/Makefile.am, plugins/rudp/Makefile.nmake,
	  plugins/rudp/moduleinfo.h, plugins/rudp/packet-rudp.c:

	  From Duncan Sargeant: Cisco SS7 RUDP, RLM, and Session Management
	  support.

2004-03-25 09:17  guy

	* packet-ber.c, packet-ber.h, packet-kerberos.c, epan/proto.c,
	  epan/proto.h, plugins/plugin_api_list.c, plugins/Xass-list,
	  plugins/Xplugin_api.c, plugins/Xplugin_api.h,
	  plugins/Xplugin_api_decls.h, plugins/Xplugin_table.h:

	  From Tomas Kukosa: BER dissector enhancements and proto.c updates
	  to support them.

	  From Ronnie Sahlberg: Kerberos updates with new constants from
	  the current draft, decryption and dissection of Kerberos blobs,
	  and changes to work with the changed BER dissector.

2004-03-25 08:01  guy

	* packet-dcerpc-rs_prop_plcy.c:

	  DCE RPC version numbers supplied to the registration routines are
	  just major version numbers.

2004-03-25 06:39  ulfl

	* packet-dcerpc-rs_prop_plcy.c:

	  MSVC warning removed

2004-03-25 04:44  guy

	* packet-mq.c:

	  MQ dissector update from metatech.

2004-03-24 21:27  obiot

	* epan/Makefile.am, epan/dfilter/Makefile.am,
	  epan/ftypes/Makefile.am, wiretap/Makefile.am:

	  Fix the CLEANFILES target so both static and shared libraries are
	  cleaned.

2004-03-24 06:36  ulfl

	* packet-aim-chatnav.c, packet-aim-invitation.c, packet-aim-oft.c,
	  packet-aim-popup.c, packet-aim-stats.c, packet-aim-translate.c:

	  commented out unused aim_handle's

2004-03-24 04:26  guy

	* packet-rsvp.c:

	  Use "tvb_format_text()" to display a string, so that
	  non-printable characters are handled reasonably.

2004-03-24 00:39  obiot

	* AUTHORS:

	  Update address.

2004-03-24 00:38  obiot

	* doc/ethereal-filter.pod.template:

	  Add a description for the bitwise_and (&) operator.

2004-03-23 21:19  guy

	* Makefile.common, alert_box.c, alert_box.h, dftest.c,
	  packet-diameter.c, report_err.h, tethereal.c, epan/Makefile.am,
	  epan/epan.c, epan/epan.h, epan/report_err.h, gtk/main.c,
	  plugins/plugin_api.h, plugins/plugin_api_list.c,
	  plugins/asn1/packet-asn1.c:

	  Make "epan_init()" take, as additional arguments, pointers to
	  routines that dissectors should call to report file open and read
	  errors, and have "report_open_failure()" and
	  "report_read_failure()" call through those pointers, rather than
	  being defined and exported by the application using libethereal -
	  instead, the application would define those functions and pass
	  pointers to them to 'epan_init()".

	  Move "report_err.h" to the epan directory, as the functions it
	  declares are now part of the libethereal API.

2004-03-23 19:51  guy

	* AUTHORS, Makefile.common, packet-ftam.c, packet-ftam.h,
	  epan/Makefile.common:

	  From Yuri Sidelnikov: FTAM support.

2004-03-23 19:37  guy

	* packet-pres.c, packet-pres.h:

	  From Yuriy Sidelnikov: call ACSI dissector for data blocks.

2004-03-23 19:31  guy

	* packet-3g-a11.c:

	  From Ryuji Somegawa: fix some decode problems.

2004-03-23 19:25  guy

	* AUTHORS, packet-ieee80211.c:

	  From Jouni Malinen: handle 802.11i RSN IE, and add new status and
	  result codes for 802.11i.

2004-03-23 18:59  tuexen

	* packet-m2pa.c:

	  - Updated reference to ID version 11.  - Added type of status
	  message to Info column.

2004-03-23 18:44  guy

	* packet-dcerpc-samr.c:

	  From Ronnie Sahlberg: small fix to prevent dereferencing null
	  pointers.

2004-03-23 18:36  guy

	* packet-aim-adverts.c, packet-aim-chat.c, packet-aim-chatnav.c,
	  packet-aim-directory.c, packet-aim-icq.c,
	  packet-aim-invitation.c, packet-aim-messaging.c,
	  packet-aim-oft.c, packet-aim-popup.c, packet-aim-stats.c,
	  packet-aim-translate.c, packet-aim-userlookup.c:

	  Zero-length arrays are *not* valid in C89, even if GCC doesn't
	  happen to have a problem with them; MSVC++, for example, doesn't
	  handle them, so we comment them out.

2004-03-23 18:33  tuexen

	* README.macos:

	  pcap-stdinc.h is not needed on a Mac OS X system.

2004-03-23 18:06  guy

	* packet-cdp.c, epan/tvbuff.c, epan/tvbuff.h:

	  Use "tvb_format_text()" to display strings, so we handle
	  non-printable characters.

	  Some strings appear to be null-padded; add a
	  "tvb_format_stringzpad()" routine to handle them, so that we
	  don't show the padding characters as "\000".

2004-03-23 18:04  tuexen

	* packet-sctp.c:

	  Add tap functionality.

2004-03-23 18:03  guy

	* packet-x11.c:

	  Handle the case where the keycodemap entry for one of the
	  keycodes processed in the first loop in "keycode2keysymString()"
	  is null.  I don't know whether the right thing to do is to give
	  up (as we're doing now) or to not check that map.

	  In that routine, we set "syms" to "keycodemap[keycode]", and give
	  up if it's null; use "syms" in that routine instead of
	  "keycodemap[keycode]", so we know that those places don't have to
	  worry about "keycodemap[keycode]" being null.

	  Fix up indentation.

2004-03-23 18:02  tuexen

	* Makefile.common:

	  Add packet-sctp.h

2004-03-23 17:27  tuexen

	* packet-sctp.h:

	  Include file for packet-sctp.c and tap listeners.

2004-03-23 15:39  tuexen

	* packet-m3ua.c:

	  Added support for version 07 of the ID.

2004-03-23 07:57  guy

	* gtk/menu.c:

	  From Tomas Kukosa: don't change the state of the "Expand Tree"
	  menu items if we're changing whether there's a packet currently
	  selected.

2004-03-23 07:40  guy

	* x11-fields:

	  "keys" is a LISTofCARD8, so it should have type BYTES, not UINT8.

2004-03-23 07:39  guy

	* packet-aim.c:

	  Get rid of a no-longer-used argument.

2004-03-23 07:23  guy

	* packet-aim.c:

	  The dissectors for particular AIM families aren't for real
	  protocols, and they don't create their own subtrees; hand them
	  the pointer to the AIM subtree, rather than the top-level tree,
	  so they'll put the protocol tree items in the AIM subtree.

2004-03-23 06:48  guy

	* capture.c:

	  Include "packet-ap1394.h" to declare "capture_ap1394()".

2004-03-23 06:21  guy

	* AUTHORS, Makefile.common, packet-aim-admin.c,
	  packet-aim-adverts.c, packet-aim-bos.c, packet-aim-buddylist.c,
	  packet-aim-chat.c, packet-aim-chatnav.c, packet-aim-directory.c,
	  packet-aim-generic.c, packet-aim-icq.c, packet-aim-invitation.c,
	  packet-aim-location.c, packet-aim-messaging.c, packet-aim-oft.c,
	  packet-aim-popup.c, packet-aim-signon.c, packet-aim-ssi.c,
	  packet-aim-stats.c, packet-aim-translate.c,
	  packet-aim-userlookup.c, packet-aim.c, packet-aim.h,
	  doc/ethereal.pod, epan/Makefile.common:

	  From Jelmer Vernooij: split the AIM dissector into multiple
	  files, and add a few more SNACs.

2004-03-23 03:19  guy

	* README.macos:

	  Note that you need X11 and the X11 developer headers and
	  libraries installed in order to build Ethereal.

	  Michael Tuexen indicated how to successfully build GTK+ 2.4 on
	  Mac OS X (10.3[.x], at least) - update the directions to give the
	  latest versions of GLib/Pango/GTK+/ATK and to give instructions
	  on how to make them build.

2004-03-23 01:58  guy

	* packet-ipv6.c:

	  The "len" argument to capture routines should not be decremented
	  as you move through the packet - it's the total length of
	  captured data.

2004-03-23 01:29  guy

	* packet-ucp.c:

	  If we don't find a trailing / in a parameter, throw the
	  appropriate exception (that's what the old code that did its own
	  scan did).

2004-03-23 01:02  guy

	* Makefile.common, capture.c, packet-ap1394.c, packet-ap1394.h,
	  epan/Makefile.common, epan/packet_info.h, epan/to_str.c,
	  wiretap/libpcap.c, wiretap/wtap.c, wiretap/wtap.h:

	  Add support for DLT_APPLE_IP_OVER_IEEE_1394.

2004-03-23 00:17  guy

	* wiretap/eyesdn.c:

	  Clean up the code to check the file type.

2004-03-22 23:50  guy

	* README.macos:

	  To build with GLib 2.x/GTK+ 2.x, you need to configure with
	  --enable-gtk2 regardless of whether you have GLib 1.2[.x]/GTK+
	  1.2[.x] installed or not.

2004-03-22 23:40  guy

	* README.macos:

	  Note that GTK+ 2.4 doesn't work, and indicate why.

	  Enumerate the dependencies for GLib 2.4/GTK+ 2.4, and indicate
	  that GNU gettext is also required, even though it's not in the
	  set of dependencies on the GTK+ site (after all, the ENTIRE WORLD
	  runs Linux, RIGHT?).

	  Give a (partial) order for the dependencies.

	  Note some issues with building and installing the JPEG and libpng
	  libraries.

2004-03-22 22:53  deniel

	* AUTHORS, packet-x11.c, x11-fields:

	  * X11 dissector:

	  - in decoding of replies: 0 is not an unknown opcode, it means
	  that the   request was unseen or that the opcode of the request
	  is unknown   (e.g. due to unseen / undecoded QueryExtension
	  replies)

	  - add special processing for QueryExtension requests & replies in
	  order to   store new opcodes in a value_string of opcodes saved
	  per conversation

	  - try to resynchronize sequence number once at first reply if no
	  initial   connection request was seen

	  - add decoding of SendEvent request

	  - add decoding of many replies (AllocColor, GetInputFocus,
	  GetGeometry,	 GetPointerControl, GetScreenSaver,
	  GetSelectionOwner, GrabKeyboard,   GrabPointer, InternAtom,
	  ListProperties, LookupColor, QueryBestSize,	QueryKeymap,
	  QueryPointer, TranslateCoordinates)

	  - fix decoding of EnterNotify / LeaveNotify events

	  - add decoding of most events (FocusIn, FocusOut, Expose,
	  GraphicsExpose,   NoExpose, VisibilityNotify, CreateNotify,
	  DestroyNotify, UnmapNotify,	MapNotify, MapRequest,
	  ReparentNotify, ConfigureNotify, GravityNotify,   ResizeRequest,
	  CirculateNotify, CirculateRequest, PropertyNotify,
	  SelectionClear, SelectionRequest, SelectionNotify,
	  ColormapNotify,   ClientMessage)

	  - miscellaneous changes & code cleaning

2004-03-22 22:37  gerald

	* packaging/nsis/ethereal.nsi:

	  !ifdef-ize out a GTKWimp text section.

2004-03-22 21:29  gerald

	* epan/Makefile.am:

	  Add Makefile.common to the distribution.

2004-03-22 20:35  gerald

	* Makefile.nmake, epan/Makefile.nmake:

	  From Lars Roland: Fix a couple of MSVC build problems.

2004-03-22 20:16  guy

	* packet-h225.c:

	  From Tomas Kukosa: supportedTunnelledProtocols in EndpointType is
	  a SEQUENCE OF TunnelledProtocol, not just a TunnelledProtocol.

2004-03-22 20:01  guy

	* packet-diameter-defs.h:

	  Make the strings in the NAS-Port-Type AVP match the text in
	  http://www.ietf.org/internet-drafts/draft-ietf-aaa-diameter-nasreq-14.txt.

2004-03-22 17:03  gerald

	* config.nmake, configure.in, epan/configure.in:

	  Bump the version up to 0.10.3.

2004-03-22 16:19  gerald

	* Makefile.am:

	  Back out previous accidentally-committed change.

2004-03-22 16:05  gerald

	* Makefile.am, packet-isup.c, packet-radius.c:

	  Handle null RADIUS attribute information without crashing.  Found
	  by Jonathan Heusser.

2004-03-22 01:18  guy

	* packet-cdp.c:

	  Fix a typo.

2004-03-21 23:46  guy

	* packet-3g-a11.c:

	  The CDMA2000 A11 dissector doesn't put anything into the protocol
	  tree for a packet with an unknown type, so we make it just reject
	  those packets so other dissectors can claim them.

2004-03-21 23:19  guy

	* packet-diameter.c:

	  Clean up white space.

	  Just use "proto_tree_add_item()" to put the session ID into the
	  protocol string.

2004-03-21 23:10  guy

	* packet-diameter.c:

	  From Anders Broman: fix the value strings for decoding of AVP
	  values, add the T flag, make the result code and session ID named
	  fields, and add some more field types.

2004-03-21 23:08  guy

	* packet-diameter-defs.h:

	  From Anders Broman: add some more AVP's, result codes, etc..

2004-03-21 22:55  guy

	* README.macos:

	  Update to note that the 10.3.3 Software Update will probably also
	  install a new libpcap shared library but not install new libpcap
	  headers.

2004-03-21 19:57  jmayer

	* packet-ipdc.h, packet-ipdc.c:

	  Prefix ENUM types ip IPDC_ in order to prevent type clashes with
	  windows includes (MSVC). Proposed fix by Ulf Lamping.

2004-03-21 19:04  jmayer

	* README.macos:

	  Update to include the libpcap problems. Using excerpts from a
	  mailexchange between Guy Harris and Peter ("downtime").

2004-03-21 17:13  nneul

	* AUTHORS, packet-ipvs-syncd.c, epan/Makefile.common:

	  add support for dissecting multicast sync packets for Linux IPVS

2004-03-20 20:06  guy

	* packet-aim.c:

	  From Jelmer Vernooij: add support for SNAC(x,1), SNAC(1,2-6) and
	  SNAC(1,0x13).

2004-03-20 19:09  guy

	* packet-radius.c:

	  If we can't decrypt the user password, display it as hex data,
	  not as text.

	  Make "rdconvertbufftostr()" use "isprint()" to determine whether
	  to display a character as itself or as an escape.  Move our
	  redefinition of "isprint()" above "rdconvertbufftostr()" so that
	  we make the "is it printable?" decision appropriately.

2004-03-20 18:51  guy

	* packet-radius.c:

	  Make a separate display type for the user password, rather than
	  having the code to handle RADIUS_STRING know that User Password
	  has an AVP type value of 2.  As only the User Password field has
	  that display type, we don't have to check whether we're handling
	  vendor-specific VSAs.

2004-03-20 10:47  jmayer

	* packet-ipdc.h:

	  Remove trailing comma

2004-03-20 10:32  jmayer

	* acinclude.m4, epan/acinclude.m4:

	  Workaround for (at least) some RedHat platforms: Add -lresolv in
	  case it's missing but required by the heimdal libs.

2004-03-20 08:32  guy

	* epan/timestamp.c:

	  Make "timestamp_type" static, as all access to it should be
	  through the routines in this file.

2004-03-20 08:01  guy

	* packet-ipdc.c:

	  "tmp_tag_text" can hold a string of up to 255 characters, which
	  means it needs to be 256 characters long to hold a maximum-length
	  string plus a terminating '\0', as noted by Stefan Esser.

	  Don't bother putting in the null terminator at the end in the
	  case where we're putting an IP address or address/port into
	  "tmp_tag_text" - "sprintf()" does that for you.

	  In the case where it's an IP address and port, do it all in one
	  sprintf call - I don't think there's a guarantee that

		  sprintf(tmp_tag_text, "%s:%u", tmp_tag_text, ...)

	  works, although it could work.

	  Also, handle the case where the length is neither 4 (IP address)
	  nor 6 (IP address/port).

2004-03-20 07:49  guy

	* packet-ucp.c:

	  Don't use fixed-length buffers for strings - there's no absolute
	  string length.

2004-03-20 07:26  guy

	* packet-tcap.c:

	  In "dissect_tcap_tid()", check that the length of the transaction
	  ID is <= 4, so we don't copy more than 4 bytes to a 4-byte
	  integer.

2004-03-20 06:34  guy

	* gtk/: main.c, menu.c, proto_draw.c, proto_draw.h:

	  From Tomas Kukosa:

		  add Expand Tree to the View menu;

		  make the Expand Tree context menu active iff the
		  currently-selected item has a subtree;

		  fix the GTK2 code for Expand Tree.

2004-03-20 06:14  guy

	* AUTHORS, packet-aim.c, doc/ethereal.pod:

	  From Jelmer Vernooij: add support for some more SNACs.

2004-03-20 06:06  guy

	* packet-smb.c:

	  From Ronnie Sahlberg: Windows XP SP1 appears to send the OS and
	  LANMAN fields over the wire in ASCII in SessionSetupandX messages
	  even though the "Unicode strings" flag is set.

2004-03-20 05:53  guy

	* packet-ipdc.c, packet-ipdc.h:

	  Updates from Josh Bailey and Ruud Linders.

2004-03-19 20:40  tuexen

	* packet-sctp.c:

	  Fixed a typo: sctp.verfication_tag -> sctp.verification_tag

2004-03-19 10:24  guy

	* packet-e164.c:

	  Use "E.164", not "E164".

	  In the field names, use the filter name of the protocol - "e164"
	  - rather than "E164".

2004-03-19 07:54  guy

	* AUTHORS, Makefile.common, packet-gsm_a.c, packet-gsm_map.c,
	  packet-gsm_ss.c, packet-gsm_ss.h, packet-tcap.c, packet-tcap.h,
	  epan/Makefile.common:

	  From Michael Lum:

		  GSM A facility element decoding;

		  make TCAP dissector export routines for use by various
	  GSM
		  dissectors;

		  make GSM MAP dissector use exported TCAP
	  routines/defines;

		  GSM Supplementary Services support.

2004-03-19 07:49  guy

	* doc/README.developer:

	  Update to reflect current reality.

2004-03-19 06:23  guy

	* gtk/: main.c, main.h, menu.c:

	  From Tomas Kukosa: add a new "Expand Tree" context menu item,
	  which expands the selected item and all items below it.

2004-03-19 06:14  guy

	* packet-tcp.c:

	  From Ronnie Sahlberg:

		  make tcp_dissect_pdus() understand how to skip to the
	  next PDU;

		  make the skip-to-the-next-PDU code stop attempting to
	  decode
		  segments that are known to be completely within an
	  already seen
		  PDU.

2004-03-19 05:33  guy

	* packet-rtsp.c:

	  From Anders Broman: put E.164 numbers into the protocol tree
	  using the E.164 routines.

2004-03-19 05:22  guy

	* wiretap/libpcap.c:

	  In the read routine, set the 802.11 pseudo-header for
	  WTAP_ENCAP_PRISM_HEADER, WTAP_ENCAP_IEEE_802_11_WLAN_BSD, and
	  WTAP_ENCAP_IEEE_802_11_WLAN_AVS.

	  In the seek_read routine, set it for all 802.11 types.

2004-03-18 21:14  obiot

	* epan/timestamp.c:

	  From Lars Roland: Move timestamp_type into libethereal and
	  provide accessor methods for getting and setting the timestamp
	  type.

	  This is a move towards a real libethereal shared library.

2004-03-18 19:04  obiot

	* column.c, dftest.c, globals.h, tethereal.c, epan/Makefile.am,
	  epan/Makefile.nmake, epan/column-utils.c, epan/timestamp.h,
	  gtk/main.c, gtk/menu.c, gtk/packet_list.c:

	  From Lars Roland: Move timestamp_type into libethereal and
	  provide accessor methods for getting and setting the timestamp
	  type.

	  This is a move towards a real libethereal shared library.

2004-03-18 15:53  gerald

	* packet-wsp.c:

	  Call proto_register_field_array() after
	  proto_register_protocol(), and not before.

2004-03-18 09:00  guy

	* packet-isup.c, packet-q931.c, packet-q931.h:

	  From Tomas Kukosa:

		  improve the Info column text for reassembled messages;

		  register subdissectors for dissecting Q.931 IEs and make
	  the
		  ISUP dissector call the codeset 0 IE subdissector through
	  a
		  handle.

2004-03-18 08:25  guy

	* AUTHORS, Makefile.common, packet-ipdc.c, packet-ipdc.h,
	  doc/ethereal.pod, epan/Makefile.common:

	  From Josh Bailey: IPDC support.

2004-03-17 21:48  deniel

	* proto_hier_stats.c, proto_hier_stats.h,
	  gtk/proto_hier_stats_dlg.c:

	  * Protocol Hierarchy Statistics:

	  - store times of first and last packets in ph_stats_t

	  - add bandwidth columns in GUI

	  - miscellaneous code cleaning

2004-03-17 19:57  jmayer

	* Makefile.am:

	  Correctly spell REAMDE.macos

2004-03-17 19:50  obiot

	* packet-wbxml.c:

	  Enclose WV-CSP 1.2 token mappings in conditional compile
	  comments. Once the WV-CSP 1.2 specifications will be corrected
	  and in approved state, we can get rid of those comments (#ifdef
	  ... #endif).

2004-03-17 18:20  jmayer

	* Makefile.am, acinclude.m4, configure.in, epan/acinclude.m4,
	  epan/configure.in:

	  Experimental Heimdal Kerberos detection.  As this is experimental
	  and does not yet work reliably this feature is off by default.
	  Enable it by using --with-krb5 during configure.  Please do not
	  yet make use of this feature (i.e. please do not *use* the
	  defines provided by this option), until it has received further
	  testing and fixing.  Please run and check what the configure
	  says.

2004-03-17 18:13  jmayer

	* FAQ, manuf, help/faq.txt:

	  Sync with the sources

2004-03-17 17:46  jmayer

	* epan/Makefile.am:

	  Add new docsis files for static build. This is currently
	  necessary and needs to be fixed.

2004-03-17 09:24  guy

	* wiretap/eyesdn.c:

	  "esc_read()" is passed a FILE_T, not a FILE_T * - a FILE_T is a
	  pointer (a FILE * if zlib isn't used, a gzFile if zlib is used).

	  Use "size_t" for the amount of data to read in
	  "eyesdn_check_file_type()", to squelch signed vs. unsigned
	  warnings.

2004-03-17 09:01  guy

	* packet-slsk.c:

	  Suppress compiler warnings about unused arguments.

2004-03-17 09:00  guy

	* gtk/tcp_graph.c:

	  Use "g_ntohs()" rather than "ntohs()".

2004-03-17 08:59  guy

	* gtk/main.c:

	  Cast a "char" to "guchar" before passing it to the ctype macros,
	  so that it doesn't get sign-extended.

2004-03-17 08:46  guy

	* packet-gsm_map.c:

	  Unfortunately, GCC 2.8.1 on x86/Solaris 7 doesn't do enough
	  compile-time optimization; in particular, if you call
	  GSM_MAP_PARAM_DISPLAY with a Gtag argument of GSM_MAP_P_NONE, the
	  compiler does figure out that it only need generate code for the
	  first branch for the first if in that macro, and it sort of seems
	  to understand that _param_fcn is guaranteed to be null, but it
	  doesn't optimize out the test and the branch for _param_fcn not
	  being null - it does, however, generate a call to location 0,
	  which, when you compile as position-independent code, the
	  assembler refuses to assemble.

	  Therefore, we put into the test for _param_fcn being null an
	  additional test for Ga1 being GSM_MAP_P_NONE, which at least
	  manages to get the code through the compiler.

2004-03-17 06:55  guy

	* AUTHORS, doc/ethereal.pod, plugins/docsis/AUTHORS,
	  plugins/docsis/Makefile.am, plugins/docsis/Makefile.nmake,
	  plugins/docsis/README, plugins/docsis/packet-docsis.c,
	  plugins/docsis/packet-docsis.h,
	  plugins/docsis/packet-intrngreq.c,
	  plugins/docsis/packet-macmgmt.c, plugins/docsis/packet-rngreq.c,
	  plugins/docsis/packet-type29ucd.c, plugins/docsis/packet-ucd.c:

	  From Brian Wheeler: DOCSIS 2.0 support.

2004-03-16 19:23  guy

	* AUTHORS, packet-mq.c, doc/ethereal.pod, epan/Makefile.common:

	  From metatech: IBM WebSphere MQ protocol support.

2004-03-16 19:13  guy

	* packet-cdp.c:

	  From Paul Ionescu: handle ODR hub default gateway announcements.

2004-03-16 18:18  guy

	* README.macos:

	  It's Mac OS, not MacOS.

	  Note that Ethereal doesn't work on pre-X Mac OS, in case somebody
	  sees ".macos" and thinks it'll work on OS 9 or earlier versions.

	  Explain that GLib and GTK+ now need to be shared libraries, and
	  that the GLib 1.x and GTK+ 1.x release tarballs were built with
	  an older version of libtool that didn't support building them as
	  shared libraries on OS X.

2004-03-15 12:21  jmayer

	* AUTHORS, autogen.sh:

	  Peter Kjellerstedt: * Correct the version checks (use path
	  expansion   rather than regular expressions, and fail if the
	  tools are not installed at all).  * Make it possible to specify
	  other names for the	auto* tools to use (e.g., automake-1.6
	  instead   of automake).

2004-03-15 02:24  jmayer

	* TODO:

	  Add Build process items to TODO

2004-03-15 02:04  jmayer

	* README.macos:

	  Beginnings of README.macos

2004-03-14 23:55  deniel

	* gtk/: color_filters.c, color_filters.h:

	  * Color filters:

	  Read of color filters rewritten to remove possibility of buffer
	  overflow in read_filters_file() and to fix comment & blank line
	  handling.  This removes any limitation (and stack overflow) on
	  the lengths of color filter name and filter expression which are
	  now dynamically allocated.

	  Fix removal/deletion of color filters (avoid segmentation fault
	  when some color filter is deleted and then the list cleared for
	  instance).  The use of g_slist_remove() within an iterator is
	  simply unsafe if the code is not prepared to handle this.

	  Fix a small memory leak in revert_filters().

	  Remove inappropriate comments in read_filters().

	  Miscellaneous code cleaning.

2004-03-14 14:04  deniel

	* gtk/rtp_stream_dlg.c:

	  Fix incorrect number of arguments for format and compilation
	  warnings.

2004-03-14 08:07  jmayer

	* Makefile.am:

	  Whitespace change

2004-03-13 22:49  ulfl

	* capture-wpcap.c, capture.c, capture.h, gtk/capture_dlg.c,
	  gtk/main.c:

	  experimental: make usage of pcap_setbuff to increase the kernel
	  buffer size

2004-03-13 19:51  ulfl

	* doc/ethereal.pod, help/capturing.txt:

	  updated texts to reflect the latest GUI changes

2004-03-13 17:50  ulfl

	* gtk/menu.c:

	  using a stock icon for the open recent "clear list" item

2004-03-13 15:30  ulfl

	* gtk/simple_dialog.c:

	  replaced vsnprintf by g_vsnprintf

2004-03-13 15:15  ulfl

	* gtk/: ansi_a_stat.c, ansi_map_stat.c, bootp_stat.c,
	  capture_info_dlg.c, capture_prefs.c, color_dlg.c, dcerpc_stat.c,
	  decode_as_dlg.c, endpoint_talkers_table.c, fc_stat.c,
	  follow_dlg.c, gsm_a_stat.c, gsm_map_stat.c, gtk_stat_util.c,
	  gui_prefs.c, hostlist_table.c, io_stat.c, isup_stat.c,
	  ldap_stat.c, main.c, nameres_prefs.c, prefs_dlg.c, rpc_stat.c,
	  service_response_time_table.c, simple_dialog.c, smb_stat.c,
	  summary_dlg.c, tcp_graph.c, wsp_stat.c:

	  replaced sprintf / snprintf by g_snprintf, various other string
	  related changes

2004-03-13 14:07  ulfl

	* gtk/: bootp_stat.c, decode_as_dlg.c, follow_dlg.c,
	  h225_counter.c, h225_ras_srt.c, help_dlg.c, http_stat.c, main.c,
	  mgcp_stat.c:

	  various string related changes

2004-03-13 12:09  ulfl

	* gtk/: mgcp_stat.c, rpc_progs.c, rtp_analysis.c, rtp_stream_dlg.c,
	  supported_protos_dlg.c, tap_dfilter_dlg.c, wsp_stat.c:

	  various string related changes, mainly replace sprintf/snprintf
	  by g_snprintf

2004-03-13 11:47  ulfl

	* gtk/dfilter_expr_dlg.c:

	  replaced snprintf by g_snprintf and removed #include "snprintf.h"

2004-03-13 11:43  ulfl

	* gtk/color_dlg.c:

	  replaced gtk_widget_show() by a single gtk_widget_show_all(),
	  changed a printf thing

2004-03-13 10:15  jmayer

	* Makefile.am, epan/Makefile.am, epan/configure.in,
	  epan/dfilter/Makefile.am, epan/ftypes/Makefile.am,
	  wiretap/Makefile.am:

	  Make libethereal and libwiretap shared libs.

2004-03-13 09:35  guy

	* packet-cdp.c:

	  Clean up the message for one capability bit, as per a suggestion
	  by John Engelhart.

2004-03-13 09:27  guy

	* packet-pres.c:

	  From Yuriy Sidelnikov: handle the case where a presentation
	  selector exists but has a length of zero.

2004-03-12 17:23  gerald

	* util.c:

	  Don't automatically set a capture filter if DISPLAY or REMOTEHOST
	  are "localhost" or "127.0.0.1".

2004-03-12 16:31  gerald

	* Makefile.am, epan/Makefile.am:

	  Add cvsversion.h, x11-declarations.h, and x11-register-info.h to
	  CLEANFILES so that "make distcheck" will work.

2004-03-12 08:42  guy

	* packet-3g-a11.c:

	  Fix some typos, as per Ryuji Somegawa.

2004-03-11 09:54  sahlberg

	* packet-ndmp.c:

	  make NDMP start distinguishing between different versions.
	  Between v2 and v3 some structures changed their definition.

	  I arbirtrarily made the preference set V2 as the default.  I have
	  no idea what the most common ndmp version is	maybe someone that
	  knows which is the most popular iversion in the wild will change
	  it to default to that.

2004-03-11 09:18  guy

	* packet-symantec.c, epan/Makefile.common, wiretap/libpcap.c,
	  wiretap/wtap.c, wiretap/wtap.h:

	  Add support for DLT_ value 99, as used by the Axent Raptor
	  firewall/Symantec Enterprise Firewall.  Thanks, Axent/Symantec,
	  for not asking us for a DLT_ value and not telling us about the
	  link-layer type.

2004-03-11 03:24  gerald

	* packet-dccp.c:

	  Fix a typo.

2004-03-11 00:22  gerald

	* gtk/stream_prefs.c:

	  Make the color preferences popup menu shrink to its natural size
	  instead of filling in its entire table cell.

2004-03-10 23:42  guy

	* packet-3g-a11.c:

	  From Ryuji Somegawa:

		  add a value_string for the PDSN code;

		  use for the service option the value_string that was
	  already
		  there and add a new value to that value_string;

		  fix up some existing entries, and add some new entries,
	  to the
		  Radius attribute table.

2004-03-09 20:23  guy

	* packet-pgm.c:

	  Fix formats for "sizeof" so that "sizeof" values get displayed
	  correctly if they're "int"s or "long"s.

	  Get rid of the unused PGM_xxx_SZ variables.

2004-03-09 20:08  guy

	* packet-netflow.c:

	  Dynamically allocate the array of field entries in a NetFlow V9
	  template, rather than allocating a fixed table of 64 entries (and
	  possibly overflowing that table).

	  Clear out the hash table of template entries, freeing all the
	  allocated arrays, when a new capture is opened.

2004-03-09 11:31  jmayer

	* COPYING:

	  Prefix COPYING with the following text

		      Just to avoid some misunderstandings:
	  While parts of Ethereal can be built and distributed as
	  libraries, these parts are still covered by the license below,
	  and NOT by the Lesser General Public License or any other
	  license.

2004-03-09 09:24  guy

	* packet-dcerpc-afs4int.c, packet-dcerpc-fldb.c,
	  packet-dcerpc-rs_pgo.c:

	  Make variables not used outside the module static.

	  Initialize "hf_error_st" to -1, the same way other hf_ variables
	  are initialized, and make it an "int", as other hf_ variables
	  are.

2004-03-09 06:46  guy

	* packet-pgm.c:

	  Add some checks for valid option lengths, and for the first
	  option being a length option.

	  Break out of the option processing loop if we see an option with
	  the "end" bit set.

2004-03-09 02:12  obiot

	* packet-wbxml.c, packet-text-media.c:

	  Redesigned the token map aggregation.

	  New simpler lists for both known registered WBXML public IDs and
	  unknown lists based on content type value. The latter have the
	  possibility to add a discriminator which facilitates a more
	  correct/appropriate selection of the token map in cases where
	  more (backwards incompatible) versions exist.

	  Now the EXT_T tokens are correctly decoded, and a mapping
	  function can be assigned. This has been done in WML (existing
	  code reused there) and in WV-CSP (new functions looking up a
	  value in a value_string based on the offset after the EXT_T_0
	  token).

	  Add the textual WV-CSP media type to packet-text-media.c.

	  TODO - write the discriminators for WML, SyncML and WV-CSP. Add
	  the code for running the discriminators and possibly iterating
	  over a list of mappings.

2004-03-09 01:08  jmayer

	* packet-radius.c:

	  Lars Roland: Another ugly bzero() call fixed

2004-03-08 23:45  guy

	* file.c, file.h, gtk/menu.c:

	  Don't refer to "auto_scroll_live" if HAVE_LIBPCAP isn't defined -
	  and put the definition of it back under HAVE_LIBPCAP and don't
	  add an extra declaration in "file.h", as there's no longer code
	  that needs to refer to it if HAVE_LIBPCAP isn't defined.

2004-03-08 23:37  jmayer

	* autogen.sh:

	  Maybe automake version handling will be right this time

2004-03-08 23:19  guy

	* plugins/irda/packet-irda.c:

	  Add the URL of the specifications page.

2004-03-08 23:07  jmayer

	* file.c, file.h:

	  This makes ethereal compile again when configured --without-pcap
	  I don't know whether this is the optimal patch, but it does the
	  job.

	  file.h: extern declaration of auto_scroll_live file.c: always
	  declare auto_scroll_live

2004-03-08 22:44  jmayer

	* autogen.sh:

	  automake versions like 1.5.1 were not detected correctly

2004-03-08 22:03  obiot

	* packet-image-gif.c, packet-image-jfif.c, packet-multipart.c,
	  packet-smpp.c, packet-text-media.c, packet-wbxml.c, packet-wsp.c:

	  Remove email addresses and add a reference to the AUTHORS file
	  (or man page) for contacting the authors of the files.

2004-03-08 21:41  obiot

	* packet-wbxml.c:

	  Rearrange WV-CSP tokens in numeric order, and flag WV-CSP bugs.

	  Track differences between WV-CSP versions in the token
	  definitions.

	  Get rid of 8-bit characters in some comments.

	  Get rid of 'unused symbol' warnings.

2004-03-08 19:41  guy

	* plugins/irda/packet-ircomm.c:

	  Use "tvb_format_text()" on the port name, so that if there are
	  bytes in it that aren't printable characters, they'll be shown as
	  C-style escape sequences.

2004-03-08 07:47  sahlberg

	* gtk/io_stat.c:

	  update to iostat    make it automagically make sure the field is
	  part of the filter string

2004-03-07 22:46  guy

	* plugins/irda/packet-ircomm.c:

	  Fetch the port name string using "tvb_get_string()", so that we
	  don't have to worry about overflowing a buffer; thanks to Stefan
	  Esser for catching that one.	(It also means we handle it if
	  there's no '\0' at the end.)

2004-03-07 18:18  ulfl

	* gtk/dfilter_expr_dlg.c:

	  fixed a bug GTK_WIDGET_VISIBLE -> GTK_WIDGET_SENSITIVE, added
	  some (not yet finished) work

2004-03-07 02:57  guy

	* packet-radius.c:

	  Get rid of a variable I'd forgotten to back out before I checked
	  the code in.

2004-03-06 22:17  guy

	* packet-radius.c:

	  Note that for THE3GPP_IPV6_DNS_SERVERS we probably *do* need to
	  handle multiple IPv6 addresses.

2004-03-06 22:06  guy

	* packet-radius.c:

	  From Fritz Budiyanto: add various IPv6 attributes as per RFC
	  3162, and also handle the THE3GPP_IPV6_DNS_SERVERS attribute.

2004-03-06 21:46  guy

	* wiretap/Makefile.am:

	  From Jeff Morriss: delete "ascend-grammar.c" and
	  "ascend-grammar.h" with "make maintainer-clean", as they're
	  generated files.

2004-03-06 15:55  ulfl

	* gtk/dfilter_expr_dlg.c:

	  some code cleanup

2004-03-06 11:16  ulfl

	* gtk/dfilter_expr_dlg.c:

	  replaced show/hide by sensitive/insensitive to see all fields
	  everytime

2004-03-06 11:10  ulfl

	* gtk/capture_dlg.c:

	  using a table for layout of stop capture fields, added
	  limitations corresponding to the maximum filesize (2GB)

2004-03-06 10:46  guy

	* packet-q933.c:

	  Propagate to the Q.933 dissector Tomas Kukosa's change to have 3,
	  not 4, bits of codeset in an IE (that's how many bits of codeset
	  there are).

	  Make the "q933_info_element_vals[]" array have
	  NUM_INFO_ELEMENT_VALS members and define NUM_INFO_ELEMENT_VALS be
	  (Q933_IE_SHIFT_CODESET+1), as that array should have the number
	  of codesets worth of elements.

2004-03-06 10:29  guy

	* packet-q933.c:

	  Propagate to the Q.933 dissector Anders Broman's change to the
	  Q.931 dissector to add more filterable fields.

2004-03-06 10:11  guy

	* packet-q931.c:

	  From Anders Broman:

		  use the packet-e164.c stuff to analyze E.164 numbers;

		  add some more filterable fields.

2004-03-06 10:09  guy

	* packet-isup.c:

	  From Anders Broman:

		  use the packet-e164.c country code and international
	  network
		  value_string tables;

		  provide a bit mask for Q.850 cause code values.

2004-03-06 06:50  ulfl

	* gtk/capture_dlg.c:

	  using a table for layout of multi files fields, do some code
	  cleanup

2004-03-06 03:25  guy

	* packet-bgp.c, packet-eigrp.c, epan/Makefile.am,
	  epan/Makefile.nmake, epan/addr_and_mask.c, epan/addr_and_mask.h:

	  Add routines to process IPv{4,6}-address-and-prefix-length pairs,
	  masking out the appropriate bits in the address.

	  Use them in the BGP and EIGRP dissectors.

2004-03-06 02:35  guy

	* packet-isup.c:

	  Don't fetch the IWFA into a buffer, just use
	  "proto_tree_add_item()" - that way, we don't have to worry about
	  overflowing the buffer.  Thanks to Stefan Esser for reporting
	  that vulnerability.

	  Fix up the indentation and blurb for the IWFA IPv6 Address item.

2004-03-06 02:26  guy

	* packet-bgp.c:

	  Add a check for a too-large IPv6 prefix length, to avoid
	  overflowing a buffer, and add checks for IPv4 and IPv6 prefix
	  lengths of 0, to avoid underflowing a buffer.

2004-03-06 02:20  guy

	* packet-eigrp.c:

	  Put in the URL of a page that discusses EIGRP packets.

	  Handle the prefix length and address similarly to the way that
	  the BGP dissector does, so that we mask out all the bits that the
	  prefix length tells us to, rather than just masking out entire
	  bytes.

	  Check the prefix length so that we don't overflow the buffer for
	  prefix lengths > 32 - thanks to Stefan Esser for catching that
	  one - and so that we're not confused by a prefix length of 0.

2004-03-06 01:54  guy

	* packet-igap.c:

	  Handle bogus account and message lengths - don't overflow a
	  buffer.  Thanks to Stefan Esser for catching that.

2004-03-05 23:12  sahlberg

	* packet-dcerpc-netlogon.c, packet-dcerpc-netlogon.h:

	  Kerberos contain a structure that is VERY similar to
	  VALIDATE_SAM_INFO2 so declare it here.  This substructure in the
	  w2k kerberos PAC structure is called PAC_LOGIN_INFO and might
	  actually exist inside the netlogon interface as well?

2004-03-05 23:09  sahlberg

	* packet-dcerpc.c, packet-dcerpc.h:

	  we need to export init_ndr_pointer_list() from packet-dcerpc	so
	  that we can manually call functions to dissect NDR encoded
	  structures without going through the DCERPC interface.

	  There are NDR encoded blobs that are not encapsulated inside
	  DCERPC such as in kerberos  and those dissectors need this.

2004-03-05 22:25  obiot

	* packet-diameter.c:

	  Add a preference to the Diameter dissector allowing to control
	  whether application ID zero is a valid application ID (it is
	  often used as experimental applciation ID). By default, the
	  preference is disabled.

	  Fix the XML dictionary parser so it skips comment lines too.

2004-03-05 22:22  jmayer

	* packet-3g-a11.c:

	  Lars wrote gint16, not guint16

2004-03-05 22:17  jmayer

	* packet-3g-a11.c:

	  Replace u_-types by g-types (based on a patch by Lars Roland)
	  Remove extra "," at end of enum.  Remove extra ";" at end of
	  block.

2004-03-05 10:56  guy

	* AUTHORS, packet-3g-a11.c, doc/ethereal.pod, epan/Makefile.common:

	  From Ryuji Somegawa: CDMA2000 A11 support.

2004-03-05 10:47  guy

	* packet-ucp.c:

	  From Tom Uijldert: decode and display alphanumeric message
	  content and password as well.

2004-03-05 10:36  guy

	* packet-rtsp.c:

	  From Anders Broman: add some filterable fields, and un-hide some
	  other ones.

2004-03-05 10:29  guy

	* AUTHORS, Makefile.common, packet-e164.c, packet-e164.h,
	  packet-isup.c, epan/Makefile.common:

	  From Anders Broman: add a dissector for E.164 numbers, and use it
	  in the ISUP dissector, to allow filtering on E.164 numbers.

2004-03-05 10:08  guy

	* packet-gsm_map.c:

	  From Michael Lum:

		  Make a lot of changes to identify a subset of MAP
	  parameters in
		  messages.  IMSI, MSISDN, MSC Number, HLR Number, VLR
	  Number,
		  etc.	Most of the SMS related MAP messages are dissected
	  with
		  the parameters identified and decoded.  Also include PRN,
	  SRI,
		  and some of the other common messages (unfortunately not
	  Insert
		  Sub yet).

		  Fix some typoes.

2004-03-05 10:06  guy

	* packet-gsm_sms.c:

	  From Michael Lum: fix the TP header dissection, for some messages
	  the wrong bits were used to identify the message content.

2004-03-05 10:05  guy

	* packet-tcap.c:

	  From Michael Lum: show Component data even if it is handled by
	  another dissector.

2004-03-05 09:58  guy

	* AUTHORS, packet-cdp.c, doc/ethereal.pod:

	  From John Englehart: CDP updates (hello packets, show
	  capabilities the same way Cisco's "show cdp neighbor" does).

2004-03-05 00:02  jmayer

	* autogen.sh:

	  Libtool requires version 1.4

2004-03-04 23:33  obiot

	* packet-wbxml.c:

	  Cosmetic fix in WV-CSP tag definitions.

	  Flag a known VERY NASTY bug in WV-CSP 1.2 where a token is being
	  defined twice with the same binary identifier. It's already a
	  mess that they don't provide backwards compatible encodings; you
	  can now write a WV-CSP document without being able to parse it
	  because of version issues (hint: 1.2 has no public WBXML
	  identifier yet and the spec explicitly asks to set it to
	  "Unknown/Missing" so you could write an 1.1 message in 1.2
	  format, which looks *really* weird as the tokens are mixed in
	  both codings).

	  Consequence: I have to foresee a discriminator for the WBXML
	  dissectors so I *may* predict the correct version. I like
	  reviewing in engineering :)

2004-03-04 23:16  obiot

	* packet-wbxml.c:

	  Fix WML 1.0 token definitions (WBXML tokens must be in the range
	  0--3F as the 2 most significant bits of every token byte
	  represent whether the tag has content and/or has an attribute
	  list.

2004-03-04 22:24  ulfl

	* gtk/capture_dlg.c:

	  using a gtk_table instead of hbox'es for "multiple files" fields

2004-03-04 21:36  jmayer

	* .cvsignore, epan/.cvsignore:

	  Update x11 includes

2004-03-04 21:27  ulfl

	* capture.c, gtk/capture_dlg.c:

	  capture dialog limits now with units.  no gint "wrap around"
	  tests implemented yet

2004-03-04 19:31  ulfl

	* capture.c, capture.h, gtk/capture_dlg.c, gtk/main.c:

	  fixed differences between capture GUI frontend and backend

2004-03-04 16:19  jmayer

	* make-version.pl:

	  Andrew Hood: don't rely on last modified date + use numeric
	  compare

2004-03-04 08:53  jmayer

	* Makefile.common, epan/Makefile.common, epan/configure.in:

	  Check for PERL in epan/configure.in Fix generation of x11
	  includes.

2004-03-04 08:41  jmayer

	* aclocal-missing/.cvsignore:

	  aclocal-missing isn't needed any more

2004-03-04 08:26  jmayer

	* Makefile.am, epan/Makefile.am:

	  Move the x11 generation into epan.  aclocal-missing isn't needed
	  any more.

2004-03-04 08:25  jmayer

	* autogen.sh, aclocal-flags, aclocal-missing/dummy:

	  Hackremoval: Automake newer than 1.4 survives if it finds more
	  than one file for the same package.

2004-03-04 08:20  jmayer

	* mergecap.c:

	  Undo an unnecessary change

2004-03-04 07:51  guy

	* xdlc.c:

	  Back out the previous change - the problem wasn't what I thought
	  it was.  The problem is that two arguments to an "sprintf()" call
	  were switched; un-switch them.

2004-03-04 07:07  guy

	* packet-ber.h, packet-h225.h, packet-per.h, epan/plugins.c,
	  plugins/plugin_api.h, plugins/plugin_api_list.c,
	  plugins/Xass-list, plugins/Xplugin_api.c, plugins/Xplugin_api.h,
	  plugins/Xplugin_api_decls.h, plugins/Xplugin_table.h:

	  From Tomas Kukosa: add packet-ber.c routines to the plugin API.

2004-03-04 06:43  guy

	* autogen.sh:

	  Remove blanks after a parenthesis in the output of "autoconf
	  --version" and "automake --version".

	  We only appear to need autoconf 2.52, not 2.53.

2004-03-04 06:28  guy

	* configure.in, epan/configure.in, wiretap/configure.in:

	  Get rid of an out-of-date comment.

	  We only appear to need autoconf 2.52, not 2.53.

2004-03-03 23:51  jmayer

	* Makefile.am:

	  Remove generation of register.c from toplevel - it's in epan now

2004-03-03 22:47  jmayer

	* AUTHORS, packet-dcerpc.c:

	  Yaniv Kaul: show interface names - win32 only

2004-03-03 22:24  guy

	* wiretap/: 5views.c, airopeek9.c, ascend.c, cosine.c, csids.c,
	  dbs-etherwatch.c, etherpeek.c, eyesdn.c, hcidump.c, lanalyzer.c,
	  libpcap.c, netmon.c, netxray.c, radcom.c, snoop.c, visual.c,
	  vms.c, wtap.c:

	  Have "wtap_read()" set "wth->phdr.pkt_encap" to
	  "wth->file_encap", rather than requiring individual capture file
	  type handlers to do it (unless they're doing per-packet
	  encapsulation, in which case we check to make sure they didn't
	  *leave* it as WTAP_ENCAP_PER_PACKET).

2004-03-03 22:14  jmayer

	* AUTHORS, mergecap.c, doc/mergecap.pod:

	  Bill Guyton: mergecap can write to stdout by using the special
	  filename -

2004-03-03 21:55  jmayer

	* epan/Makefile.am:

	  Jeff Morriss: Remove packet-ncp2222.c during maintainer-clean

2004-03-03 21:35  jmayer

	* autogen.sh, configure.in, epan/configure.in,
	  wiretap/configure.in:

	  Require autoconf 2.53 and automake 1.6

2004-03-03 02:06  guy

	* xdlc.c:

	  Don't show "func=" if the P/F bit isn't set.

	  Don't put an extra space between "func=" and "P" or "F" if it is
	  set.

2004-03-03 01:49  guy

	* wiretap/eyesdn.c:

	  Set the packet encapsulation value to the file encapsulation.

2004-03-03 00:18  jmayer

	* Makefile.am:

	  Return of the .PHONY target (aka cvsversion.h)

2004-03-03 00:07  jmayer

	* Makefile.am, epan/Makefile.am:

	  Jeff Morriss: Move generation of packet-ncp2222.c to epan to make
	  things work again

2004-03-02 23:53  jmayer

	* epan/configure.in:

	  Jeff Morriss: Add PYTHON to epans configure

2004-03-02 23:45  jmayer

	* doc/README.plugins, plugins/asn1/packet-asn1.c,
	  plugins/irda/packet-irda.c, plugins/v5ua/packet-v5ua.c:

	  Note to self: If you update the code, you should update the docs
	  too.

	  Update README.plugins to use ENABLE_STATIC instead of
	  __ETHEREAL_STATIC__ Update some plugins, that were created after
	  my changes according to the outdated docs.  Changed occurrences
	  of G_MODULE_EXPORT void plugin_reg_handoff(void) into
	  G_MODULE_EXPORT void plugin_reg_handoff(void)

	  as the one line Python version doesn't work with the Python of
	  Suse 9.0

2004-03-02 22:15  obiot

	* packet-wbxml.c:

	  Add Wireless Village dissection (part 1). I will have to rewrite
	  the support for custom EXT_T_x handlers as in WV-CSP you're
	  allowed to *not* have the index point to a string in the string
	  table (verified in WBXML specs).

	  Unfortunately, WV-CSP is *never* backwards compatible.
	  Additionally, things get messed up when the WBXML document does
	  *not* contain the WV-CSP DocType.  As a result, I eventually
	  require to let the end-user choose which WV-CSP version they want
	  to see in such cases.

	  Fix code page errors with global tokens (don't depend on code
	  pages).

	  Add some comment at the top level of the file.

2004-03-02 22:07  ulfl

	* capture.c, capture.h, gtk/capture_dlg.c, gtk/main.c:

	  implemented capture dialog 3rd (+x) proposal

2004-03-02 19:13  ulfl

	* gtk/capture_dlg.c:

	  replaced all seperate gtk_widget_show() by a single
	  gtk_widget_show_all() call

2004-03-02 18:55  ulfl

	* Makefile.nmake, epan/Makefile.nmake:

	  from Lars Roland: fix Makefiles.nmake after changes from Joerg

2004-03-02 03:46  jmayer

	* epan/Makefile.am:

	  The sources of the plugin are now in ../oldpath/file.c

2004-03-02 01:48  jmayer

	* epan/Makefile.common:

	  Move register.c from from DISSECTOR_SRC to DISSECTOR_SUPPORT_SRC
	  to avoid a circular dependency

2004-03-02 01:39  jmayer

	* packet-postgresql.c:

	  Add a comment about PDU types

2004-03-02 01:21  jmayer

	* Makefile.am, Makefile.common, Makefile.nmake, epan/Makefile.am,
	  epan/Makefile.common, epan/Makefile.nmake, epan/configure.in:

	  Move the dissectors into libethereal (no static/shared lib
	  changes): - Create epan/Makefile.common - Move dissector_src and
	  helper files from Makefile.common to	 epan/Makefile.common -
	  Create register.c in epan/ - link all the files into libethereal
	  - put plugin_src into epan/Makefile.am

	  Try to make rpms build with rpm v4 again (sorry, I've forgotten
	  who to attribute this to).

2004-03-01 22:39  jmayer

	* packaging/rpm/SPECS/ethereal.spec.in:

	  Include shared libs if they exist

2004-03-01 22:36  jmayer

	* .cvsignore, epan/.cvsignore:

	  Remove some obsolete _static files

2004-03-01 22:28  jmayer

	* TODO:

	  Fix a typo

2004-03-01 09:11  sahlberg

	* packet-ber.c:

	  Update to BER, dont do anything at all if there is no octet
	  string (length == 0)

2004-03-01 08:34  sahlberg

	* packet-smb.c:

	  Make the SMB dissector better at catching what is probably a
	  DCERPC payload inside Write commands and make sure the proper
	  things are stored in the hash so we remember what is and what is
	  not a IPC$ share ontop of which all file i/o is to dcerpc
	  interfaces.

2004-02-29 10:41  ulfl

	* gtk/: capture_dlg.c, find_dlg.c:

	  improved resizability

2004-02-29 09:02  guy

	* packet-fcfcs.c:

	  From Dave Sclarsky:

		  fix the offset of the platform type;

		  make the platform name an FT_BYTES field rather than an
		  FT_STRING field.

2004-02-29 08:47  guy

	* packet-isup.c, epan/column-utils.c, epan/packet_info.h:

	  From Jeff Morriss:

		  support the ISUP CIC as a circuit ID;

		  add a preference option to control whether to put the CIC
	  into
		  the Info column or not.

2004-02-29 08:30  guy

	* packet-mtp3.c:

	  From Jeff Morriss: dissect the MTP3 routing label regardless of
	  whether we're building a protocol tree, so that the source and
	  destination addresses are set.

2004-02-29 08:01  guy

	* Makefile.common, ncp2222.py, packet-ncp-nmas.c,
	  packet-ncp-nmas.h, packet-ncp2222.inc:

	  From Greg Morris:

		  Novell Modular Authentication Services support;

		  fix some return values and decodes;

		  show the NDS reply buffer only in service request
	  packets.

2004-02-28 22:56  guy

	* etypes.h, packet-arp.c, packet-l2tp.c, packet-radius.c,
	  packet-srvloc.c, packet-wap.h, packet-wsp.c, packet-wtls.c,
	  packet-wtp.c:

	  Update URLs for various IANA documents.

2004-02-28 22:07  ulfl

	* gtk/find_dlg.c:

	  redesign of the whole dialog

2004-02-28 22:04  ulfl

	* file.c:

	  tweaked the simple_dialog texts, to reflect the current search
	  behaviour

2004-02-28 21:55  guy

	* gtk/main.c:

	  Default to not using the ring buffer (as the default number of
	  files is 1 file, i.e. the simple "just keep capturing until told
	  to stop" mode, you can't use a ring buffer).

2004-02-28 20:59  guy

	* epan/packet.c:

	  Not all dissector handles have protocols associated with them;
	  check for that before handing a null protocol handle to another
	  routine.

2004-02-28 16:21  ulfl

	* capture.c, capture.h, gtk/capture_dlg.c, gtk/main.c:

	  Capturing: "Number of files" switches between normal and multiple
	  mode, "Use ring buffer" switches between multiple single run and
	  real ring buffer

2004-02-28 13:06  ulfl

	* gtk/capture_dlg.c:

	  removed "magically" label switching of "Stop capture after x
	  kilobyte(s)" field, put it into seperate fields.

2004-02-28 04:39  guy

	* prefs.c:

	  Select "misc" as the foundry for the default font, so we don't
	  get JIS fonts and the like when we pop up the font selection
	  dialog.

2004-02-28 04:21  guy

	* gtk/filter_prefs.c:

	  Yes, you do have to free the display filter after compiling it,
	  otherwise you leak memory.

2004-02-28 04:18  guy

	* gtk/: filter_prefs.c, filter_prefs.h, find_dlg.c:

	  The string in the Find Frame dialog box isn't necessarily a
	  display filter string; check its syntax appropriately for the
	  type of search we're doing when colorizing it.

	  Searching for an empty text string is a pointless exercise;
	  report that as an error.

2004-02-27 19:07  ulfl

	* gtk/: dcerpc_stat.c, fc_stat.c, file_dlg.c, find_dlg.c,
	  io_stat.c, ldap_stat.c, rpc_stat.c, smb_stat.c,
	  tap_dfilter_dlg.c:

	  added dfilter string syntax check to various places

2004-02-27 15:51  obiot

	* AUTHORS:

	  Bitwise AND display filter operation.

2004-02-27 12:00  obiot

	* epan/: dfilter/README.dfilter, dfilter/dfvm.c, dfilter/dfvm.h,
	  dfilter/gencode.c, dfilter/grammar.lemon, dfilter/scanner.l,
	  dfilter/semcheck.c, dfilter/sttype-test.c, dfilter/sttype-test.h,
	  ftypes/ftype-bytes.c, ftypes/ftype-double.c,
	  ftypes/ftype-integer.c, ftypes/ftype-ipv4.c, ftypes/ftype-none.c,
	  ftypes/ftype-pcre.c, ftypes/ftype-string.c, ftypes/ftype-time.c,
	  ftypes/ftype-tvbuff.c, ftypes/ftypes.c, ftypes/ftypes.h:

	  First attempt at "bitwise AND" display filter operator.

	  Document how a display operator can be added.

2004-02-27 10:03  sahlberg

	* gtk/tcp_graph.c:

	  cosmetic update to tcp graphs.

	  Put both capture filename and  x.x.x.x:x -> y.y.y.y:y describing
	  the tcp session we are currently graphing in the menu text of the
	  window.

2004-02-27 09:25  guy

	* packet-gtp.c:

	  Fix up the previous checkin.

2004-02-27 09:02  guy

	* packet-sna.c:

	  Have "dissect_control()" construct the subset tvbuff it
	  processes, and have it set the length and reported length
	  appropriately.

2004-02-26 12:02  sahlberg

	* packet-ber.c:

	  Small change to the octet string dissector for BER.

	  make it create a new tvb and pass it to the callback so that the
	  callback can pick up the length of the octet string by doing a
	  tvb_length_remaining(tvb, 0);

2004-02-26 09:48  guy

	* packet-mtp3.c:

	  From Jeff Morris: re-add support for WTAP_ENCAP_MTP3, lost in the
	  previous checkin.

2004-02-26 09:39  guy

	* acinclude.m4:

	  From Albert Chin: libpcap 0.8.1 loads the BPF driver on AIX, but
	  to do so it requires routines from -lcfg and -lodm - if
	  attempting to link with libpcap fails, try linking with libpcap
	  and -lcfg and -lodm and, if that succeeds, add all those
	  libraries to the link list.

2004-02-25 23:15  guy

	* packet-afp.c:

	  Use "tvb_get_string()" rather than duplicating its functionality
	  by hand.

	  Clean up "name_in_bitmap()" a bit.

	  In "loop_record()", don't bother allocating a buffer for the tag
	  used if there's no name for the item.

2004-02-25 23:13  guy

	* packet-sna.c:

	  Use "tvb_get_string()" rather than duplicating its functionality
	  by hand.

	  In "dissect_control_0e()", use the remaining reported length in
	  the tvbuff rather than the length.

2004-02-25 23:12  guy

	* packet-x11.c:

	  Make sure the keysym list is present before allocating a buffer
	  to hold it.

2004-02-25 23:11  guy

	* packet-quake2.c:

	  Use "tvb_get_string()" instead of duplicating its functionality
	  by hand.

	  Don't make a copy of the message in
	  "dissect_quake2_client_commands_uinfo()" and
	  "dissect_quake2_client_commands_stringcmd()", just use the copy
	  in the tvbuff.

2004-02-25 22:45  guy

	* doc/README.developer:

	  Describe some problems with processing data pointed to by the
	  result of "tvb_get_ptr()".

	  Add a section on roubustness, giving a number of potential
	  problems that aren't just portability problems.

	  Document "tvb_get_string()" and "tvb_get_stringz()", better
	  document "tvb_memcpy()" and "tvb_memdup()".

	  Fix a typo.

2004-02-25 21:05  guy

	* gtk/follow_dlg.c:

	  Get rid of a debugging printf.

2004-02-25 17:44  ulfl

	* gtk/menu.c:

	  Seperated the "Go" menu, corresponding to:
	  http://developer.gnome.org/projects/gup/hig/1.0/menus.html#menu-standard-go

2004-02-25 09:31  guy

	* packet-atalk.c, packet-dcerpc-mapi.c, packet-dhcpv6.c,
	  packet-dsi.c, packet-enip.c, packet-gtp.c, packet-icmpv6.c,
	  packet-ieee80211.c, packet-nfs.c, packet-nlm.c, packet-ntlmssp.c,
	  packet-rpc.c, packet-rtcp.c, packet-telnet.c, packet-vj.c,
	  packet-wsp.c, packet-x11.c, packet-xdmcp.c:

	  Use "tvb_get_string()" instead of allocating a (len+1)-sized
	  buffer, "tvb_memcpy()"ing to it, and putting in a null
	  terminator; "tvb_get_string()" will check whether all bytes of
	  the string are present before allocating the buffer, so that you
	  don't leak memory if the copy throws an exception, and don't
	  crash if the length is absurdly large.

	  Use "tvb_memdup()" instead of allocating a buffer and
	  "tvb_memcpy()"ing to it, so that an exception is thrown before
	  you try to allocate the buffer (for the same reasons as listed
	  above).

	  Before allocating a buffer used when processing a chunk of data
	  from a packet, get a pointer to the chunk with "tvb_get_ptr()",
	  or check that the data is all there with
	  "tvb_ensure_bytes_exist()", so that an exception is thrown before
	  you try to allocate the buffer (for the same reasons as listed
	  above).

	  Fix up the lengths of the tvbuff used when dissecting ONC RPC
	  opaque data with a particular dissector.

2004-02-25 07:52  sahlberg

	* packet-kerberos.c:

	  for netbios type addresses in kerberos print the netbios type as
	  hex and not decimal

2004-02-25 06:22  guy

	* packet-smb.c:

	  Dissect FILE_RENAME_INFO.

	  Combine the dissection for 0x0101 and 1004 in Set File Info.

2004-02-25 05:52  guy

	* ringbuffer.c:

	  Only handle as a suffix stuff following a "." in the last
	  component of a pathname.

2004-02-25 05:21  guy

	* ringbuffer.c:

	  Don't unlink ringbuffer files if we haven't yet allocated the
	  array of ringbuffer files - yes, we can fail before that's done,
	  so we have to check for that.

2004-02-25 00:16  ulfl

	* gtk/io_stat.c:

	  changed some labels

2004-02-24 23:25  ulfl

	* gtk/io_stat.c:

	  minor redesign of the dialog

2004-02-24 19:42  ulfl

	* README.win32:

	   added a new section "Installing GTK-Wimp"

2004-02-24 18:54  guy

	* Makefile.am:

	  Add "make-version.pl" to the distribution.

2004-02-24 18:51  ulfl

	* config.nmake, packaging/nsis/Makefile.nmake,
	  packaging/nsis/ethereal.nsi:

	  added gtk-wimp to the nsis installer build

2004-02-24 18:44  ulfl

	* README.win32:

	  updated some things (optional packages, nsis, gtk-wimp)

2004-02-24 18:39  ulfl

	* gtk/gui_prefs.c:

	  changed some label texts

2004-02-24 18:23  guy

	* packet-dcerpc-rs_pgo.c:

	  From Jaime Fournier: more bug fixes.

2004-02-24 17:59  ulfl

	* gtk/compat_macros.h:

	  fixed some GTK2 stock items keyboard shortcuts

2004-02-24 17:57  ulfl

	* gtk/menu.c:

	  fixed some menu item capitalization and keyboard shortcuts

2004-02-24 17:53  ulfl

	* gtk/io_stat.c:

	  added a "Close" button to the dialog

2004-02-24 17:49  ulfl

	* packet-clnp.c, packet-mdshdr.c, packet-tcp.c,
	  help/capture_filters.txt, help/capturing.txt,
	  help/display_filters.txt, help/getting_started.txt,
	  help/well_known.txt:

	  fixed various typos

2004-02-24 09:40  sahlberg

	* packet-nbns.c, packet-tcp.c, epan/packet.c:

	  with the cahnges to when to call the heuristic dissector (and the
	  fact that nbss does not register its conversation) this caused
	  WANT_PDU_TRACKING to be decremented multiple times between the
	  dissectors and thus ethereal could no longer reliably spot SMB
	  PDUs that started in the middle of a tcp segment (unless we do
	  reassembly which we dont do unless we have to since it eats soo
	  many resources)

	  FIX so that ethereal once again can spot SMB (and other) protocol
	  PDUs that start in the middle of a segment.

2004-02-24 08:05  guy

	* packet-dcerpc-rs_pgo.c:

	  From Jaime Fournier: bug fixes.

2004-02-24 05:52  guy

	* gtk/capture_dlg.c:

	  Small cleanup - the for loop was left over from earlier code that
	  kept searching backwards for a backslash until it found one
	  followed by "Device\", and no longer looped.

2004-02-24 02:45  gerald

	* NEWS:

	  Add a missing line.