aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: e95542b640d6213e1f71020ee8b25a8951029004 (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
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
------------------------------------------------------------------------
r13088 | guy | 2005-01-17 13:30:31 -0600 (Mon, 17 Jan 2005) | 7 lines
Changed paths:
   M /trunk/epan/addr_resolv.c

Use WINDIR rather than SYSTEMROOT - WINDIR is apparently set on Windows
OT as well as NT, while SYSTEMROOT isn't.

If it's not set, don't bother looking for the hosts file, rather than
trying a path with a fixed drive letter.  If it is set, try the Windows
NT location first and, if that fails, the Windows OT location.

------------------------------------------------------------------------
r13087 | gerald | 2005-01-17 10:45:15 -0600 (Mon, 17 Jan 2005) | 3 lines
Changed paths:
   M /trunk/Makefile.nmake
   M /trunk/packaging/nsis/ethereal.nsi
   M /trunk/tools/win32-setup.sh

Switch the Windows build environment to GTK 2.4.14.  Enable GTK-Wimp by 
default in the installer.

------------------------------------------------------------------------
r13086 | kukosa | 2005-01-17 05:53:36 -0600 (Mon, 17 Jan 2005) | 1 line
Changed paths:
   M /trunk/tools/asn2eth.py

Support of GeneralizedTime in PER
------------------------------------------------------------------------
r13085 | kukosa | 2005-01-17 04:09:43 -0600 (Mon, 17 Jan 2005) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-per.c
   M /trunk/epan/dissectors/packet-per.h
   M /trunk/epan/libethereal.def

ASN.1 PER VisibleString support
------------------------------------------------------------------------
r13084 | guy | 2005-01-17 02:13:02 -0600 (Mon, 17 Jan 2005) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-aim-bos.c
   M /trunk/epan/dissectors/packet-aim-icq.c
   M /trunk/epan/dissectors/packet-aim-location.c
   M /trunk/epan/dissectors/packet-aim-messaging.c
   M /trunk/epan/dissectors/packet-aim-signon.c
   M /trunk/epan/dissectors/packet-aim-ssi.c
   M /trunk/epan/dissectors/packet-aim.c

If a given TLV type isn't found in an aim_tlv table, just use "Unknown"
as the description - some aim_tlv tables have NULL in the end-of-table
entry.

For those that don't, replace "Unknown" with NULL; "Unknown" is now
redundant.

------------------------------------------------------------------------
r13083 | guy | 2005-01-16 21:39:58 -0600 (Sun, 16 Jan 2005) | 11 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dnp.c

When assembling application layer chunks, don't include the transport
layer byte in the reassembled data - including it means we have to pass
to "tvb_new_real_data()" a pointer to the *second* byte of a mallocated
chunk of data, but that would require us to have the free routine for
the new tvbuff back that pointer up before freeing it (we aren't doing
that currently, which means that "free()" either complains bitterly or,
potentially, corrupts the arena, causing crashes later).

Put in some XXX comments about some issues seen when looking at the
code.

------------------------------------------------------------------------
r13082 | guy | 2005-01-16 19:11:39 -0600 (Sun, 16 Jan 2005) | 4 lines
Changed paths:
   M /trunk/epan/proto.c

Add the source file name and line number to the dissector bug report
(not as useful as for bugs caught in the dissector itself, but still may
be useful).

------------------------------------------------------------------------
r13081 | guy | 2005-01-16 18:56:56 -0600 (Sun, 16 Jan 2005) | 8 lines
Changed paths:
   M /trunk/epan/proto.c

Use REPORT_DISSECTOR_BUG() for the "bogus length" error in
"alloc_field_info()", so the error report can include the field with the
problem.  (The file and line number isn't interesting - the bug isn't in
"alloc_field_info()", it's in the dissector that called the routine
calling "alloc_field_info()" - but the field name/abbrevition is
interesting, as it'd help developers identify the place in the dissector
where we're passing in a bogus length.)

------------------------------------------------------------------------
r13080 | lroland | 2005-01-16 18:23:43 -0600 (Sun, 16 Jan 2005) | 1 line
Changed paths:
   M /trunk/tools/unix2dos.pl

Convert files with mixed (unix and DOS) EOL-style correctly.
------------------------------------------------------------------------
r13079 | guy | 2005-01-16 18:18:39 -0600 (Sun, 16 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/proto.h

Add a REPORT_DISSECTOR_BUG() macro to let caller-specified messages be
used in DissectorError exceptions.

------------------------------------------------------------------------
r13078 | guy | 2005-01-16 17:30:55 -0600 (Sun, 16 Jan 2005) | 10 lines
Changed paths:
   M /trunk/epan/dissectors/packet-frame.c
   M /trunk/epan/exceptions.h
   M /trunk/epan/proto.c
   M /trunk/epan/proto.h

Rename the FieldError exception to DissectorError.

Add a DISSECTOR_ASSERT() macro, which is the usual type of assertion
macro, but throws a DissectorError exception with a message giving the
flien and line number and the failed test as a string.  Use that macro
in "alloc_field_info()".

Report that exception in the Info column and the protocol tree, as well
as logging the exception failure with g_warning().

------------------------------------------------------------------------
r13077 | lroland | 2005-01-16 17:26:02 -0600 (Sun, 16 Jan 2005) | 3 lines
Changed paths:
   M /trunk/asn1/MAP_Dialogue/Makefile.nmake
   M /trunk/asn1/cmip/Makefile.nmake
   M /trunk/asn1/cms/Makefile.nmake
   M /trunk/asn1/ess/Makefile.nmake
   M /trunk/asn1/gsmmap/Makefile.nmake
   M /trunk/asn1/h225/Makefile.nmake
   M /trunk/asn1/h235/Makefile.nmake
   M /trunk/asn1/h245/Makefile.nmake
   M /trunk/asn1/h248/Makefile.nmake
   M /trunk/asn1/h450/Makefile.nmake
   M /trunk/asn1/logotype-cert-extn/Makefile.nmake
   M /trunk/asn1/ns-cert-exts/Makefile.nmake
   M /trunk/asn1/ocsp/Makefile.nmake
   M /trunk/asn1/pkcs1/Makefile.nmake
   M /trunk/asn1/pkinit/Makefile.nmake
   M /trunk/asn1/pkix1explicit/Makefile.nmake
   M /trunk/asn1/pkix1implicit/Makefile.nmake
   M /trunk/asn1/pkixcmp/Makefile.nmake
   M /trunk/asn1/pkixcrmf/Makefile.nmake
   M /trunk/asn1/pkixproxy/Makefile.nmake
   M /trunk/asn1/pkixqualified/Makefile.nmake
   M /trunk/asn1/pkixtsp/Makefile.nmake
   M /trunk/asn1/smrse/Makefile.nmake
   M /trunk/asn1/x509af/Makefile.nmake
   M /trunk/asn1/x509ce/Makefile.nmake
   M /trunk/asn1/x509if/Makefile.nmake
   M /trunk/asn1/x509sat/Makefile.nmake

When using Cygwin's python asn2eth.py
generates dissectors with mixed EOL! SVN doesn't allow you to commit such files.
Add a target to all nmake makefiles in asn1 subdirectory which will fix these files.
------------------------------------------------------------------------
r13076 | lroland | 2005-01-16 15:21:41 -0600 (Sun, 16 Jan 2005) | 4 lines
Changed paths:
   M /trunk/asn1/h225/h225.cnf
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h225.h

Add a few more things to the h225 dissector that got lost.
Lost things left:
-h.450 stuff
-support for the h.323 conversations tap (It is currently broken.)
------------------------------------------------------------------------
r13075 | guy | 2005-01-16 14:26:19 -0600 (Sun, 16 Jan 2005) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-cops.c

Make the object length variable in some routines an "int"; we fetch a
16-bit unsigned value into it, but we might round it up to a multiple of
4 bytes, which could overflow a guint16.  Make arguments corresponding
to them "int" as well.

Use the reported length in "cops_analyze_packetcable_mm_obj()".

------------------------------------------------------------------------
r13074 | ulfl | 2005-01-16 10:06:15 -0600 (Sun, 16 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-acse.c
   M /trunk/epan/dissectors/packet-dcerpc.c
   M /trunk/epan/dissectors/packet-ethertype.c
   M /trunk/epan/dissectors/packet-frame.c
   M /trunk/epan/dissectors/packet-frame.h
   M /trunk/epan/dissectors/packet-ieee8023.c
   M /trunk/epan/dissectors/packet-isl.c
   M /trunk/epan/dissectors/packet-pres.c
   M /trunk/epan/dissectors/packet-ses.c
   M /trunk/epan/exceptions.h
   M /trunk/epan/proto.c

throw the new FieldError exception, if a dissector tries to add a field with invalid parameters

add a message parameter to the show_exception function
------------------------------------------------------------------------
r13073 | jmayer | 2005-01-16 09:45:21 -0600 (Sun, 16 Jan 2005) | 1 line
Changed paths:
   M /trunk/plugins/mate/mate.h
   M /trunk/plugins/mate/mate_util.h
   M /trunk/plugins/mate/packet-mate.c

Some trivial warning fixes in mate
------------------------------------------------------------------------
r13072 | guy | 2005-01-16 04:38:21 -0600 (Sun, 16 Jan 2005) | 2 lines
Changed paths:
   A /trunk/asn1/MAP_Dialogue/Makefile.nmake
   A /trunk/asn1/cmip/Makefile.nmake
   A /trunk/asn1/cms/Makefile.nmake
   A /trunk/asn1/ess/Makefile.nmake
   A /trunk/asn1/gsmmap/Makefile.nmake
   A /trunk/asn1/h235/Makefile.nmake
   A /trunk/asn1/h245/Makefile.nmake
   A /trunk/asn1/h248/Makefile.nmake
   A /trunk/asn1/h450/Makefile.nmake
   A /trunk/asn1/logotype-cert-extn/Makefile.nmake
   A /trunk/asn1/ns-cert-exts/Makefile.nmake
   A /trunk/asn1/ocsp/Makefile.nmake
   A /trunk/asn1/pkcs1/Makefile.nmake
   A /trunk/asn1/pkinit/Makefile.nmake
   A /trunk/asn1/pkix1explicit/Makefile.nmake
   A /trunk/asn1/pkix1implicit/Makefile.nmake
   A /trunk/asn1/pkixcmp/Makefile.nmake
   A /trunk/asn1/pkixcrmf/Makefile.nmake
   A /trunk/asn1/pkixproxy/Makefile.nmake
   A /trunk/asn1/pkixqualified/Makefile.nmake
   A /trunk/asn1/pkixtsp/Makefile.nmake
   A /trunk/asn1/smrse/Makefile.nmake
   A /trunk/asn1/x509af/Makefile.nmake
   A /trunk/asn1/x509ce/Makefile.nmake
   A /trunk/asn1/x509if/Makefile.nmake
   A /trunk/asn1/x509sat/Makefile.nmake

Supply Makefile.nmake files.

------------------------------------------------------------------------
r13071 | guy | 2005-01-16 04:19:21 -0600 (Sun, 16 Jan 2005) | 5 lines
Changed paths:
   M /trunk/asn1/MAP_Dialogue/Makefile
   M /trunk/asn1/cmip/Makefile
   M /trunk/asn1/cms/Makefile
   M /trunk/asn1/ess/Makefile
   M /trunk/asn1/gsmmap/Makefile
   M /trunk/asn1/h225/Makefile
   M /trunk/asn1/h248/Makefile
   M /trunk/asn1/logotype-cert-extn/Makefile
   M /trunk/asn1/ocsp/Makefile
   M /trunk/asn1/pkcs1/Makefile
   M /trunk/asn1/pkinit/Makefile
   M /trunk/asn1/pkix1explicit/Makefile
   M /trunk/asn1/pkix1implicit/Makefile
   M /trunk/asn1/pkixcmp/Makefile
   M /trunk/asn1/pkixcrmf/Makefile
   M /trunk/asn1/pkixproxy/Makefile
   M /trunk/asn1/pkixqualified/Makefile
   M /trunk/asn1/pkixtsp/Makefile
   M /trunk/asn1/smrse/Makefile
   M /trunk/asn1/x509af/Makefile
   M /trunk/asn1/x509ce/Makefile
   M /trunk/asn1/x509if/Makefile
   M /trunk/asn1/x509sat/Makefile

Make the Makefile look like the h235 Makefiles, with the new rules.

Get rid of their "executable" property, and set svn:keywords to Id and
svn:eol-style to native if they're not already set.

------------------------------------------------------------------------
r13070 | guy | 2005-01-16 04:17:53 -0600 (Sun, 16 Jan 2005) | 2 lines
Changed paths:
   A /trunk/asn1/h235/Makefile
   A /trunk/asn1/h245/Makefile
   A /trunk/asn1/h450/Makefile
   A /trunk/asn1/ns-cert-exts/Makefile

Add Makefiles.

------------------------------------------------------------------------
r13069 | guy | 2005-01-16 03:17:16 -0600 (Sun, 16 Jan 2005) | 3 lines
Changed paths:
   M /trunk/asn1/h225/Makefile.nmake

Make the dissector files depend on asn2eth.py, so they're regenerated if
it's modified.

------------------------------------------------------------------------
r13068 | guy | 2005-01-16 03:16:36 -0600 (Sun, 16 Jan 2005) | 5 lines
Changed paths:
   M /trunk/asn1/h225/Makefile

Make the rules match those of Makefile.nmake - make "all" and
"generate_dissector" generate the dissector files but not copy them to
epan/dissectors, add a "copy_files" rule to copy them, and add a "clean"
rule to clean up.

------------------------------------------------------------------------
r13067 | guy | 2005-01-16 03:09:57 -0600 (Sun, 16 Jan 2005) | 2 lines
Changed paths:
   A /trunk/asn1/h225/Makefile

Add a Makefile.

------------------------------------------------------------------------
r13066 | guy | 2005-01-16 03:06:25 -0600 (Sun, 16 Jan 2005) | 3 lines
Changed paths:
   A /trunk/asn1/h225/Makefile.nmake (from /trunk/asn1/h225/makefile.nmake2:13065)
   D /trunk/asn1/h225/makefile.nmake2

Phase 2 of renaming "makefile.nmake" to "Makefile.nmake", to match other
Makefile.nmake files.

------------------------------------------------------------------------
r13065 | guy | 2005-01-16 03:05:45 -0600 (Sun, 16 Jan 2005) | 3 lines
Changed paths:
   D /trunk/asn1/h225/makefile.nmake
   A /trunk/asn1/h225/makefile.nmake2 (from /trunk/asn1/h225/makefile.nmake:13053)

Phase 1 of renaming "makefile.nmake" to "Makefile.nmake" - this is a bit
of a pain on case-insensitive file systems.

------------------------------------------------------------------------
r13064 | guy | 2005-01-16 02:45:11 -0600 (Sun, 16 Jan 2005) | 5 lines
Changed paths:
   M /trunk/wiretap/pppdump.c

When we get an EOF, only return WTAP_ERR_SHORT_READ as the error if we
were in the middle of processing a record.  If we got one at the
*beginning* of the record, that just means we've come to a clean
end-of-file.

------------------------------------------------------------------------
r13063 | guy | 2005-01-15 22:25:27 -0600 (Sat, 15 Jan 2005) | 14 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/packet-stun.c

From Jon Ringle:

	don't dissect attributes if there aren't any;

	put each attribute into a subtree;

	register the dissector by name.

Use "match_strval()" to check whether the message type is a known STUN
message type, and to generate the message type for the Info column.

Don't use "tvb_bytes_exist()" to check when we run out of data - use the
length fields from the packet.  Check the sanity of those lengths, too.

------------------------------------------------------------------------
r13062 | guy | 2005-01-15 21:09:05 -0600 (Sat, 15 Jan 2005) | 2 lines
Changed paths:
   M /trunk/Makefile.common
   M /trunk/tethereal.c

Report a friendlier name, if possible, when capturing in Tethereal.

------------------------------------------------------------------------
r13061 | guy | 2005-01-15 20:56:28 -0600 (Sat, 15 Jan 2005) | 4 lines
Changed paths:
   M /trunk/Makefile.common
   M /trunk/capture.c
   D /trunk/capture_combo_utils.c
   D /trunk/capture_combo_utils.h
   A /trunk/capture_ui_utils.c (from /trunk/capture_combo_utils.c:13060)
   A /trunk/capture_ui_utils.h (from /trunk/capture_combo_utils.h:13060)
   M /trunk/gtk/capture_dlg.c
   M /trunk/gtk/capture_info_dlg.c
   M /trunk/gtk/capture_prefs.c

Rename capture_combo_utils.{c,h} to capture_ui_utils.{c,h}, as the code
in there is for UI functions including, but not limited to, the combo
box in capture dialogs.

------------------------------------------------------------------------
r13060 | guy | 2005-01-15 20:48:41 -0600 (Sat, 15 Jan 2005) | 8 lines
Changed paths:
   M /trunk/capture.c
   M /trunk/capture_combo_utils.c
   M /trunk/capture_combo_utils.h
   M /trunk/gtk/capture_info_dlg.c

Use a more descriptive name, if available, for the network interface in
window titles even on UN*X, and if the user's specified a description
for an interface, use that rather than the description supplied by
libpcap.

Put the interface name into the main window title when doing a live
capture.

------------------------------------------------------------------------
r13059 | guy | 2005-01-15 19:22:53 -0600 (Sat, 15 Jan 2005) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-x11.c

The keycode_first and keycode_count arguments to "listOfKeysyms()" can
come directly from packet data, so don't abort if they define a sequence
of keycodes that goes past 255 - just report errors for the keycodes
past 255.

Clean up indentation.

------------------------------------------------------------------------
r13058 | guy | 2005-01-15 18:48:25 -0600 (Sat, 15 Jan 2005) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-x11.c

Revert to the previous formatting of the item.

------------------------------------------------------------------------
r13057 | guy | 2005-01-15 18:29:54 -0600 (Sat, 15 Jan 2005) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-x11.c

Display the keycode list for a modifier a bit differently (don't list
the modifier name for every keycode, just give the modifier name once
and then show all the keycodes), and use "proto_item_append_text()"
rather than building a string.

Clean up white space.

------------------------------------------------------------------------
r13056 | guy | 2005-01-15 17:45:37 -0600 (Sat, 15 Jan 2005) | 8 lines
Changed paths:
   M /trunk/epan/dissectors/packet-gsm_sms.c

Correction for TP-Validity-Period extended format, from Victor Stratan:

	Fix 1:
	Offset not incremented for relative type

	Fix 2:
	Semioctets not reversed for HHMMSS relative type

------------------------------------------------------------------------
r13055 | guy | 2005-01-15 17:36:24 -0600 (Sat, 15 Jan 2005) | 17 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/packet-l2tp.c
   M /trunk/epan/dissectors/packet-mpls.c

From Carlos Pignataro: Layer Two Tunneling Protocol version 3 [L2TPv3]
updates and enhancements:

  - Added Cookie and L2-Specific sublayer support via preferences dialog.
  - Added carried payload dissecting support from draft-ietf-l2tpext-pwe3-*
    and draft-townsley-l2tpv3-mpls-02.txt
  - Completed missing message types (call types) and result codes for stopccn
    and cdn.
  - Fixed conditionals for avp_vendor_id (Vendor-Specific AVPs)
  - Changed Pseudowire Capabilities List AVPs to use subtree instead of tab
  - Added numeric value of result and error codes
  - Added Session ID for v3 data packets and missing flags and reserved
  - Added version to the L2TPv3 protocol tree
  - Changed `Tunnel Id' to `Control Connection Id' for v3
  - Fixed offset for ctrl_tree on L2TPv3 over UDP
  - Added `L2TPv3' in the COL_PROTOCOL and fixed handling of L2TP version

------------------------------------------------------------------------
r13054 | guy | 2005-01-15 17:34:29 -0600 (Sat, 15 Jan 2005) | 3 lines
Changed paths:
   M /trunk/plugins/mate/mate_util.c

Set fp to NULL before "load_loal_error()" is called, so we don't pass an
uninitalized variable to it.

------------------------------------------------------------------------
r13053 | ulfl | 2005-01-15 13:37:35 -0600 (Sat, 15 Jan 2005) | 1 line
Changed paths:
   M /trunk/docbook/eug_src/EUG_chapter_introduction.xml
   M /trunk/docbook/eug_src/EUG_preface.xml

add a link to the wiki at appropriate places
------------------------------------------------------------------------
r13052 | ulfl | 2005-01-15 13:07:05 -0600 (Sat, 15 Jan 2005) | 3 lines
Changed paths:
   M /trunk/docbook/eug_src/EUG_chapter_customize.xml
   M /trunk/docbook/eug_src/EUG_chapter_use.xml
   M /trunk/docbook/eug_src/EUG_chapter_work.xml
   M /trunk/docbook/user-guide.xml

I've removed the preference pages screenshots, as there was no description of the settings. I've added a link to the wiki pages and updated them accordingly (hopefully someone else might put the explanation text in there).

This way, we will have all preference descriptions at one place.
------------------------------------------------------------------------
r13051 | jmayer | 2005-01-15 12:39:44 -0600 (Sat, 15 Jan 2005) | 1 line
Changed paths:
   M /trunk/configure.in
   M /trunk/plugins/Makefile.am

Add mate to the build process (plus a few whitespace changes)
------------------------------------------------------------------------
r13050 | jmayer | 2005-01-15 12:34:06 -0600 (Sat, 15 Jan 2005) | 1 line
Changed paths:
   M /trunk/FAQ
   M /trunk/help/faq.txt
   M /trunk/manuf

Update FAQ and manuf files
------------------------------------------------------------------------
r13049 | gerald | 2005-01-15 12:18:09 -0600 (Sat, 15 Jan 2005) | 2 lines
Changed paths:
   M /trunk/config.nmake
   M /trunk/configure.in

Bump the version to 0.10.9.

------------------------------------------------------------------------
r13048 | ulfl | 2005-01-15 10:01:54 -0600 (Sat, 15 Jan 2005) | 3 lines
Changed paths:
   M /trunk/gtk/capture_info_dlg.c

Recently the capture interface name was added to the title of the capture info dialog. 

On WIN32, this interface name is in a somehwat unreadable format "\Device\NPF_{242423...", display the interface description on win32 systems instead "Realtek RTL ..."
------------------------------------------------------------------------
r13047 | ulfl | 2005-01-15 09:52:50 -0600 (Sat, 15 Jan 2005) | 1 line
Changed paths:
   M /trunk/pcap-util-int.h

fix a typo
------------------------------------------------------------------------
r13046 | guy | 2005-01-15 04:39:49 -0600 (Sat, 15 Jan 2005) | 2 lines
Changed paths:
   M /trunk/ethereal_gen.py
   M /trunk/plugins/giop/packet-coseventcomm.c
   M /trunk/plugins/giop/packet-cosnaming.c

Use -1 as a length value for "to the end of the tvbuff".

------------------------------------------------------------------------
r13045 | guy | 2005-01-15 04:10:16 -0600 (Sat, 15 Jan 2005) | 2 lines
Changed paths:
   M /trunk/AUTHORS

Add an entry for Yann.

------------------------------------------------------------------------
r13044 | guy | 2005-01-15 04:09:00 -0600 (Sat, 15 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-olsr.c

From Yann: handle OLSR messages with an unknown message type, using the
message length.

------------------------------------------------------------------------
r13043 | ulfl | 2005-01-14 17:33:03 -0600 (Fri, 14 Jan 2005) | 1 line
Changed paths:
   M /trunk/docbook/eug_src/EUG_chapter_advanced.xml

(Hopefully clarified) name resolution a bit.
------------------------------------------------------------------------
r13042 | tuexen | 2005-01-14 16:26:18 -0600 (Fri, 14 Jan 2005) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-mtp2.c

Add support for extended sequence numbers as specified in Annex A of Q.703.

------------------------------------------------------------------------
r13041 | guy | 2005-01-14 14:27:34 -0600 (Fri, 14 Jan 2005) | 3 lines
Changed paths:
   M /trunk/gtk/ansi_a_stat.c
   M /trunk/gtk/ansi_map_stat.c
   M /trunk/gtk/gsm_a_stat.c
   M /trunk/gtk/gsm_map_stat.c
   M /trunk/gtk/isup_stat.c
   M /trunk/gtk/mtp3_stat.c
   M /trunk/gtk/mtp3_summary.c

From Laurent Rabret: handle the cases where there's no capture file, or
there is but it has no packets.

------------------------------------------------------------------------
r13040 | guy | 2005-01-14 13:28:02 -0600 (Fri, 14 Jan 2005) | 11 lines
Changed paths:
   M /trunk/epan/dissectors/packet-rtcp.c

If an item in a source description chunk begins with 4 bytes of zero,
that doesn't mean it's padding at the end of a previous item - it might,
for example, be the *first* item in the chunk.  Don't treat it as
padding.

Do, however, treat an item that begins with a zero byte as an item, but
break out of the loop processing items as soon as the item type is put
into the protocol tree, as there's no length field or data in an
RTCP_SDES_END item.  Fix the comment for that loop to indicate that the
loop checks both for end-of-frame and for an RTCP_SDES_END item.

------------------------------------------------------------------------
r13039 | guy | 2005-01-14 12:05:08 -0600 (Fri, 14 Jan 2005) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ieee80211.c

Pass 0, not FALSE, as the FCS length argument (FALSE is defined as 0,
but the field is integral, not Boolean, so it's clearer if it's passed
as 0).

------------------------------------------------------------------------
r13038 | lroland | 2005-01-14 12:04:54 -0600 (Fri, 14 Jan 2005) | 1 line
Changed paths:
   M /trunk/asn1/h225/makefile.nmake

With xcopy use backsplash instead of slash as directory seperator 
------------------------------------------------------------------------
r13037 | lroland | 2005-01-14 11:56:40 -0600 (Fri, 14 Jan 2005) | 1 line
Changed paths:
   M /trunk/asn1/h225/makefile.nmake

Replace another "cp" with two "xcopy"s
------------------------------------------------------------------------
r13036 | lroland | 2005-01-14 11:52:03 -0600 (Fri, 14 Jan 2005) | 1 line
Changed paths:
   A /trunk/asn1/h225/makefile.nmake

Add nmake makefile for /asn1/h225
------------------------------------------------------------------------
r13035 | lroland | 2005-01-14 11:49:30 -0600 (Fri, 14 Jan 2005) | 1 line
Changed paths:
   M /trunk/asn1/h450/h450.cnf
   M /trunk/asn1/h450/packet-h450-template.h

Fix svn properties
------------------------------------------------------------------------
r13034 | gerald | 2005-01-14 11:09:11 -0600 (Fri, 14 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ncp-nmas.c

From Greg Morris:  Improve malformed packet handling.


------------------------------------------------------------------------
r13033 | gerald | 2005-01-14 10:57:07 -0600 (Fri, 14 Jan 2005) | 2 lines
Changed paths:
   M /trunk/doc/Makefile.nmake

Remove another GNU cp dependency.

------------------------------------------------------------------------
r13032 | guy | 2005-01-14 06:20:03 -0600 (Fri, 14 Jan 2005) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-gnutella.c

Fix indentation.

Catch size values >= 0x80000000 and throw an exception rather than
crashing with an assertion.

------------------------------------------------------------------------
r13031 | kukosa | 2005-01-14 05:42:39 -0600 (Fri, 14 Jan 2005) | 1 line
Changed paths:
   M /trunk/asn1/h225/packet-h225-template.h

Included filename packet-H225-exp.h changed to packet-h225-exp.h
------------------------------------------------------------------------
r13030 | guy | 2005-01-14 05:40:05 -0600 (Fri, 14 Jan 2005) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-gsm_a.c
   M /trunk/epan/dissectors/packet-ppp.c

From Rene Pilz:

	- Fix partly wrong cause values in the gmm (found by Miklos Szurdi)
	- Fix high/low nibble swap of the force to standby field (found by
	  Miklos Szurdi)
	- Dissect all elements

------------------------------------------------------------------------
r13029 | guy | 2005-01-14 05:17:35 -0600 (Fri, 14 Jan 2005) | 2 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-rmt-alc.c
   A /trunk/epan/dissectors/packet-rmt-alc.h
   A /trunk/epan/dissectors/packet-rmt-common.c
   A /trunk/epan/dissectors/packet-rmt-common.h
   A /trunk/epan/dissectors/packet-rmt-fec.c
   A /trunk/epan/dissectors/packet-rmt-fec.h
   A /trunk/epan/dissectors/packet-rmt-lct.c
   A /trunk/epan/dissectors/packet-rmt-lct.h
   A /trunk/epan/dissectors/packet-rmt-norm.c
   A /trunk/epan/dissectors/packet-rmt-norm.h

From Stefano Pettini: RMT support for ALC and NORM.

------------------------------------------------------------------------
r13028 | guy | 2005-01-14 03:47:22 -0600 (Fri, 14 Jan 2005) | 6 lines
Changed paths:
   M /trunk/wiretap/netxray.c

Note that the low-order bit of hdr->hdr_2_x.xxx[8] appears to be a "bad
FCS" bit for 802.11, just as it appears to be for Ethernet, and give
more details on the 4 bytes of junk at the end of the packet (i.e., that
we haven't yet seen an 802.11 capture where it's an FCS rather than just
junk).

------------------------------------------------------------------------
r13027 | ulfl | 2005-01-13 21:22:43 -0600 (Thu, 13 Jan 2005) | 1 line
Changed paths:
   M /trunk/docbook/eug_src/EUG_app_files.xml
   M /trunk/docbook/eug_src/EUG_chapter_advanced.xml

add hosts file and some more name resolution info
------------------------------------------------------------------------
r13026 | etxrab | 2005-01-13 17:05:59 -0600 (Thu, 13 Jan 2005) | 1 line
Changed paths:
   A /trunk/asn1/h450/h450.cnf
   A /trunk/asn1/h450/h4501.asn
   A /trunk/asn1/h450/packet-h450-template.c
   A /trunk/asn1/h450/packet-h450-template.h

Add a first draft asn2eth generated H.450.x dissector
------------------------------------------------------------------------
r13025 | etxrab | 2005-01-13 17:05:11 -0600 (Thu, 13 Jan 2005) | 1 line
Changed paths:
   A /trunk/asn1/h450

Add a ( first draft ) asn2eth generated H450.x dissector
------------------------------------------------------------------------
r13024 | etxrab | 2005-01-13 15:12:06 -0600 (Thu, 13 Jan 2005) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h225.h
   M /trunk/epan/dissectors/packet-h245.c
   M /trunk/epan/dissectors/packet-h245.h

Some minor bugfixes to H225 functions exported and an OID added and one OID for H245
------------------------------------------------------------------------
r13023 | etxrab | 2005-01-13 15:10:21 -0600 (Thu, 13 Jan 2005) | 1 line
Changed paths:
   M /trunk/asn1/h245/packet-h245-template.c

Add one OID
------------------------------------------------------------------------
r13022 | etxrab | 2005-01-13 15:09:45 -0600 (Thu, 13 Jan 2005) | 1 line
Changed paths:
   M /trunk/asn1/h225/h225-exp.cnf
   M /trunk/asn1/h225/h225.cnf
   M /trunk/asn1/h225/packet-h225-template.c

Minor bug fixes and export functions needed by h450
------------------------------------------------------------------------
r13021 | ulfl | 2005-01-13 14:19:49 -0600 (Thu, 13 Jan 2005) | 2 lines
Changed paths:
   M /trunk/capture_loop.c

fix a bug (reported by Greg Morris) caused by code cleanup (blame it on me): 
as the total packet count wasn't updated, the capture_info dialog wasn't updated accordingly
------------------------------------------------------------------------
r13020 | guy | 2005-01-13 11:31:33 -0600 (Thu, 13 Jan 2005) | 2 lines
Changed paths:
   M /trunk/gtk/packet_list.c

Add a missing case.

------------------------------------------------------------------------
r13019 | guy | 2005-01-13 11:26:10 -0600 (Thu, 13 Jan 2005) | 16 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dlsw.c

Use tcp_dissect_pdus() for DLSw-over-TCP.

Have the DLSw dissector reject packets with an unknown version field.

Leave out some more fields when dissecting Capability Exchange packets,
as they're not used in those packets.

Show numbers in hex when appropriate.

Show the individual subfields of the flow control and SSP flags fields.

Show the frame direction field with val_to_str(), and show the raw
value.

Clean up indentation.

------------------------------------------------------------------------
r13018 | guy | 2005-01-13 03:21:04 -0600 (Thu, 13 Jan 2005) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-nsip.c

Updates from Susanne Edlund.

Remove bogus boilerplate from introductory comment.

------------------------------------------------------------------------
r13017 | guy | 2005-01-13 03:09:56 -0600 (Thu, 13 Jan 2005) | 5 lines
Changed paths:
   M /trunk/doc/ethereal.pod
   M /trunk/doc/tethereal.pod
   M /trunk/epan/addr_resolv.c

Add support for a personal hosts file.

Clean up the description of the global and personal ethers and ipxnets
files.

------------------------------------------------------------------------
r13016 | guy | 2005-01-13 01:51:08 -0600 (Thu, 13 Jan 2005) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dns.c

OPT RRs don't have a class field.

------------------------------------------------------------------------
r13015 | guy | 2005-01-13 01:49:31 -0600 (Thu, 13 Jan 2005) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-bootp.c

Use symbolic names for ARP types.

Clean up indentation.

------------------------------------------------------------------------
r13014 | guy | 2005-01-13 01:47:26 -0600 (Thu, 13 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-http.c

HTTP requests have no content if there's no Content-Length header and no
Transfer-Encoding header.

------------------------------------------------------------------------
r13013 | guy | 2005-01-13 01:43:17 -0600 (Thu, 13 Jan 2005) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-per.c

Display PER booleans the way other bitfields are displayed.

------------------------------------------------------------------------
r13012 | etxrab | 2005-01-13 01:03:14 -0600 (Thu, 13 Jan 2005) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dlsw.c

Don't crash on a negative length
------------------------------------------------------------------------
r13011 | guy | 2005-01-12 19:16:53 -0600 (Wed, 12 Jan 2005) | 5 lines
Changed paths:
   M /trunk/plugins/Makefile.am

Welcome to the wonderful world of "make", wherein a command in a set of
make rules must be indented with one or more tabs - no spaces, just
tabs.  I seem to remember a Stu Feldman quote somewhere in which he
apologized for that requirement....

------------------------------------------------------------------------
r13010 | ulfl | 2005-01-12 15:44:53 -0600 (Wed, 12 Jan 2005) | 1 line
Changed paths:
   M /trunk/epan/plugins.c
   M /trunk/plugins/Xass-list
   M /trunk/plugins/Xplugin_api.c
   M /trunk/plugins/Xplugin_api.h
   M /trunk/plugins/Xplugin_api_decls.h
   M /trunk/plugins/Xplugin_table.h
   M /trunk/plugins/plugin_api.h
   M /trunk/plugins/plugin_api_list.c

add some of the DCE/RPC functions to the plugin API
------------------------------------------------------------------------
r13009 | ulfl | 2005-01-12 15:41:30 -0600 (Wed, 12 Jan 2005) | 1 line
Changed paths:
   M /trunk/ringbuffer.c

don't use two variables for keeping the current ringbuffer file number
------------------------------------------------------------------------
r13008 | ulfl | 2005-01-12 15:38:09 -0600 (Wed, 12 Jan 2005) | 1 line
Changed paths:
   M /trunk/plugins/Makefile.am
   M /trunk/plugins/Makefile.nmake

cleanup old files before generating xyzzy target (it drove me almost crazy to find out the right way to build this target correctly, so be a bit more "automatically" the next time)
------------------------------------------------------------------------
r13007 | ulfl | 2005-01-12 15:31:22 -0600 (Wed, 12 Jan 2005) | 4 lines
Changed paths:
   M /trunk/epan/proto.c

performance improvement: 
In the past: to prevent duplicate protocol names (and alike), each time a new protocol was registered, the list of protocols were iterated and the name compared with each existing name using strcasecmp, which is slow as we have >500 protocols right now.

Now: the protocol name to check against duplicates is first converted into a hashvalue and then only this value is checked and stored in a hashtable. This way the string to check for, has to be converted/compared only a single time!
------------------------------------------------------------------------
r13006 | ulfl | 2005-01-12 15:20:50 -0600 (Wed, 12 Jan 2005) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc-ndr.c
   M /trunk/epan/dissectors/packet-dcerpc.c
   M /trunk/epan/dissectors/packet-dcerpc.h
   M /trunk/epan/dissectors/packet-dcom.c

add new function dissect_dcerpc_uuid_t and let dissect_ndr_uuid_t call it
------------------------------------------------------------------------
r13005 | ulfl | 2005-01-12 15:16:53 -0600 (Wed, 12 Jan 2005) | 2 lines
Changed paths:
   M /trunk/plugins/README.interface

clarify text and describe libethereal.def
Could someone have a look at this, as I'm not 100% sure if it's correct.
------------------------------------------------------------------------
r13004 | etxrab | 2005-01-12 00:00:31 -0600 (Wed, 12 Jan 2005) | 2 lines
Changed paths:
   M /trunk/plugins/megaco/packet-megaco.c

From  Tomer Shani :register_dissector call

------------------------------------------------------------------------
r13003 | guy | 2005-01-10 18:13:42 -0600 (Mon, 10 Jan 2005) | 5 lines
Changed paths:
   M /trunk/capinfos.c

Improve the error reporting.

Remove a duplicate #include, and shuffle the includes a bit to put OS
includes before other includes.

------------------------------------------------------------------------
r13002 | kukosa | 2005-01-10 03:06:07 -0600 (Mon, 10 Jan 2005) | 1 line
Changed paths:
   M /trunk/epan/libethereal.def

Add a "hex_str_to_bytes()" routine
------------------------------------------------------------------------
r13001 | lroland | 2005-01-09 20:37:19 -0600 (Sun, 09 Jan 2005) | 8 lines
Changed paths:
   M /trunk/plugins/mate/mate.h
   M /trunk/plugins/mate/mate_runtime.c
   M /trunk/plugins/mate/mate_setup.c
   M /trunk/plugins/mate/mate_util.c
   M /trunk/plugins/mate/matelib/sip.mate
   M /trunk/plugins/mate/packet-mate.c

One more patch for mate:

- renamed analyze_frame() into mate_analyze_frame().
- prepare mate to be statically linked
- use report_open_failure() , report_read_failure() and
report_failure() in case there's an error while loading the config
- some cleanup in mate_util.c
- some fixes and cleanup in examples and matelib
------------------------------------------------------------------------
r13000 | lroland | 2005-01-09 20:19:11 -0600 (Sun, 09 Jan 2005) | 3 lines
Changed paths:
   M /trunk/asn1/h225/h225.cnf

From Luis Ontanon:

Add another piece of code that got lost to the cnf file of the new h225 dissector.
------------------------------------------------------------------------
r12999 | guy | 2005-01-09 15:42:39 -0600 (Sun, 09 Jan 2005) | 7 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/packet-l2tp.c
   M /trunk/epan/sminmpec.c
   M /trunk/epan/sminmpec.h

From Deepak Jain: L2TP v3 (draft 15) support.

Add VENDOR_IETF to <epan/sminmpec.h>, and add an entry for it to
sminmpec_values[], so that the L2TP dissector can use them rather than
defining its own copy of the private enterprise number values and table
- and make it do so.

------------------------------------------------------------------------
r12998 | guy | 2005-01-08 18:01:55 -0600 (Sat, 08 Jan 2005) | 3 lines
Changed paths:
   M /trunk/asn1/h245/packet-h245-template.c
   M /trunk/epan/dissectors/packet-h245.c
   M /trunk/epan/dissectors/packet-h245.h

Properly declare "dissect_h245()" and "dissect_h245_h245()" as returning
nothing.

------------------------------------------------------------------------
r12997 | guy | 2005-01-08 17:43:29 -0600 (Sat, 08 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/proto.c

From Luis Ontanon: if new ett values are registered after the
tree_is_expanded array is initially allocated, grow the array

------------------------------------------------------------------------
r12996 | guy | 2005-01-08 14:54:23 -0600 (Sat, 08 Jan 2005) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-amr.c

Get rid of some of the boilerplate comments from the sample dissector,
and de-boilerplate another part of the comment.

Fix a test of "octet_aligned" that was setting it to false rather than
testing whether it was false.

------------------------------------------------------------------------
r12995 | lroland | 2005-01-08 13:21:30 -0600 (Sat, 08 Jan 2005) | 1 line
Changed paths:
   M /trunk/asn1/h225/h225-exp.cnf
   M /trunk/asn1/h225/h225.asn
   M /trunk/asn1/h225/h225.cnf
   M /trunk/asn1/h225/packet-h225-template.c
   M /trunk/asn1/h225/packet-h225-template.h
   M /trunk/asn1/h245/h245-exp.cnf
   M /trunk/asn1/h245/h245.asn
   M /trunk/asn1/h245/h245.cnf
   M /trunk/asn1/h245/packet-h245-template.c
   M /trunk/asn1/h245/packet-h245-template.h

Fix svn file properties
------------------------------------------------------------------------
r12994 | etxrab | 2005-01-08 10:38:13 -0600 (Sat, 08 Jan 2005) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-h225.c

Reinsert dissection of h450 messages
------------------------------------------------------------------------
r12993 | etxrab | 2005-01-08 09:49:37 -0600 (Sat, 08 Jan 2005) | 1 line
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-amr.c

Add a dissector for RTP payload AMR RFC 3267
------------------------------------------------------------------------
r12992 | etxrab | 2005-01-08 08:42:12 -0600 (Sat, 08 Jan 2005) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h225.h
   M /trunk/epan/dissectors/packet-h245.c

Generate "conversations" code correctly, adaptions to changes in asn2eth generator.
Regenerate with latest asn2eth compiler.
------------------------------------------------------------------------
r12991 | etxrab | 2005-01-08 08:39:53 -0600 (Sat, 08 Jan 2005) | 1 line
Changed paths:
   M /trunk/asn1/h245/h245.cnf
   M /trunk/asn1/h245/packet-h245-template.c

Generate "conversations" code correctly, adaptions to changes in asn2eth generator.
------------------------------------------------------------------------
r12990 | etxrab | 2005-01-08 08:36:10 -0600 (Sat, 08 Jan 2005) | 1 line
Changed paths:
   M /trunk/asn1/h225/packet-h225-template.c

Fixa a typo
------------------------------------------------------------------------
r12989 | guy | 2005-01-07 16:20:28 -0600 (Fri, 07 Jan 2005) | 2 lines
Changed paths:
   M /trunk/plugins/Xplugin_table.h

Fix the signature of proto_register_subtree_array().

------------------------------------------------------------------------
r12988 | guy | 2005-01-07 16:19:44 -0600 (Fri, 07 Jan 2005) | 2 lines
Changed paths:
   M /trunk/plugins/plugin_api_list.c

Fix the signature of proto_register_subtree_array().

------------------------------------------------------------------------
r12987 | guy | 2005-01-07 13:34:36 -0600 (Fri, 07 Jan 2005) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-jxta.c

Use BASE_NONE, not FT_NONE, for the "base" value of an FT_STRING field.

------------------------------------------------------------------------
r12986 | guy | 2005-01-07 13:29:54 -0600 (Fri, 07 Jan 2005) | 19 lines
Changed paths:
   M /trunk/epan/dissectors/packet-jxta.c

Get rid of duplicate "element signature" field.

Clean up indentation.

The signatures are 4-byte strings - treat them as such.

Don't hide fields - dissectors should show what all bytes, other than
perhaps padding bytes, are.

Don't use the tvb_format_text-ified versions of strings as the value -
Ethereal already deals with non-printable characters when displaying
them.

When creating a subset tvbuff that runs to the end of the parent, use -1
as the length, don't calculate the length ourselves.

Use "tvb_reported_length()", not "tvb_length()", in loops that parse the
entire packet.

------------------------------------------------------------------------
r12985 | lroland | 2005-01-07 12:07:18 -0600 (Fri, 07 Jan 2005) | 21 lines
Changed paths:
   M /trunk/plugins/mate/Makefile.nmake
   M /trunk/plugins/mate/mate_setup.c
   M /trunk/plugins/mate/mate_util.c
   M /trunk/plugins/mate/matelib/h225_ras.mate
   M /trunk/plugins/mate/matelib/sip.mate
   M /trunk/plugins/mate/packet-mate.c

From Luis Ontanon:

A new patch for mate

- changed the default config file name to "" 
- avoid trying to confgure mate when the config filename is ""
- add filename and line to config errors, that way one can actually
find errors in config files
- teady up the config error strings ( made them uniform )
- fixed a crash when missing index AVPs (Name,For,On etc) in config AVPLS
- make sure we do not delete the config AVPs and AVPLs to avoid
references to unsubscribed strings been left arround
- fixed the len on LoALs 
- changed the way loal_from_file reports an error.
- matelib/sip.mate was missing the Name in a PduDef  (from Julien Leproust)
- matelib/h225_ras had a wrong field name (from Julien Leproust)

At this point mate is silent when it's not expressely configured by the user.

From me:
reduce compiler noise on MSVC
------------------------------------------------------------------------
r12984 | gerald | 2005-01-07 09:08:24 -0600 (Fri, 07 Jan 2005) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ieee802a.c

Define data_handle at startup.

------------------------------------------------------------------------
r12983 | guy | 2005-01-07 07:33:21 -0600 (Fri, 07 Jan 2005) | 4 lines
Changed paths:
   M /trunk/capture_loop.c

From Thomas Boehne: fix a call to use errmsg_len rather than sizeof
errmsg - errmsg is a pointer, so sizeof errmsg is the size of the
pointer, not the size of what it points to.

------------------------------------------------------------------------
r12982 | guy | 2005-01-07 06:58:43 -0600 (Fri, 07 Jan 2005) | 2 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-jxta.c

From Mike Duigou: JXTA protocol support.

------------------------------------------------------------------------
r12981 | guy | 2005-01-07 06:56:21 -0600 (Fri, 07 Jan 2005) | 4 lines
Changed paths:
   M /trunk/epan/proto.c
   M /trunk/epan/proto.h

Constify a pointer, so that the array of pointers to ett_ values can be
const, although the pointers can't point to consts (as the values get
filled in as they're registered).

------------------------------------------------------------------------
r12980 | guy | 2005-01-07 06:00:01 -0600 (Fri, 07 Jan 2005) | 2 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/tvbuff.h

Doxygen cleanups, from Mike Duigou.

------------------------------------------------------------------------
r12979 | guy | 2005-01-07 05:59:05 -0600 (Fri, 07 Jan 2005) | 2 lines
Changed paths:
   M /trunk/doc/README.developer

Grammar and typo fix from Mike Duigou.

------------------------------------------------------------------------
r12978 | guy | 2005-01-07 05:56:00 -0600 (Fri, 07 Jan 2005) | 5 lines
Changed paths:
   M /trunk/epan/addr_resolv.h

Include <epan/address.h>, as per a suggestion by Thomas Boehne - not all
dissectors using the address resolution routines need to know about the
"address" structure, so not all of them would include <epan/address.h>
themselves.

------------------------------------------------------------------------
r12977 | guy | 2005-01-07 05:43:05 -0600 (Fri, 07 Jan 2005) | 8 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/packet-bgp.c
   M /trunk/epan/dissectors/packet-bgp.h

From Carlos Pignataro:

	o BGPv4 SAFI-Specific Attribute support
	  - draft-kapoor-nalawade-idr-bgp-ssa-00.txt
	o Tunnel SAFI support for BGP
	  - draft-nalawade-kapoor-tunnel-safi-02.txt
	o Small length fix

------------------------------------------------------------------------
r12976 | guy | 2005-01-07 05:22:18 -0600 (Fri, 07 Jan 2005) | 2 lines
Changed paths:
   M /trunk/epan/addr_resolv.c

Put back the declaration of hostspath on Windows.

------------------------------------------------------------------------
r12975 | guy | 2005-01-07 04:49:05 -0600 (Fri, 07 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/req_resp_hdrs.c

From Chris Maynard: free strings fetched with "tvb_get_string()" when
we're done with them.

------------------------------------------------------------------------
r12974 | guy | 2005-01-07 04:44:44 -0600 (Fri, 07 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-srvloc.c

From Chris Maynard: free strings fetched with "tvb_fake_unicode()" when
we're done with them.

------------------------------------------------------------------------
r12973 | guy | 2005-01-07 04:39:51 -0600 (Fri, 07 Jan 2005) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smpp.c

From Chris Maynard: free mallocated strings when we're done with them. 
(There's still the risk of a leak if we throw an exception before we
free the string.)

Clean up indentation.

------------------------------------------------------------------------
r12972 | guy | 2005-01-07 04:20:17 -0600 (Fri, 07 Jan 2005) | 5 lines
Changed paths:
   M /trunk/epan/addr_resolv.c

Move the open and close of the hosts file into "read_hosts_file()".

On Windows, if we don't get the SYSTEMROOT environment variable, try
various locations where the hosts file is known to exist.

------------------------------------------------------------------------
r12971 | guy | 2005-01-07 04:09:34 -0600 (Fri, 07 Jan 2005) | 23 lines
Changed paths:
   M /trunk/epan/dissectors/packet-slsk.c

From Chris Maynard: free strings fetched with "tvb_get_string()".

Use "format_text()" or "tvb_format_text()" with the %s format, to handle
non-printable characters.

When uncompressing data into a new tvbuff, add it to the list of data
sources as we do elsewhere.

When putting items into the protocol tree from an uncompressed tvbuff,
use the offset into the tvbuff and the length of the item.

Fetch string lengths into a variable and use the variable rather than
repeatedly fetching the length from a tvbuff.

Use -1 rather than tvb_length_remaining() when putting a "to the end of
the tvbuff" item into the protocol tree.

Use "proto_tree_add_item()" to put items into the tree, rather than
"proto_tree_add_xxx" calls with a "tvb_get_yyy" call as the argument.

If we've fetched a value into a variable, don't re-fetch it in
"proto_tree_add_xxx" calls.

------------------------------------------------------------------------
r12970 | lroland | 2005-01-06 21:19:39 -0600 (Thu, 06 Jan 2005) | 5 lines
Changed paths:
   M /trunk/epan/addr_resolv.c

Check return value of getenv(). 
It can return NULL, which would lead here to strcpy(hostspath, NULL);
*Very* bad.

replace g_malloc(), strcpy() and strcat() with one single g_strconcat(). 
------------------------------------------------------------------------
r12969 | lroland | 2005-01-06 17:21:10 -0600 (Thu, 06 Jan 2005) | 3 lines
Changed paths:
   M /trunk/plugins/mate/mate.h
   M /trunk/plugins/mate/mate_runtime.c
   M /trunk/plugins/mate/mate_setup.c
   M /trunk/plugins/mate/mate_util.c
   M /trunk/plugins/mate/packet-mate.c

From Luis Ontanon:

Fix some MSVC warnings in MATE
------------------------------------------------------------------------
r12968 | lroland | 2005-01-06 06:39:54 -0600 (Thu, 06 Jan 2005) | 6 lines
Changed paths:
   M /trunk/plugins/mate/mate.h
   M /trunk/plugins/mate/mate_runtime.c
   M /trunk/plugins/mate/mate_setup.c
   M /trunk/plugins/mate/packet-mate.c

From Luis Ontanon:

Another patch for mate:
 - adds a "GopTree={TRUE|FALSE}" attribute to Gogs
 - changes "ShowPduTree={NoTree|PduTree|FrameTree}"
 - adds "implicit stop" to Gops with no Stop declared
------------------------------------------------------------------------
r12967 | guy | 2005-01-06 02:37:43 -0600 (Thu, 06 Jan 2005) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   M /trunk/epan/dissectors/packet-ethertype.c
   A /trunk/epan/dissectors/packet-ieee802a.c
   A /trunk/epan/dissectors/packet-ieee802a.h
   M /trunk/etypes.h

Add a dissector to handle IEEE 802a's OUI Extended Ethertype; dissectors
can register an OUI, and PIDs for that OUI, in the same fashion that
they can do so for SNAP (after which the 802a OUI Extended Ethertype is
clearly modeled).

------------------------------------------------------------------------
r12966 | guy | 2005-01-06 02:21:25 -0600 (Thu, 06 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-llc.c

Handle the case where nobody registers any OUIs and oui_info_table is
thus null.

------------------------------------------------------------------------
r12965 | guy | 2005-01-05 05:00:11 -0600 (Wed, 05 Jan 2005) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-sip.c

From Chris Maynard: catch a case where a string allocated with
"tvb_get_string()" wasn't freed.  (It appears there can also be leaks if
an exception is thrown while dissecting.)

------------------------------------------------------------------------
r12964 | guy | 2005-01-05 04:55:00 -0600 (Wed, 05 Jan 2005) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-sebek.c

Use tvb_format_text() with %s format items, to handle non-printable
characters.

Clean up indentation.

------------------------------------------------------------------------
r12963 | guy | 2005-01-05 04:51:05 -0600 (Wed, 05 Jan 2005) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-sdp.c

From Chris Maynard: don't extract strings with "tvb_get_string()" if
we're not going to use them, and free them when we're done with them.

Clean up white space.

------------------------------------------------------------------------
r12962 | guy | 2005-01-05 04:45:43 -0600 (Wed, 05 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-q931.c

From Chris Maynard: free strings allocated by "tvb_get_string()" after
we're done with them.

------------------------------------------------------------------------
r12961 | guy | 2005-01-05 04:42:26 -0600 (Wed, 05 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-per.c

From Chris Maynard: free strings allocated by "tvb_fake_unicode()" after
we're done with them.

------------------------------------------------------------------------
r12960 | guy | 2005-01-05 04:38:50 -0600 (Wed, 05 Jan 2005) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-multipart.c

From Chris Maynard: free mallocated data.

Don't assign the result of a routine that mallocates data to a const
pointer - that forces us to cast the pointer when freeing the data.

------------------------------------------------------------------------
r12959 | guy | 2005-01-05 04:27:22 -0600 (Wed, 05 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-mmse.c

From Chris Maynard: free strings even if we don't put them into the
protocol tree.

------------------------------------------------------------------------
r12958 | guy | 2005-01-05 04:23:26 -0600 (Wed, 05 Jan 2005) | 2 lines
Changed paths:
   M /trunk/plugins/mgcp/packet-mgcp.c

From Chris Maynard: free a string obtained with "tvb_get_string()".

------------------------------------------------------------------------
r12957 | guy | 2005-01-05 04:19:36 -0600 (Wed, 05 Jan 2005) | 6 lines
Changed paths:
   M /trunk/epan/tvbuff.c

From Chris Maynard: free up the z_stream we've allocated before failure
returns.  (The error returns shouldn't happen in practice, as the GLib
memory allocators never return a null pointer, they just abort the
program, but if we're going to be checking for failure and returning, we
should do the right thing anyway.)

------------------------------------------------------------------------
r12956 | guy | 2005-01-05 04:17:09 -0600 (Wed, 05 Jan 2005) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-kerberos.c

From Chris Maynard: free strings fetched with "tvb_fake_unicode()".

------------------------------------------------------------------------
r12955 | guy | 2005-01-05 04:13:24 -0600 (Wed, 05 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-image-jfif.c

Free the image type string as soon as we're done with it, so that we
don't leak it (even if we throw an exception processing the image).

------------------------------------------------------------------------
r12954 | guy | 2005-01-05 04:05:03 -0600 (Wed, 05 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-image-gif.c

From Chris Maynard: add a missing free of a string fetched with
tvb_get_string().

------------------------------------------------------------------------
r12953 | guy | 2005-01-05 04:01:04 -0600 (Wed, 05 Jan 2005) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fix.c

From Chris Maynard: don't fetch a string if we're not going to use it.

Also, move up the freeing of the tag string to immediately after we're
done with it, so we don't leak it if we throw an exception getting the
value.

------------------------------------------------------------------------
r12952 | guy | 2005-01-05 03:53:03 -0600 (Wed, 05 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-daap.c

Use "tvb_format_text()" with %s format strings, so that we handle
non-printable strings.

------------------------------------------------------------------------
r12951 | guy | 2005-01-05 03:46:43 -0600 (Wed, 05 Jan 2005) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-cops.c

Use "tvb_format_text()" to generate the text to use in
"proto_tree_add_text()" calls, so that we handle non-printable
characters if they happen to appear in the strings.

------------------------------------------------------------------------
r12950 | guy | 2005-01-05 03:41:20 -0600 (Wed, 05 Jan 2005) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-aim.c

Use "tvb_format_text()" to extract and format the buddy name string in
the top-level item for the buddy name, rather than extracting the string
into a mallocated buffer (and not freeing it...).

Put all the code to put stuff into the protocol tree inside "if(tree)".

------------------------------------------------------------------------
r12949 | kukosa | 2005-01-05 01:09:06 -0600 (Wed, 05 Jan 2005) | 1 line
Changed paths:
   M /trunk/tools/asn2eth.py

Fixed value string names in field array when NO_PROT_PREFIX option is used
------------------------------------------------------------------------
r12948 | lroland | 2005-01-04 20:25:34 -0600 (Tue, 04 Jan 2005) | 5 lines
Changed paths:
   M /trunk/asn1/h225/h225.cnf
   M /trunk/asn1/h225/packet-h225-template.c
   M /trunk/epan/dissectors/packet-h225.c

Fix broken parts of the new h225 dissector:
- add more data to the Info structure of the h225 taps.
- Fix the output to the Info Column

This patch is not complete, but statistics should basically work now.
------------------------------------------------------------------------
r12947 | guy | 2005-01-04 15:05:56 -0600 (Tue, 04 Jan 2005) | 7 lines
Changed paths:
   M /trunk/asn1/h225/packet-h225-template.c

"dissect_h225_H323UserInformation()" returns the number of bytes
dissected, so register it as a new-style dissector.

As we register it by name, we don't need to create a dissector handle
for it to register it in a dissector table - just use "find_dissector()"
to find the handle.

------------------------------------------------------------------------
r12946 | gerald | 2005-01-04 11:25:38 -0600 (Tue, 04 Jan 2005) | 2 lines
Changed paths:
   M /trunk/Makefile.nmake

Replace a "cp" with three "xcopy"s.

------------------------------------------------------------------------
r12945 | gerald | 2005-01-03 15:11:53 -0600 (Mon, 03 Jan 2005) | 3 lines
Changed paths:
   M /trunk/capinfos.c
   M /trunk/doc/capinfos.pod

Let capinfos print statistics for more than one file.  Normalize
capitalization.

------------------------------------------------------------------------
r12944 | gerald | 2005-01-03 14:03:16 -0600 (Mon, 03 Jan 2005) | 3 lines
Changed paths:
   M /trunk/config.nmake

Move "c:\cygwin\bin" to the end of the PATH.  The latest Cygwin includes a
"link" command which collides with the MSVC linker.

------------------------------------------------------------------------
r12943 | gerald | 2005-01-03 13:58:04 -0600 (Mon, 03 Jan 2005) | 3 lines
Changed paths:
   M /trunk/gtk/about_dlg.c

Make the version and library information in the about box copy-and-paste-able
under GTK+ 2.x.

------------------------------------------------------------------------
r12942 | kukosa | 2005-01-03 08:41:02 -0600 (Mon, 03 Jan 2005) | 1 line
Changed paths:
   M /trunk/tools/asn2eth.py

Directives #.FN_* can be used for Ethereal types as well as for ASN.1 types
------------------------------------------------------------------------
r12941 | kukosa | 2005-01-03 06:54:31 -0600 (Mon, 03 Jan 2005) | 2 lines
Changed paths:
   M /trunk/tools/asn2eth.py

- names for value_string tables are generated with protocol name prefix
- FROM constraint for PER supported
------------------------------------------------------------------------
r12940 | obiot | 2005-01-03 05:26:45 -0600 (Mon, 03 Jan 2005) | 3 lines
Changed paths:
   M /trunk/AUTHORS

Change e-mail address of Olivier Biot.


------------------------------------------------------------------------
r12939 | guy | 2005-01-03 04:27:20 -0600 (Mon, 03 Jan 2005) | 2 lines
Changed paths:
   M /trunk/wiretap/netxray.c

Add some more comments about the FCS issue.

------------------------------------------------------------------------
r12938 | guy | 2005-01-03 04:10:23 -0600 (Mon, 03 Jan 2005) | 3 lines
Changed paths:
   M /trunk/wiretap/netxray.c

Give a bit more information on the "are there FCSes in the frame?"
issue.

------------------------------------------------------------------------
r12937 | guy | 2005-01-02 23:27:35 -0600 (Sun, 02 Jan 2005) | 8 lines
Changed paths:
   M /trunk/wiretap/netxray.c

Rename the CAPTYPE_ definitions as appropriate - many of them are
specific to particular types of captures, and the same value might
correspond to more than one CAPTYPE_ definition.

Add an additional CAPTYPE_ for some non-gigabit Ethereal capture seen by
Bill Meier, and fix the range check the time stamp units value as per
his mail.

------------------------------------------------------------------------
r12936 | guy | 2005-01-02 21:42:23 -0600 (Sun, 02 Jan 2005) | 10 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/wiretap/AUTHORS
   M /trunk/wiretap/netxray.c

From James Fields and Kevin Johnson: fix the handling of time stamps in
a number of Windows Sniffer captures - apparently the time stamp units
are in a field in the file header.

Add a capture type value seen in at least one ATM capture.

Update some comments, and add some comments.

Get rid of some redundant setting of "timeunit".

------------------------------------------------------------------------
r12935 | guy | 2005-01-02 19:36:35 -0600 (Sun, 02 Jan 2005) | 4 lines
Changed paths:
   M /trunk/README.win32

Rewrap a paragraph, for the benefit of us old-timers who typically use
80-column wide terminal windows (which also lets more windows fit than
would fit with wider windows).

------------------------------------------------------------------------
r12934 | gerald | 2005-01-02 18:08:40 -0600 (Sun, 02 Jan 2005) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ip.c

If the ICMP code is present, put it in the Info column.

------------------------------------------------------------------------
r12933 | lroland | 2005-01-02 16:56:25 -0600 (Sun, 02 Jan 2005) | 1 line
Changed paths:
   M /trunk/asn1/h225/packet-h225-template.h
   M /trunk/epan/dissectors/packet-h225.h

fix a typo in new packet-h225.h
------------------------------------------------------------------------
r12932 | etxrab | 2005-01-02 16:05:47 -0600 (Sun, 02 Jan 2005) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h225.h
   M /trunk/epan/dissectors/packet-h245.c
   M /trunk/epan/dissectors/packet-h245.h

Change the dissectors to asn2eth generated ones.
------------------------------------------------------------------------
r12931 | etxrab | 2005-01-02 16:03:12 -0600 (Sun, 02 Jan 2005) | 1 line
Changed paths:
   A /trunk/asn1/h235/h235-exp.cnf

This file is needed if h225 or h245 is generated separately.
------------------------------------------------------------------------
r12930 | etxrab | 2005-01-02 16:01:32 -0600 (Sun, 02 Jan 2005) | 1 line
Changed paths:
   A /trunk/asn1/h225/h225-exp.cnf
   A /trunk/asn1/h225/h225.asn
   A /trunk/asn1/h225/h225.cnf
   A /trunk/asn1/h225/packet-h225-template.c
   A /trunk/asn1/h225/packet-h225-template.h

asn2eth generated h225 dissector
------------------------------------------------------------------------
r12929 | etxrab | 2005-01-02 16:00:32 -0600 (Sun, 02 Jan 2005) | 1 line
Changed paths:
   A /trunk/asn1/h225

asn2eth generated h225 dissector
------------------------------------------------------------------------
r12928 | etxrab | 2005-01-02 15:58:45 -0600 (Sun, 02 Jan 2005) | 1 line
Changed paths:
   A /trunk/asn1/h245/h245-exp.cnf
   A /trunk/asn1/h245/h245.asn
   A /trunk/asn1/h245/h245.cnf
   A /trunk/asn1/h245/packet-h245-template.c
   A /trunk/asn1/h245/packet-h245-template.h

asn2eth generated h245 dissector
------------------------------------------------------------------------
r12927 | etxrab | 2005-01-02 15:58:06 -0600 (Sun, 02 Jan 2005) | 1 line
Changed paths:
   A /trunk/asn1/h245

asn2eth generated h245 dissector
------------------------------------------------------------------------
r12926 | guy | 2005-01-02 04:01:05 -0600 (Sun, 02 Jan 2005) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ldap.c

*Correctly* append to the filter string.

------------------------------------------------------------------------
r12925 | guy | 2005-01-02 03:40:26 -0600 (Sun, 02 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dns.c
   M /trunk/epan/dissectors/packet-dns.h
   M /trunk/epan/dissectors/packet-nbns.c

Unlike the detailed description of resource record types, the
detailed description of classes is pretty much redundant - remove it.

------------------------------------------------------------------------
r12924 | guy | 2005-01-01 22:01:00 -0600 (Sat, 01 Jan 2005) | 6 lines
Changed paths:
   M /trunk/epan/plugins.c

Don't cast pointers passed as arguments - pass a pointer to the right
type of variable and assign the value; that squelches "dereferencing
type-punned pointer will break strict-aliasing rules" warnings from some
versions of GCC.


------------------------------------------------------------------------
r12923 | guy | 2005-01-01 21:58:08 -0600 (Sat, 01 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/proto.c

Cast away the constness of the argument to "g_tree_lookup()" - another
GLib function with an unfortunate signature.

------------------------------------------------------------------------
r12922 | guy | 2005-01-01 18:23:50 -0600 (Sat, 01 Jan 2005) | 3 lines
Changed paths:
   M /trunk/gtk/follow_dlg.c
   M /trunk/plugins/asn1/packet-asn1.c

Cast the values passed to the <ctype.h> macros so as to avoid
sign-extending 8-bit characters.

------------------------------------------------------------------------
r12921 | guy | 2005-01-01 17:54:32 -0600 (Sat, 01 Jan 2005) | 5 lines
Changed paths:
   M /trunk/gtk/io_stat.c
   M /trunk/gtk/rtp_analysis.c

Add casts of OBJECT_SET_DATA() arguments in cases where that's
appropriate.

Use %u, not %d, to convert unsigned values to strings.

------------------------------------------------------------------------
r12920 | guy | 2005-01-01 17:40:56 -0600 (Sat, 01 Jan 2005) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tacacs.c

"inet_pton()" isn't getting declared on Windows; include "inet_v6defs.h"
if NEED_INET_V6DEFS_H is defined, as is done in "packet-sdp.c", the
other module using "inet_pton()".

------------------------------------------------------------------------
r12919 | guy | 2005-01-01 17:29:05 -0600 (Sat, 01 Jan 2005) | 6 lines
Changed paths:
   M /trunk/gtk/compat_macros.h

Don't explicitly cast the last argument to OBJECT_SET_DATA() to
"gpointer" - callers should do that if appropriate (or perhaps change
the call to pass a different argument if that's more appropriate), and
even if casting it were the right thing to do, the argument needs to be
surrounded with parentheses so the correct value is cast.

------------------------------------------------------------------------
r12918 | guy | 2005-01-01 17:25:49 -0600 (Sat, 01 Jan 2005) | 11 lines
Changed paths:
   M /trunk/gtk/ui_util.c

Cast away the constness of the geom_name argument to
"window_new_with_geom()" - there's no way to tell the compiler that
we're not going to be modifying it, but we aren't.

The right way to check whether a pointer is null and get a Boolean is to
test it against null, not to cast it to a Boolean type - as Boolean
types in C89/C90, at least, are just integral types, that cast might
just throw away the upper 32 bits; that probably yields the results you
want, but the compiler might well justifiably warn about that on an LP64
platform.

------------------------------------------------------------------------
r12917 | guy | 2005-01-01 17:22:10 -0600 (Sat, 01 Jan 2005) | 3 lines
Changed paths:
   M /trunk/tap-iostat.c

Fix the signature of "iostat_packet()" - the pointer to data supplied by
the dissector is a const pointer.

------------------------------------------------------------------------
r12916 | guy | 2005-01-01 17:21:05 -0600 (Sat, 01 Jan 2005) | 6 lines
Changed paths:
   M /trunk/plugins/mgcp/packet-mgcp.c

When computing a hash value based on, among other things, a
conversation, use the "index" member of the conversation_t - that lets
you get a value that fits in a guint, but without provoking the warning
you might get from a compiler if you cast a pointer to the conversation
to a guint.

------------------------------------------------------------------------
r12915 | guy | 2005-01-01 17:19:11 -0600 (Sat, 01 Jan 2005) | 7 lines
Changed paths:
   M /trunk/gtk/file_dlg.c
   M /trunk/gtk/packet_history.c
   M /trunk/gtk/summary_dlg.c

The right way to check whether a pointer is null and get a Boolean is to
test it against null, not to cast it to a Boolean type - as Boolean
types in C89/C90, at least, are just integral types, that cast might
just throw away the upper 32 bits; that probably yields the results you
want, but the compiler might well justifiably warn about that on an LP64
platform.

------------------------------------------------------------------------
r12914 | guy | 2005-01-01 17:11:46 -0600 (Sat, 01 Jan 2005) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-eth.c
   M /trunk/epan/dissectors/packet-tr.c
   M /trunk/epan/packet.c

Get rid of some warnings about variables whose values might be lost in a
longjmp, by properly qualifying those variables as volatile.

------------------------------------------------------------------------
r12913 | guy | 2005-01-01 06:49:54 -0600 (Sat, 01 Jan 2005) | 8 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smb-sidsnooping.c
   M /trunk/gtk/conversations_eth.c
   M /trunk/gtk/conversations_fc.c
   M /trunk/gtk/conversations_fddi.c
   M /trunk/gtk/conversations_ip.c
   M /trunk/gtk/conversations_ipx.c
   M /trunk/gtk/conversations_table.c
   M /trunk/gtk/conversations_table.h
   M /trunk/gtk/conversations_tcpip.c
   M /trunk/gtk/conversations_tr.c
   M /trunk/gtk/conversations_udpip.c
   M /trunk/gtk/conversations_wlan.c
   M /trunk/gtk/h323_conversations.c
   M /trunk/gtk/h323_conversations.h
   M /trunk/gtk/hostlist_eth.c
   M /trunk/gtk/hostlist_fc.c
   M /trunk/gtk/hostlist_fddi.c
   M /trunk/gtk/hostlist_ip.c
   M /trunk/gtk/hostlist_ipx.c
   M /trunk/gtk/hostlist_table.c
   M /trunk/gtk/hostlist_table.h
   M /trunk/gtk/hostlist_tcpip.c
   M /trunk/gtk/hostlist_tr.c
   M /trunk/gtk/hostlist_udpip.c
   M /trunk/gtk/hostlist_wlan.c
   M /trunk/gtk/rpc_progs.c
   M /trunk/gtk/rpc_stat.c
   M /trunk/gtk/rtp_stream.c
   M /trunk/tap-iostat.c
   M /trunk/tap-iousers.c

Make the signatures of functions passed to "register_tap_listener()"
match what "register_tap_listener()" expects (rather than squelching
warnings about the differences by casting function pointers to "void
*").

Make static some functions not used outside the module in which they're
defined. 

------------------------------------------------------------------------
r12912 | guy | 2005-01-01 06:32:28 -0600 (Sat, 01 Jan 2005) | 4 lines
Changed paths:
   M /trunk/gtk/packet_list.c

Throw in a cast to squelch an (unavoidable, and probably harmless -
GTK+'s function signatures aren't necessarily what they should be)
warning.

------------------------------------------------------------------------
r12911 | guy | 2005-01-01 06:29:26 -0600 (Sat, 01 Jan 2005) | 4 lines
Changed paths:
   M /trunk/epan/to_str.c
   M /trunk/epan/to_str.h

"address_to_str()" and "address_to_str_buf()" don't modify the "address"
structure pointed to them by reference, so make the argument a "const"
pointer.

------------------------------------------------------------------------
r12910 | guy | 2004-12-31 20:57:02 -0600 (Fri, 31 Dec 2004) | 12 lines
Changed paths:
   M /trunk/epan/dissectors/packet-bootp.c
   M /trunk/epan/dissectors/packet-smb-sidsnooping.c
   M /trunk/epan/tap.h
   M /trunk/gtk/ansi_a_stat.c
   M /trunk/gtk/ansi_map_stat.c
   M /trunk/gtk/bootp_stat.c
   M /trunk/gtk/dcerpc_stat.c
   M /trunk/gtk/fc_stat.c
   M /trunk/gtk/gsm_a_stat.c
   M /trunk/gtk/gsm_map_stat.c
   M /trunk/gtk/h225_counter.c
   M /trunk/gtk/h225_ras_srt.c
   M /trunk/gtk/h323_analysis.c
   M /trunk/gtk/http_stat.c
   M /trunk/gtk/io_stat.c
   M /trunk/gtk/isup_stat.c
   M /trunk/gtk/ldap_stat.c
   M /trunk/gtk/mgcp_stat.c
   M /trunk/gtk/mtp3_stat.c
   M /trunk/gtk/rtp_analysis.c
   M /trunk/gtk/service_response_time_table.c
   M /trunk/gtk/service_response_time_table.h
   M /trunk/gtk/sip_stat.c
   M /trunk/gtk/smb_stat.c
   M /trunk/gtk/wsp_stat.c
   M /trunk/tap-ansi_astat.c
   M /trunk/tap-bootpstat.c
   M /trunk/tap-dcerpcstat.c
   M /trunk/tap-gsm_astat.c
   M /trunk/tap-h225counter.c
   M /trunk/tap-h225rassrt.c
   M /trunk/tap-httpstat.c
   M /trunk/tap-mgcpstat.c
   M /trunk/tap-protocolinfo.c
   M /trunk/tap-protohierstat.c
   M /trunk/tap-rpcprogs.c
   M /trunk/tap-rpcstat.c
   M /trunk/tap-sipstat.c
   M /trunk/tap-smbsids.c
   M /trunk/tap-smbstat.c
   M /trunk/tap-wspstat.c

As we've made the tap_specific_data field of a tap_packet_t structure a
const pointer (so that we don't get complaints when we make the
tap-specific data argument to "tap_queue_packet()" a const pointer,
allowing dissectors to hand const data to a tap without a complaint), we
should make the tap per-packet function take a const pointer as an
argument as well.  Do so.

In some taps, use _U_, or actually use the argument, rather than
sticking in dummy "X = X" assignments to fake use of parameters.  (This
means that the tap functions in question no longer have the notion that
they act on a particular static structure wired in.)

------------------------------------------------------------------------
r12909 | guy | 2004-12-31 16:00:44 -0600 (Fri, 31 Dec 2004) | 12 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fcdns.c

Note what Fibre Channel spec documents this protocol.

Don't assign the const pointers passed to hash routines to non-const
pointers.

In "zonenm_to_str()", don't assume there's a null terminator in the
packet - use "tvb_get_string()" so that the buffer into which it's
copied is explicitly null-terminated.

Put the Domain & Port into the protocol tree as a "0xXXXXXXXX" string,
rather than as a string with one blank in it.

------------------------------------------------------------------------
r12908 | guy | 2004-12-31 15:40:22 -0600 (Fri, 31 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fcswils.c

Don't bother copying the switch name to a buffer - we can just use
"tvb_get_ptr()".

------------------------------------------------------------------------
r12907 | guy | 2004-12-31 15:36:08 -0600 (Fri, 31 Dec 2004) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fcswils.c

Fix a bug introduced in the previous checkin.

Make the names for list record types match the names used before the
previous checkin.

------------------------------------------------------------------------
r12906 | guy | 2004-12-31 15:20:46 -0600 (Fri, 31 Dec 2004) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fcip.c

FC-over-IP is now covered by RFCs; update the specification references.

Make the protcol/version information an array of 8 bytes, not 2 guints;
not all the world's a (little-endian) PC!

------------------------------------------------------------------------
r12905 | guy | 2004-12-31 14:58:23 -0600 (Fri, 31 Dec 2004) | 22 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fcswils.c
   M /trunk/epan/dissectors/packet-fcswils.h

Note what Fibre Channel spec documents this protocol.

Don't assign the const pointers passed to hash routines to non-const
pointers.

Don't use "tvb_get_ptr()" to get a pointer to a data structure, and
dereference that pointer - there's no guarantee that the structure in
question will be located on an appropriate boundary in the data from the
packet (regardless of whether it's properly aligned within the data for
the protocol being dissected).

Put the record length for an EFP request into the protocol tree.

Check the sanity of the payload length for that request.

In "zonenm_to_str()", don't assume there's a null terminator in the
packet - use "tvb_get_string()" so that the buffer into which it's
copied is explicitly null-terminated.

Put the Domain & Port into the protocol tree as a "0xXXXXXXXX" string,
rather than as a string with one blank in it.

------------------------------------------------------------------------
r12904 | guy | 2004-12-31 14:35:55 -0600 (Fri, 31 Dec 2004) | 10 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fcfcs.c

Note what Fibre Channel spec documents this protocol.

Don't assign the const pointers passed to hash routines to non-const
pointers.

Don't assume that strings the spec says are null-terminated are
necessarily null-terminated in the packet - use "tvb_strsize()" to find
the length of the purported null-terminated string; it'll throw the
appropriate exception if no null is found.

------------------------------------------------------------------------
r12903 | lroland | 2004-12-31 08:53:17 -0600 (Fri, 31 Dec 2004) | 1 line
Changed paths:
   M /trunk/plugins/Xplugin_table.h
   M /trunk/plugins/plugin_api_list.c

Update some function declarations in the plugin api
------------------------------------------------------------------------
r12902 | lroland | 2004-12-31 08:27:38 -0600 (Fri, 31 Dec 2004) | 14 lines
Changed paths:
   M /trunk/plugins/mate/mate.h
   M /trunk/plugins/mate/mate_runtime.c
   M /trunk/plugins/mate/mate_setup.c
   M /trunk/plugins/mate/mate_util.c
   M /trunk/plugins/mate/matelib/h225_ras.mate
   M /trunk/plugins/mate/matelib/isup.mate
   M /trunk/plugins/mate/packet-mate.c

From Luis Ontanon for Mate:
- moved gop and gog indexes into gopcfgs, which is a propedeutic
change for upcoming changes in the way gops are to be grouped
-  changed the way gog-keys are kept in memory
- every gopkey attribute is copied into the gop->extras to avoid
redundancy in the configuration
- added timers to gogs mate.gog_type.StartTime and mate.gog_type.Time
- fixed a bug in scs_subscribe that mangled some strings
- minor interface improvement to scs propedeutic to having types avp
values in a future
- changed medium and large into mate_medium and mate_large in the
scs_collection
- fixed Mode=Replace in Transforms, now it works
- fixed a crash at reinit due to impropper initialization of mate_items
------------------------------------------------------------------------
r12901 | lroland | 2004-12-31 08:14:44 -0600 (Fri, 31 Dec 2004) | 2 lines
Changed paths:
   M /trunk/tap-h225counter.c

Fix from Luis Ontanon:
Bring tap-h225counter.c in sync with newest revision of the h225 dissector
------------------------------------------------------------------------
r12900 | guy | 2004-12-30 21:18:13 -0600 (Thu, 30 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tcap.c

Use "proto_tree_add_item()" to add a chunk of bytes to the protocol
tree.

------------------------------------------------------------------------
r12899 | guy | 2004-12-30 21:17:00 -0600 (Thu, 30 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-pflog.c

Don't assign const pointers to non-const pointers, especially if the
object pointed to by the non-const pointer won't be modified.

------------------------------------------------------------------------
r12898 | guy | 2004-12-30 21:14:18 -0600 (Thu, 30 Dec 2004) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-pres.c

"string_to_hex()" doesn't modify its first argument, so make it a
"const" pointer, and don't cast away the constness of "tvb_get_ptr()"s
result when passing it to "string_to_hex()".

------------------------------------------------------------------------
r12897 | guy | 2004-12-30 21:12:51 -0600 (Thu, 30 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ip.c

Don't cast away the constness of pointers passed to "ip_to_str()" -
"ip_to_str()" takes a "const guint8 *" argument.

------------------------------------------------------------------------
r12896 | guy | 2004-12-30 21:10:11 -0600 (Thu, 30 Dec 2004) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-edonkey.c

There are no guarantees that "strncasecmp()" works with
non-null-terminated strings, so be safe and fetch the metatag string
with "tvb_get_string()".

------------------------------------------------------------------------
r12895 | guy | 2004-12-30 20:48:53 -0600 (Thu, 30 Dec 2004) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fcip.c

Use "tvb_memeql()" to check whether specified bytes in a packet have a
specified value.

Make a constant array "const".

------------------------------------------------------------------------
r12894 | guy | 2004-12-30 20:16:05 -0600 (Thu, 30 Dec 2004) | 8 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tacacs.c

Don't cast away the constness of argument pointers.

Don't supply our own definition of AF_INET or our own declaration of
"inet_pton()" - use the system ones if they're available.

"mkipv4_address()" doesn't modify the string passed to it - make it a
const pointer.

------------------------------------------------------------------------
r12893 | guy | 2004-12-30 20:13:42 -0600 (Thu, 30 Dec 2004) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-gsm_a.c

Don't roll our own code to display IPv4 or IPv6 addresses, use
"ip_to_str()" and "ip6_to_str()".

Check the length of items for IPv4 and IPv6 addresses before displaying
them as such.

------------------------------------------------------------------------
r12892 | guy | 2004-12-30 20:11:13 -0600 (Thu, 30 Dec 2004) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ldap.c

Don't assign the const pointers passed to hash routines to non-const
pointers.

Now that "col_set_str()" takes a "const char *" as the second argument,
we don't have to cast away the constness of strings passed to it.

------------------------------------------------------------------------
r12891 | guy | 2004-12-30 20:09:48 -0600 (Thu, 30 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-mtp3.c

Don't assign a const pointer argument to a non-const pointer variable.

------------------------------------------------------------------------
r12890 | guy | 2004-12-30 20:08:01 -0600 (Thu, 30 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-aoe.c
   M /trunk/epan/dissectors/packet-fc.c
   M /trunk/epan/dissectors/packet-fcels.c
   M /trunk/epan/dissectors/packet-fcfzs.c
   M /trunk/epan/dissectors/packet-fcp.c
   M /trunk/epan/dissectors/packet-sip.c

Don't assign the const pointers passed to hash routines to non-const
pointers.

------------------------------------------------------------------------
r12889 | guy | 2004-12-30 20:03:16 -0600 (Thu, 30 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/column-utils.c

Properly cast the pointer assigned to col_info->col_data.

------------------------------------------------------------------------
r12888 | guy | 2004-12-30 20:02:19 -0600 (Thu, 30 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/proto.c
   M /trunk/epan/proto.h

"proto_registrar_get_byname()" doesn't modify its argument, so make it
"const char *".

------------------------------------------------------------------------
r12887 | guy | 2004-12-30 20:01:03 -0600 (Thu, 30 Dec 2004) | 3 lines
Changed paths:
   M /trunk/timestats.c
   M /trunk/timestats.h

Make arguments "const *" if the routine doesn't modify the object to
which they point.

------------------------------------------------------------------------
r12886 | jmayer | 2004-12-30 19:56:22 -0600 (Thu, 30 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-ieee80211.c

Make sure print_buff is \0-terminated
------------------------------------------------------------------------
r12885 | jmayer | 2004-12-30 19:37:54 -0600 (Thu, 30 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ieee80211.c

As pointed out by Guy: We should be able to filter on the original SSID,
so use a copy of the existing one for printing.

------------------------------------------------------------------------
r12884 | guy | 2004-12-30 18:33:54 -0600 (Thu, 30 Dec 2004) | 3 lines
Changed paths:
   M /trunk/gtk/ansi_a_stat.c
   M /trunk/gtk/ansi_map_stat.c
   M /trunk/gtk/conversations_table.c
   M /trunk/gtk/gsm_a_stat.c
   M /trunk/gtk/mtp3_stat.c
   M /trunk/gtk/mtp3_summary.c
   M /trunk/gtk/rtp_analysis.c
   M /trunk/gtk/service_response_time_table.c

In column sort routines, make the row pointers "const" pointers, as the
arguments passed in corresponding to those pointers are gconstpointers.

------------------------------------------------------------------------
r12883 | guy | 2004-12-30 18:32:00 -0600 (Thu, 30 Dec 2004) | 6 lines
Changed paths:
   M /trunk/epan/plugins.c
   M /trunk/epan/plugins.h

As "get_persconffile_path()" doesn't return a "const char *", neither
does "get_plugins_pers_dir()" - and "get_plugins_global_dir()" doesn't
return one either.  Both of them return mallocated data, and making them
return a "const char *" just causes compiler whining when you try to
free them.

------------------------------------------------------------------------
r12882 | guy | 2004-12-30 18:29:09 -0600 (Thu, 30 Dec 2004) | 3 lines
Changed paths:
   M /trunk/color_filters.c

"get_persconffile_path()" doesn't return a "const char *", it just
returns a "char *", so don't assign its return value to a "const char *".

------------------------------------------------------------------------
r12881 | guy | 2004-12-30 18:26:36 -0600 (Thu, 30 Dec 2004) | 21 lines
Changed paths:
   M /trunk/epan/filesystem.c
   M /trunk/epan/filesystem.h
   M /trunk/file.c
   M /trunk/file.h
   M /trunk/gtk/about_dlg.c
   M /trunk/gtk/dcerpc_stat.c
   M /trunk/gtk/fc_stat.c
   M /trunk/gtk/file_dlg.c
   M /trunk/gtk/io_stat.c
   M /trunk/gtk/ldap_stat.c
   M /trunk/gtk/main.c
   M /trunk/gtk/rpc_stat.c
   M /trunk/gtk/smb_stat.c
   M /trunk/gtk/tap_dfilter_dlg.c

"gtk_entry_get_text()" returns a "const char *" - assign the result to
one.

"get_basename()" doesn't modify its argument, and its callers don't
modify the substring pointed to by the result, so make it take a "const
char *" as an argument and return a "const char *". 

"find_last_pathname_separator()" doesn't modify its argument, so make it
a "const char *" - but some of its callers pass a non-"const" "char *"
and modify the result, so don't make its return value a "const char *".
And, as none of its callers are outside "filesystem.c", make it static.

In "about_folders_page_new()", have separate variables for pathnames
returned as "const char *" (which are cached by the routine that returns
them, so you can't modify them - and can't free them, so get rid of the
commented-out "g_free()" calls for them) and pathnames returned as "char
*" (which are allocated anew for each call, and can be modified, but
have to be freed).

Clean up white space.

------------------------------------------------------------------------
r12880 | guy | 2004-12-30 18:12:25 -0600 (Thu, 30 Dec 2004) | 5 lines
Changed paths:
   M /trunk/gtk/packet_list.c
   M /trunk/ui_util.h

Make the "col_data" field in a "column_info" structure a pointer to an
array of "const char *" rather than to an array of "char *", and make
the second argument of "col_set_str()" a "const char *" - there's no
guarantee that "col_data" points to something you're allowed to modify.

------------------------------------------------------------------------
r12879 | guy | 2004-12-30 18:05:22 -0600 (Thu, 30 Dec 2004) | 6 lines
Changed paths:
   M /trunk/epan/libethereal.def

Add a "tvb_bytes_to_str_punct()" routine, which wraps
"bytes_to_str_punct()", and use it instead of extracting the bytes and
formatting them by hand.

Also, export "bytes_to_str_punct()".

------------------------------------------------------------------------
r12878 | guy | 2004-12-30 17:57:29 -0600 (Thu, 30 Dec 2004) | 5 lines
Changed paths:
   M /trunk/epan/column-utils.h

Make the "col_data" field in a "column_info" structure a pointer to an
array of "const char *" rather than to an array of "char *", and make
the second argument of "col_set_str()" a "const char *" - there's no
guarantee that "col_data" points to something you're allowed to modify.

------------------------------------------------------------------------
r12877 | guy | 2004-12-30 17:56:12 -0600 (Thu, 30 Dec 2004) | 4 lines
Changed paths:
   M /trunk/epan/adler32.c
   M /trunk/epan/adler32.h

The first argument to "adler32_bytes()" is only passed on to
"update_adler32()", and the corresponding argument is a "const unsigned
char *", so that argument can be a "const unsigned char *".

------------------------------------------------------------------------
r12876 | guy | 2004-12-30 17:47:52 -0600 (Thu, 30 Dec 2004) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fcsb3.c
   M /trunk/epan/tvbuff.c
   M /trunk/epan/tvbuff.h

Add a "tvb_bytes_to_str_punct()" routine, which wraps
"bytes_to_str_punct()", and use it instead of extracting the bytes and
formatting them by hand.

------------------------------------------------------------------------
r12875 | guy | 2004-12-30 17:42:02 -0600 (Thu, 30 Dec 2004) | 5 lines
Changed paths:
   M /trunk/epan/column-utils.c
   M /trunk/epan/column_info.h
   M /trunk/gtk/packet_win.c
   M /trunk/print.c

Make the "col_data" field in a "column_info" structure a pointer to an
array of "const char *" rather than to an array of "char *", and make
the second argument of "col_set_str()" a "const char *" - there's no
guarantee that "col_data" points to something you're allowed to modify.

------------------------------------------------------------------------
r12874 | guy | 2004-12-30 17:19:17 -0600 (Thu, 30 Dec 2004) | 7 lines
Changed paths:
   M /trunk/plugins/rtnet/packet-rtnet.c

We now require gint64/guint64 support to build Ethereal, so get rid of
the #ifdefs.

Don't use "%ll[doux]" - not all platforms use "ll" as the length
specifier for 64-bit integers in formats.  Use PRI[doux]64 instead, to
handle platforms where some other length specifier is used.

------------------------------------------------------------------------
r12873 | etxrab | 2004-12-30 16:40:21 -0600 (Thu, 30 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h225.h

Change a function name in preparation for genereating H.245 and H.225 dissectors with asn2etrh
------------------------------------------------------------------------
r12872 | etxrab | 2004-12-30 16:39:28 -0600 (Thu, 30 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/libethereal.def

Change a function name in preparation for genereating H.245 and H.225 dissectors with asn2etrh
------------------------------------------------------------------------
r12871 | etxrab | 2004-12-30 16:38:59 -0600 (Thu, 30 Dec 2004) | 1 line
Changed paths:
   M /trunk/gtk/h225_counter.c

Change a function name in preparation for genereating H.245 and H.225 dissectors with asn2etrh
------------------------------------------------------------------------
r12870 | guy | 2004-12-30 12:34:11 -0600 (Thu, 30 Dec 2004) | 2 lines
Changed paths:
   M /trunk/plugins/Xass-list
   M /trunk/plugins/Xplugin_api.c
   M /trunk/plugins/Xplugin_api.h
   M /trunk/plugins/Xplugin_api_decls.h
   M /trunk/plugins/Xplugin_table.h

Regenerate.

------------------------------------------------------------------------
r12869 | guy | 2004-12-30 12:33:14 -0600 (Thu, 30 Dec 2004) | 2 lines
Changed paths:
   M /trunk/plugins/plugin_api_list.c

Fix the declaration of "tap_queue_packet()" to match its new signature.

------------------------------------------------------------------------
r12868 | gerald | 2004-12-30 10:45:37 -0600 (Thu, 30 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dhcpv6.c

From Vincent Jardin: Fix the dissection of relayed messages.

------------------------------------------------------------------------
r12867 | guy | 2004-12-29 21:32:38 -0600 (Wed, 29 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/libethereal.def

Add "get_addr_name()" to the list of items exported by libethereal.

------------------------------------------------------------------------
r12866 | guy | 2004-12-29 20:28:50 -0600 (Wed, 29 Dec 2004) | 2 lines
Changed paths:
   M /trunk/gtk/conversations_table.c

Fix some cut-and-pasteos.

------------------------------------------------------------------------
r12865 | guy | 2004-12-29 20:27:00 -0600 (Wed, 29 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-null.c

In the "capture_null()" routine, handle IPv6.

------------------------------------------------------------------------
r12864 | guy | 2004-12-29 20:21:33 -0600 (Wed, 29 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-windows-common.c

Update a URL.

------------------------------------------------------------------------
r12863 | guy | 2004-12-29 20:10:24 -0600 (Wed, 29 Dec 2004) | 8 lines
Changed paths:
   M /trunk/epan/addr_resolv.c
   M /trunk/epan/addr_resolv.h
   M /trunk/epan/column-utils.c
   M /trunk/epan/dissectors/packet-aoe.c
   M /trunk/epan/prefs.c
   M /trunk/epan/tap.c
   M /trunk/epan/tap.h
   M /trunk/gtk/conversations_table.c
   M /trunk/gtk/hostlist_table.c
   M /trunk/util.c

Add a "get_addr_name()" routine that takes an "address *" and attempts
to resolve it to a name.

Fix up some const-pointer-to-non-const-pointer, and
function-pointer-to-void-*, conversions.

Fix some comments.

------------------------------------------------------------------------
r12862 | guy | 2004-12-29 16:31:56 -0600 (Wed, 29 Dec 2004) | 3 lines
Changed paths:
   M /trunk/gtk/help_dlg.h

From Albert Chin: not all compilers support a comma after the last value
in an enum.

------------------------------------------------------------------------
r12861 | guy | 2004-12-29 16:17:04 -0600 (Wed, 29 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-bssgp.c
   M /trunk/epan/dissectors/packet-nsip.c

From Albert Chin: get rid of C99/GCCisms (initializing automatic
structures with non-constant values).

------------------------------------------------------------------------
r12860 | guy | 2004-12-29 15:31:18 -0600 (Wed, 29 Dec 2004) | 3 lines
Changed paths:
   M /trunk/gtk/cfilter_combo_utils.c

From Albert Chin: "config.h" should always be included first first when
using AC_SYS_LARGEFILE.

------------------------------------------------------------------------
r12859 | guy | 2004-12-29 15:29:53 -0600 (Wed, 29 Dec 2004) | 3 lines
Changed paths:
   M /trunk/capture_loop.c

Pass "capture_opts" to "capture_loop_dispatch()", as
"capture_loop_dispatch()" uses it.

------------------------------------------------------------------------
r12858 | guy | 2004-12-29 15:20:42 -0600 (Wed, 29 Dec 2004) | 4 lines
Changed paths:
   M /trunk/capture_sync.c

Fix it to compile on systems without "pcap_datalink_val_to_name()" (or
with "pcap_datalink_val_to_name()" but without a declaration of it in
"pcap.h" *cough* Software Update *cough*).

------------------------------------------------------------------------
r12857 | gerald | 2004-12-29 10:25:06 -0600 (Wed, 29 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/except.c

Remove some unneeded backslashes.

------------------------------------------------------------------------
r12856 | gerald | 2004-12-29 09:54:55 -0600 (Wed, 29 Dec 2004) | 5 lines
Changed paths:
   M /trunk/make-version.pl

If we can't find the "svn" executable in the current path, look in
"c:/cygwin/lib/subversion/bin/", which is the current default location
for Subversion 1.1.1 under Cygwin.  If we still can't find "svn", simply
return instead of exiting.

------------------------------------------------------------------------
r12855 | ulfl | 2004-12-29 06:37:06 -0600 (Wed, 29 Dec 2004) | 1 line
Changed paths:
   M /trunk/capture.c
   M /trunk/capture.h
   M /trunk/capture_loop.c
   M /trunk/gtk/font_utils.c
   M /trunk/gtk/font_utils.h
   M /trunk/gtk/main.c

move global capture_child flag into capture_options
------------------------------------------------------------------------
r12854 | kukosa | 2004-12-29 06:28:16 -0600 (Wed, 29 Dec 2004) | 13 lines
Changed paths:
   M /trunk/tools/asn2eth.py

- new optional parameter ETH_VAR for #.EXPORTS directive
- few fixes for last changes

Summary of changes during last three revisions
- NULL can be used in #.PDU or #.REGISTER directive
- fix in cyclic dependency handling
- keep <proto>-exp.cnf file regardless of '-k' option
- handling of negative values in SingleValue or ValueRange constraints
- handling of all SEQUONCE/SET (OF) types including SIZE constraint
- rename ber_sequence->ber_sequence_t and ber_choice->ber_choice_t
- rename dissect_ber_integer_new()->dissect_ber_integer()
- fix number of parameters for dissect_per_GeneralString()

------------------------------------------------------------------------
r12853 | ulfl | 2004-12-29 03:09:35 -0600 (Wed, 29 Dec 2004) | 3 lines
Changed paths:
   M /trunk/capture.c
   M /trunk/capture.h
   M /trunk/capture_loop.c
   M /trunk/capture_sync.c
   M /trunk/capture_sync.h
   M /trunk/gtk/capture_dlg.c
   M /trunk/gtk/capture_if_dlg.c
   M /trunk/gtk/capture_info_dlg.c
   M /trunk/gtk/main.c
   M /trunk/gtk/main.h

Don't use a global capture_opts in the capturing engine (this isn't a good idea). Do some more "housekeeping" in the capturing part. 

Hopefully the unspecified forward declaration of capture_options_t in main.h is portable, but buildbot will tell me. This way I need the internals of that struct only at the places I really use it.
------------------------------------------------------------------------
r12852 | guy | 2004-12-28 19:08:20 -0600 (Tue, 28 Dec 2004) | 4 lines
Changed paths:
   M /trunk/alert_box.c
   M /trunk/capture_loop.c
   M /trunk/editcap.c
   M /trunk/epan/filesystem.c
   M /trunk/file.c
   M /trunk/gtk/color_dlg.c
   M /trunk/gtk/dfilter_expr_dlg.c
   M /trunk/gtk/file_dlg.c
   M /trunk/gtk/font_utils.c
   M /trunk/gtk/io_stat.c
   M /trunk/gtk/main.c
   M /trunk/gtk/prefs_dlg.c
   M /trunk/gtk/rtp_analysis.c
   M /trunk/gtk/tcp_graph.c
   M /trunk/gtk/webbrowser.c
   M /trunk/mergecap.c
   M /trunk/pcap-util.c
   M /trunk/tap-protocolinfo.c
   M /trunk/tap-rpcstat.c
   M /trunk/tethereal.c
   M /trunk/version_info.c

Make the tone of the error messages a bit less formal, by using
contractions.  (Safari does, at least when you're trying to open a file
to which you don't have read access.)

------------------------------------------------------------------------
r12851 | guy | 2004-12-28 18:51:29 -0600 (Tue, 28 Dec 2004) | 5 lines
Changed paths:
   M /trunk/capture_loop.c

Use the "errmsg_len" argument to "capture_loop_open_output()" -
"sizeof(errmsg)', when "errmsg" is a "char *", doesn't give the size of
the string to which "errmsg" points, it gives the size of the pointer
itself, which is too small.

------------------------------------------------------------------------
r12850 | guy | 2004-12-28 18:44:45 -0600 (Tue, 28 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ethertype.c
   M /trunk/etypes.h

Add Ethernet type for DEC Local Area Systems Transport.

------------------------------------------------------------------------
r12849 | gerald | 2004-12-28 13:59:50 -0600 (Tue, 28 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/except.c

Remove some macros that were making the "splint" utility throw a fit.

------------------------------------------------------------------------
r12848 | ulfl | 2004-12-27 18:36:06 -0600 (Mon, 27 Dec 2004) | 1 line
Changed paths:
   M /trunk/capture_loop.c
   M /trunk/gtk/capture_dlg.h
   M /trunk/ringbuffer.h

some code cleanup (comments changed)
------------------------------------------------------------------------
r12847 | ulfl | 2004-12-27 18:10:04 -0600 (Mon, 27 Dec 2004) | 1 line
Changed paths:
   M /trunk/doc/README.developer

add a more detailed description, how to add a new dissector file
------------------------------------------------------------------------
r12846 | ulfl | 2004-12-27 16:04:49 -0600 (Mon, 27 Dec 2004) | 1 line
Changed paths:
   M /trunk/capture_loop.c

a lot of code cleanup/refactoring
------------------------------------------------------------------------
r12845 | ulfl | 2004-12-27 15:35:09 -0600 (Mon, 27 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-tcap.h

fix a freebsd buildbot compile error, caused by myself :-(
------------------------------------------------------------------------
r12844 | ulfl | 2004-12-27 10:11:08 -0600 (Mon, 27 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-mtp3.h

fix a solaris buildbot compile error
------------------------------------------------------------------------
r12843 | ulfl | 2004-12-27 08:27:27 -0600 (Mon, 27 Dec 2004) | 1 line
Changed paths:
   M /trunk/docbook/catalog.xml

location of cygwin's docbook xml changed
------------------------------------------------------------------------
r12842 | ulfl | 2004-12-27 07:17:20 -0600 (Mon, 27 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/addr_resolv.c
   M /trunk/epan/dissectors/packet-m2pa.c
   M /trunk/epan/dissectors/packet-m3ua.c
   M /trunk/epan/dissectors/packet-mtp3.c
   M /trunk/epan/dissectors/packet-sua.c
   M /trunk/epan/dissectors/packet-tcap.c
   M /trunk/gtk/decode_as_dcerpc.c
   M /trunk/gtk/decode_as_dlg.c

Again, some warnings removed.
------------------------------------------------------------------------
r12841 | ulfl | 2004-12-27 04:11:28 -0600 (Mon, 27 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-ieee80211.c

Again, another warning (hopefully) removed.
------------------------------------------------------------------------
r12840 | guy | 2004-12-26 16:52:16 -0600 (Sun, 26 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssl.c

From Jouni Malinen: use a length field from the packet to determine how
much data is available, rather than using "tvb_length_remaining()".

------------------------------------------------------------------------
r12839 | guy | 2004-12-26 16:26:02 -0600 (Sun, 26 Dec 2004) | 7 lines
Changed paths:
   M /trunk/epan/Makefile.common
   A /trunk/epan/arptypes.h
   M /trunk/epan/dissectors/packet-arp.c
   M /trunk/epan/dissectors/packet-bootp.c

From Yaniv Kaul: add Ethernet address-to-name (or, at least, address-to-
vendor-name-and-next-three-bytes-in-hex) resolution for Ethernet/802.x
hardware addresses.

Move the ARP hardware types into a header file, for use by dissectors
other than the ARP dissector.

------------------------------------------------------------------------
r12838 | gerald | 2004-12-26 12:58:52 -0600 (Sun, 26 Dec 2004) | 4 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/packet-dhcpv6.c

From Vincent Jardin:
 - support for new DHCPv6 options
 - fix for the support of OPTION_RELAY_MSG 

------------------------------------------------------------------------
r12837 | ulfl | 2004-12-26 04:11:42 -0600 (Sun, 26 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-tcap.c

Again, some warnings removed.
------------------------------------------------------------------------
r12836 | guy | 2004-12-25 18:28:47 -0600 (Sat, 25 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssl.c

From Jouni Malinen: dissect TLS extensions (RFC 3546) for ClientHello
and ServerHello.

------------------------------------------------------------------------
r12835 | guy | 2004-12-25 18:22:16 -0600 (Sat, 25 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dns.c
   M /trunk/epan/dissectors/packet-dns.h
   M /trunk/epan/dissectors/packet-gtp.c
   M /trunk/epan/dissectors/packet-nbns.c
   M /trunk/epan/dissectors/packet-pgm.c
   M /trunk/epan/dissectors/packet-radius.c

From Luis Ontanon: add more filterable fields to DNS, PGM, GTP, and RADIUS.

------------------------------------------------------------------------
r12834 | ulfl | 2004-12-25 12:35:21 -0600 (Sat, 25 Dec 2004) | 1 line
Changed paths:
   M /trunk/dftest.c
   M /trunk/epan/dissectors/packet-aim-chat.c
   M /trunk/epan/dissectors/packet-aim.c
   M /trunk/epan/dissectors/packet-bssgp.c
   M /trunk/epan/dissectors/packet-tcp.c
   M /trunk/epan/dissectors/packet-x11.c

Again, some warnings removed.
------------------------------------------------------------------------
r12833 | ulfl | 2004-12-25 08:46:40 -0600 (Sat, 25 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-pgsql.c

Fix a core dump causing the buildbot test menagerie to fail. It was caused by incorrectly trying to proto_tree_add_item() with a very huge length. However, someone with more SQL knowledge than me should have a qualified look at that place and do a better fix.
------------------------------------------------------------------------
r12832 | ulfl | 2004-12-25 07:49:30 -0600 (Sat, 25 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-aim-oft.c
   M /trunk/epan/dissectors/packet-aim-signon.c
   M /trunk/epan/dissectors/packet-aoe.c
   M /trunk/epan/dissectors/packet-cmip.c
   M /trunk/epan/dissectors/packet-cmp.c
   M /trunk/epan/dissectors/packet-dcerpc-spoolss.c
   M /trunk/epan/dissectors/packet-http.c
   M /trunk/epan/dissectors/packet-ipdc.c
   M /trunk/epan/dissectors/packet-ipmi.c
   M /trunk/epan/dissectors/packet-ipsec.c
   M /trunk/epan/dissectors/packet-llc.c
   M /trunk/epan/dissectors/packet-mtp3.c
   M /trunk/epan/dissectors/packet-nfs.c
   M /trunk/epan/dissectors/packet-nlm.c
   M /trunk/epan/dissectors/packet-portmap.c
   M /trunk/epan/dissectors/packet-rpc.c
   M /trunk/epan/dissectors/packet-rtsp.c
   M /trunk/epan/dissectors/packet-sigcomp.c
   M /trunk/epan/dissectors/packet-sip.c
   M /trunk/epan/dissectors/packet-smb-sidsnooping.c
   M /trunk/epan/dissectors/packet-smb.c
   M /trunk/epan/dissectors/packet-tcp.c
   M /trunk/epan/dissectors/packet-tds.c
   M /trunk/epan/dissectors/packet-x11.c
   M /trunk/h225-persistentdata.c
   M /trunk/plugins/acn/packet-acn.c
   M /trunk/plugins/asn1/packet-asn1.c

a lot of warnings removed, most of them about pointer to int casts without using the appropriate GLib macros
------------------------------------------------------------------------
r12831 | ulfl | 2004-12-25 04:30:58 -0600 (Sat, 25 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-bssgp.c
   M /trunk/epan/dissectors/packet-dhcpv6.c
   M /trunk/epan/dissectors/packet-windows-common.c

Again, some warnings removed.
------------------------------------------------------------------------
r12830 | ulfl | 2004-12-24 17:17:38 -0600 (Fri, 24 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc.c
   M /trunk/epan/dissectors/packet-dcm.c

use GLib's pointer to int conversion macros to prevent compiler warnings
------------------------------------------------------------------------
r12829 | guy | 2004-12-24 16:21:23 -0600 (Fri, 24 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-vj.c

Note the RFC that describes VJ compression.

------------------------------------------------------------------------
r12828 | sahlberg | 2004-12-24 06:39:21 -0600 (Fri, 24 Dec 2004) | 4 lines
Changed paths:
   A /trunk/asn1/pkixcmp
   A /trunk/asn1/pkixcmp/CMP.asn
   A /trunk/asn1/pkixcmp/Makefile
   A /trunk/asn1/pkixcmp/cmp-exp.cnf
   A /trunk/asn1/pkixcmp/cmp.cnf
   A /trunk/asn1/pkixcmp/packet-cmp-template.c
   A /trunk/asn1/pkixcmp/packet-cmp-template.h
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-cmp.c
   A /trunk/epan/dissectors/packet-cmp.h

New protocol RFC2510   PKIXCMP   Certificate Management Protocol



------------------------------------------------------------------------
r12827 | sahlberg | 2004-12-24 06:22:52 -0600 (Fri, 24 Dec 2004) | 3 lines
Changed paths:
   M /trunk/asn1/pkix1implicit/packet-pkix1implicit-template.c
   M /trunk/asn1/pkix1implicit/packet-pkix1implicit-template.h
   M /trunk/asn1/pkix1implicit/pkix1implicit_exp.cnf
   M /trunk/epan/dissectors/packet-pkix1implicit.c
   M /trunk/epan/dissectors/packet-pkix1implicit.h

export ResonFlags from pkix1implicit


------------------------------------------------------------------------
r12826 | sahlberg | 2004-12-24 06:16:27 -0600 (Fri, 24 Dec 2004) | 3 lines
Changed paths:
   M /trunk/asn1/pkix1explicit/packet-pkix1explicit-template.c
   M /trunk/asn1/pkix1explicit/packet-pkix1explicit-template.h
   M /trunk/asn1/pkix1explicit/pkix1explicit_exp.cnf
   M /trunk/epan/dissectors/packet-pkix1explicit.c
   M /trunk/epan/dissectors/packet-pkix1explicit.h

export Certificate and CertificateList from pkix1explicit


------------------------------------------------------------------------
r12825 | sahlberg | 2004-12-24 05:32:13 -0600 (Fri, 24 Dec 2004) | 3 lines
Changed paths:
   A /trunk/asn1/pkixcrmf
   A /trunk/asn1/pkixcrmf/CRMF.asn
   A /trunk/asn1/pkixcrmf/Makefile
   A /trunk/asn1/pkixcrmf/crmf-exp.cnf
   A /trunk/asn1/pkixcrmf/crmf.cnf
   A /trunk/asn1/pkixcrmf/packet-crmf-template.c
   A /trunk/asn1/pkixcrmf/packet-crmf-template.h
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-crmf.c
   A /trunk/epan/dissectors/packet-crmf.h

New "protocol"   the support functions from RFC2511  Certificate Request Message Format   CRMF


------------------------------------------------------------------------
r12824 | sahlberg | 2004-12-24 05:24:35 -0600 (Fri, 24 Dec 2004) | 3 lines
Changed paths:
   M /trunk/asn1/cms/cms-exp.cnf
   M /trunk/asn1/cms/cms.cnf
   M /trunk/epan/dissectors/packet-cms.c
   M /trunk/epan/dissectors/packet-cms.h

export EnvelopedData


------------------------------------------------------------------------
r12823 | sahlberg | 2004-12-23 13:56:29 -0600 (Thu, 23 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tcp.c

RST segmetns are never WindowFull segments.


------------------------------------------------------------------------
r12822 | sahlberg | 2004-12-23 13:53:24 -0600 (Thu, 23 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc.c

add another error code to dcerpc


------------------------------------------------------------------------
r12821 | ulfl | 2004-12-23 07:34:02 -0600 (Thu, 23 Dec 2004) | 1 line
Changed paths:
   M /trunk/gtk/webbrowser.c

show a simple_dialog, if we use glib 1.x and trying to open a webbrowser (not implemented). This will prevent another compiler warning.
------------------------------------------------------------------------
r12820 | lroland | 2004-12-23 02:27:30 -0600 (Thu, 23 Dec 2004) | 17 lines
Changed paths:
   M /trunk/plugins/mate/mate.h
   M /trunk/plugins/mate/mate_runtime.c
   M /trunk/plugins/mate/mate_setup.c
   M /trunk/plugins/mate/mate_util.c
   M /trunk/plugins/mate/mate_util.h
   M /trunk/plugins/mate/matelib/isup.mate
   M /trunk/plugins/mate/matelib/radius.mate
   M /trunk/plugins/mate/moduleinfo.h
   M /trunk/plugins/mate/packet-mate.c

Fixes for Mate from Luis Ontanon:
- fixes crash at reinit when DiscardPduData=TRUE: check if there's an
avpl before deleting it.
- mate.pdu_type.RelativeTime had a dual use, add
mate.pdu_type.TimeInGop and leave the other alone.
- other fixes related to times (they now seem to be right)
- scs_subscribe doesn't use g_malloc anymore. it uses GMemChunks
(I had to rename two GMemChunks to make MSVC happy)
- fixes crash at reinit when DiscardPduData=TRUE: check if there's an
avpl before deleting it.
- mate.pdu_type.RelativeTime had a dual use, add
mate.pdu_type.TimeInGop and leave the other alone.
- other fixes related to times (they now seem to be right)
- fixed few things at reinit:
     - reset last_id 
     - remove the nodes in the items hash tables 

------------------------------------------------------------------------
r12819 | ulfl | 2004-12-22 18:27:20 -0600 (Wed, 22 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom-cba-acco.c

Again, some warnings removed.
------------------------------------------------------------------------
r12818 | sharpe | 2004-12-22 13:44:42 -0600 (Wed, 22 Dec 2004) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smb.c


Clean up one more instance of 8-byte timestamps in SMB. Have to work on
the 4-byte ones soon.


------------------------------------------------------------------------
r12817 | guy | 2004-12-22 13:27:09 -0600 (Wed, 22 Dec 2004) | 8 lines
Changed paths:
   M /trunk/epan/dissectors/packet-radius.c

RFC 2868 says that the length of a "tagged string" field must be at
least 3 - 2 for type+length and 1 for the tag - so treat a "tagged
string" field as bad if there isn't at least one byte of data.  (It's a
bit odd that the RFC says that the tag must be in the range 0x01-0x1F -
that sounds suspiciously as if they're saying "printable characters
aren't valid tags", to allow untagged strings, which might suggest that
a field with a length of 2 should be interpreted as an empty string.)

------------------------------------------------------------------------
r12816 | guy | 2004-12-22 04:44:20 -0600 (Wed, 22 Dec 2004) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-windows-common.c

Check for all bogus ACE lengths, i.e. all lengths < 4.

Clean up indentation.

Add a comment asking whether the revision in an ACL is *really* 2 bytes
and the ACE count is *really* 4 bytes.

------------------------------------------------------------------------
r12815 | guy | 2004-12-22 03:58:28 -0600 (Wed, 22 Dec 2004) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ieee80211.c

Add only one protocol tree item for the "weak IV" flag - add it as a
non-hidden Boolean, and use "proto_tree_add_boolean_format()" to add it
to include the key byte.

------------------------------------------------------------------------
r12814 | guy | 2004-12-22 03:46:14 -0600 (Wed, 22 Dec 2004) | 7 lines
Changed paths:
   M /trunk/gtk/conversations_wlan.c
   M /trunk/gtk/hostlist_wlan.c

Change the RCS ID - it's not getting expanded when it's "$Id $".

Fix a comment in conversations_wlan.c.

Refer to "WLAN" in hostlist_wlan.c, just as we do in
conversations_wlan.c.

------------------------------------------------------------------------
r12813 | guy | 2004-12-22 03:19:01 -0600 (Wed, 22 Dec 2004) | 4 lines
Changed paths:
   M /trunk/gtk/print_dlg.c

From Brett Kuskie: recalculate the ranges every time an export dialog is
opened, not just the first time, so that if the packet counts change
up-to-date values are displayed.

------------------------------------------------------------------------
r12812 | sharpe | 2004-12-21 20:40:33 -0600 (Tue, 21 Dec 2004) | 10 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smb.c


Add a dissection for the GET_NETWORK_FILE_OPEN_INFO and make some stuff that
we do in several places into a subroutine. We need to do it also with the 
4-byte time stamps that are dissected all over the place. 

I had thought that that last unknown in the returned structure might be 
a count of the number of clients that have the file open, but a simple test
suggests that that is not the case.


------------------------------------------------------------------------
r12811 | guy | 2004-12-21 19:51:00 -0600 (Tue, 21 Dec 2004) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-radius.c

In the "rdconvertXXXtostr()" routines, check that the length passed in
is >= 0 (if it's not, that's a bug), and make the buffer index and total
length variables int as well, to match the length.

------------------------------------------------------------------------
r12810 | guy | 2004-12-21 19:42:54 -0600 (Tue, 21 Dec 2004) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-radius.c

Move the RADIUS_TIMESTAMP, RADIUS_INTEGER4_TAGGED, and RADIUS_UNKNOWN
case branches up, so the case branches are in the same order as the
elements of the enum are, and add length checks to RADIUS_TIMESTAMP and
RADIUS_INTEGER4_TAGGED.

------------------------------------------------------------------------
r12809 | guy | 2004-12-21 18:30:39 -0600 (Tue, 21 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ieee80211.c

Properly declare a variable as volatile, as the longjmp done by the
exception mechanism might clobber it otherwise.

------------------------------------------------------------------------
r12808 | guy | 2004-12-21 18:23:55 -0600 (Tue, 21 Dec 2004) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-radius.c

Add some checks to make sure the AVP length is large enough for the item
we're fetching from the AVP.

In the case of a tagged string, if the length is 2 (meaning the data
length is 0), assume there's no tag.

------------------------------------------------------------------------
r12807 | guy | 2004-12-21 17:26:01 -0600 (Tue, 21 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dnp.c

Fix one comment, and put in another one giving a note about where you
can get the protocol specs.

------------------------------------------------------------------------
r12806 | obiot | 2004-12-21 15:17:44 -0600 (Tue, 21 Dec 2004) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-gsm_sms.c

From Victor Stratan: GSM SMS fixes:

 - Corrected incorrect Timezone output due to byte overflow.

 - Added descriptions for address string decoding.


------------------------------------------------------------------------
r12805 | guy | 2004-12-21 14:36:50 -0600 (Tue, 21 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-mmse.c

Use "format_text()" on strings, to better handle non-printable
characters.

------------------------------------------------------------------------
r12804 | guy | 2004-12-21 14:03:47 -0600 (Tue, 21 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-mmse.c

Put the strings for the X-Mms-Previously-Sent-By header under the MMSE
tree rather than at the top level.

------------------------------------------------------------------------
r12803 | guy | 2004-12-21 13:28:48 -0600 (Tue, 21 Dec 2004) | 18 lines
Changed paths:
   M /trunk/epan/dissectors/packet-rtcp.h
   M /trunk/epan/dissectors/packet-rtp.h
   M /trunk/epan/dissectors/packet-t38.c
   M /trunk/epan/dissectors/packet-t38.h

Make the array for the "setup method" for RTP, RTCP, and T.38
conversations large enough to hold the maximum setup method size plus a
trailing '\0'.  Make the maximum setup method size 7, so that when the
trailing '\0' is included the total array length is a power of 2.  (The
longest string currently used is "Skinny", which fits in 7 characters).

This fixes problems in the RTP and RTCP dissectors similar to the one
found in the T.38 dissector.

Undo the previous change to packet-t38.c, as it's now safe to store in
method[MAX_T38_SETUP_METHOD_SIZE], because the array now has
MAX_T38_SETUP_METHOD_SIZE+1 characters.

(Should we use "strlcpy()", and supply our own "strlcpy()" if the system
and/or C library doesn't supply it?  Its semantics are a bit cleaner
than those of the "strncpy()"/null-terminate idiom, perhaps making it
less likely that mistakes of this sort will be made.)

------------------------------------------------------------------------
r12802 | sahlberg | 2004-12-21 11:05:14 -0600 (Tue, 21 Dec 2004) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ldap.c

from metze

make ethereal handle gss-api encrypted ldap blobs


------------------------------------------------------------------------
r12801 | sahlberg | 2004-12-21 10:44:11 -0600 (Tue, 21 Dec 2004) | 13 lines
Changed paths:
   M /trunk/epan/dissectors/packet-mmse.c

abs_time_to_str() returns a staticly allocated string.  dont g_free() it.

fix two instances of wrong parameter list to proto_tree_add_string_format()

if we call proto_tree_string()  the hf field has to be of a string format as well.



now it dissects christophe's capture without dumping core  but it looks weird.
mmse and telco people can read the specs and find ut what it wrong.



------------------------------------------------------------------------
r12800 | jmayer | 2004-12-21 07:18:08 -0600 (Tue, 21 Dec 2004) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-pgsql.c

Abhijit Menon-Sen:
        - Make port configurable via prefs
        - Highlight keywords in addition to values in hexpane

------------------------------------------------------------------------
r12799 | jmayer | 2004-12-21 06:30:24 -0600 (Tue, 21 Dec 2004) | 3 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/packet-ieee80211.c
   M /trunk/epan/dissectors/packet-ieee80211.h
   M /trunk/gtk/Makefile.common
   A /trunk/gtk/conversations_wlan.c
   A /trunk/gtk/hostlist_wlan.c

Giles Scott: Add Wlan tap


------------------------------------------------------------------------
r12798 | jmayer | 2004-12-21 06:26:43 -0600 (Tue, 21 Dec 2004) | 1 line
Changed paths:
   M /trunk/wiretap/configure.in

Small Whitespacechange
------------------------------------------------------------------------
r12797 | ulfl | 2004-12-21 04:02:42 -0600 (Tue, 21 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom-cba-acco.c

Again, some warnings removed.
------------------------------------------------------------------------
r12796 | gerald | 2004-12-20 21:50:14 -0600 (Mon, 20 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-t38.c

Fix an off-by-one error when terminating a string.

------------------------------------------------------------------------
r12795 | jmayer | 2004-12-20 17:24:13 -0600 (Mon, 20 Dec 2004) | 2 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-pgsql.c
   D /trunk/epan/dissectors/packet-postgresql.c

Abhijit Menon-Sen: Postgres v3 support

------------------------------------------------------------------------
r12794 | guy | 2004-12-20 16:51:05 -0600 (Mon, 20 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dcom.c

Get rid of extra include of <string.h>.

------------------------------------------------------------------------
r12793 | ulfl | 2004-12-20 16:29:24 -0600 (Mon, 20 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom-cba-acco.c
   M /trunk/epan/dissectors/packet-dcom-cba.c
   M /trunk/epan/dissectors/packet-dcom.c

Removed some of the unix related warnings. I'll remove the remaining DCOM related ones in the next days, step by step (by looking at the buildbot output).
------------------------------------------------------------------------
r12792 | guy | 2004-12-20 16:25:13 -0600 (Mon, 20 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dcom.c

Include <string.h> to declare various functions.

------------------------------------------------------------------------
r12791 | guy | 2004-12-20 16:13:48 -0600 (Mon, 20 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-bootp.c
   M /trunk/epan/dissectors/packet-image-gif.c
   M /trunk/epan/dissectors/packet-image-jfif.c
   M /trunk/epan/dissectors/packet-wsp.c

Use "plurality()" rather than locally-defined "PLURALIZE()" macros, and
get rid of the definition of "PLURALIZE()" in modules that don't use it.

------------------------------------------------------------------------
r12790 | gerald | 2004-12-20 10:15:29 -0600 (Mon, 20 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-radius.c

Remove an unneeded "ntohl()" call.

------------------------------------------------------------------------
r12789 | jmayer | 2004-12-20 07:32:08 -0600 (Mon, 20 Dec 2004) | 4 lines
Changed paths:
   M /trunk/manuf
   M /trunk/manuf.tmpl

At least in some cases some Marconi 2810 send packets with
the locally assigned flag set.
Update manuf, while I'm at it.

------------------------------------------------------------------------
r12788 | jmayer | 2004-12-20 04:56:25 -0600 (Mon, 20 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/sigcomp-udvm.h
   M /trunk/epan/sigcomp_state_hdlr.c

Add NL to last line
------------------------------------------------------------------------
r12787 | jmayer | 2004-12-20 04:49:12 -0600 (Mon, 20 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-ieee80211.c

Found by Buildbot Solaris: isprint.h include only works on glib2 systems
------------------------------------------------------------------------
r12786 | guy | 2004-12-20 03:53:27 -0600 (Mon, 20 Dec 2004) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ldap.c

Put in a stub "dissector" for LDAP_FILTER EXTENSIBLE, so we can at least
dissect packets containing that filter type.

Note that if a dissector for a particular operation fails, we should
stop dissecting rather than trying to dissect the controls.

------------------------------------------------------------------------
r12785 | sahlberg | 2004-12-20 02:44:10 -0600 (Mon, 20 Dec 2004) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dcom.c

g_strescape only takes one parameter in glib 1.x

this makes ethereal compile for those of us that are not on the bleeding edge.
(gtk1 is much better anyway)


------------------------------------------------------------------------
r12784 | jmayer | 2004-12-19 18:00:06 -0600 (Sun, 19 Dec 2004) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-eapol.c
   M /trunk/epan/dissectors/packet-ieee80211.c
   M /trunk/epan/dissectors/packet-ieee80211.h

- Diplay SSID in mangemntframes
- Display unprintable characters in SSID as '.' (SSID charaters
  are of type octet, not alphanum).

------------------------------------------------------------------------
r12783 | ulfl | 2004-12-19 11:26:23 -0600 (Sun, 19 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc-pn-io.c
   M /trunk/epan/dissectors/packet-pn-rt.c

removed some gcc warnings (hopefully)
------------------------------------------------------------------------
r12782 | ulfl | 2004-12-19 10:49:34 -0600 (Sun, 19 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom-remunkn.c
   M /trunk/epan/dissectors/packet-dcom.c
   M /trunk/epan/dissectors/packet-dcom.h

add some IRemUnknown dissectors
------------------------------------------------------------------------
r12781 | ulfl | 2004-12-19 10:30:25 -0600 (Sun, 19 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom-oxid.c

tweak some comments
------------------------------------------------------------------------
r12780 | ulfl | 2004-12-19 10:29:08 -0600 (Sun, 19 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom-remact.c

add dissection of RemoteActivation method
------------------------------------------------------------------------
r12779 | ulfl | 2004-12-19 10:13:05 -0600 (Sun, 19 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom-oxid.c
   M /trunk/epan/dissectors/packet-dcom.c

add a lot of dissect stuff to the OXID resolver, moved some details of the DUALSTRINGARRAY to packet-dcom.c
------------------------------------------------------------------------
r12778 | ulfl | 2004-12-19 10:04:09 -0600 (Sun, 19 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/Makefile.common

bugfix: remove empty line, probably caused by eol confusion
------------------------------------------------------------------------
r12777 | ulfl | 2004-12-19 08:08:03 -0600 (Sun, 19 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   D /trunk/epan/dissectors/packet-dcerpc-iremunkn.c
   D /trunk/epan/dissectors/packet-dcerpc-iremunkn2.c
   D /trunk/epan/dissectors/packet-dcerpc-oxid.c
   D /trunk/epan/dissectors/packet-dcerpc-remact.c
   D /trunk/epan/dissectors/packet-dcerpc-sysact.c
   A /trunk/epan/dissectors/packet-dcom-dispatch.c
   A /trunk/epan/dissectors/packet-dcom-oxid.c (from /trunk/epan/dissectors/packet-dcerpc-oxid.c:12776)
   A /trunk/epan/dissectors/packet-dcom-remact.c (from /trunk/epan/dissectors/packet-dcerpc-remact.c:12776)
   A /trunk/epan/dissectors/packet-dcom-remunkn.c (from /trunk/epan/dissectors/packet-dcerpc-iremunkn.c:12776)
   A /trunk/epan/dissectors/packet-dcom-sysact.c (from /trunk/epan/dissectors/packet-dcerpc-sysact.c:12776)

renamed all DCOM related interface dissectors from packet-dcerpc-... to packet_dcom_... and add DCOM IDispatch dissector (incomplete, but better than nothing... ;-)
------------------------------------------------------------------------
r12776 | ulfl | 2004-12-19 07:46:09 -0600 (Sun, 19 Dec 2004) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   M /trunk/epan/dissectors/packet-dcerpc.c
   M /trunk/epan/dissectors/packet-dcerpc.h
   A /trunk/epan/dissectors/packet-dcom-cba-acco.c
   A /trunk/epan/dissectors/packet-dcom-cba.c
   A /trunk/epan/dissectors/packet-dcom.c
   A /trunk/epan/dissectors/packet-dcom.h

(on behalf of the PROFIBUS Nutzerorganisation e.V. Deutschland):
another part of the PROFINET dissectors (PN-CBA, including a lot of generic DCOM dissection) still some work to be done ...
------------------------------------------------------------------------
r12775 | ulfl | 2004-12-19 04:30:33 -0600 (Sun, 19 Dec 2004) | 1 line
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   M /trunk/epan/dissectors/packet-dcerpc-epm.c
   D /trunk/epan/dissectors/packet-dcerpc-epm4.c

Merge dissection of EndpointMapper interfaces of version 3 and 4 into one file, as the dissection of both interface versions are (currently) identical. (Jaime, could you please check, if EPM4 dissection is still working well?)
------------------------------------------------------------------------
r12774 | sahlberg | 2004-12-19 01:18:04 -0600 (Sun, 19 Dec 2004) | 14 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tcp.c

add detection to TCP Analysis to detect and flag segments that will completely fill the window advertized from the other side.

I.e. when a segment is seen that would (as far as ethereal can tell from the ACKs it has seen in the other direction) fill the window completely.

It is similar to but not exactly the same as the XeroWindow detection since there are many instances where ZeroWindow detection would not work (i.e. an ACK where win==0    since many many situations occur where the window is full but no zerowindowack is ever generated)


Someone that has good english could, please, update the Wiki with this option.
It is very very useful to spot performance issues where the tcp window size is too small to accomodate the enmd-to-end latency.





------------------------------------------------------------------------
r12773 | sahlberg | 2004-12-18 22:10:05 -0600 (Sat, 18 Dec 2004) | 11 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ldap.c

abort trying to dissect ldap controls if the header doesnt look right.

it will not solve the problem in the c06-  testmenageri capture that
contains unknown types of ldap commands   but it will at least 
stop the ldap controls dissector from dumping core.

someone interested in ldap might want to look at those "unknown ldap packets"
in the trace.



------------------------------------------------------------------------
r12772 | jmayer | 2004-12-18 22:04:49 -0600 (Sat, 18 Dec 2004) | 3 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/packet-ieee80211.c

Giles Scott: Port weak key detection from Airsnort


------------------------------------------------------------------------
r12771 | sahlberg | 2004-12-18 21:30:46 -0600 (Sat, 18 Dec 2004) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smb.c

mark some fields as GENERATED fields



------------------------------------------------------------------------
r12770 | sahlberg | 2004-12-18 21:19:53 -0600 (Sat, 18 Dec 2004) | 9 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smb.c

the mid values in smb are too unreliable for request/response matching since they wrap so quickly.

This has the effect that if you have a capture file with a hole in it, sa say when snoop or similar stops capturing packets for a while while writing the data to disk   you often end up with a packet just after the hole that is a response packet  and which ethereal mistakenly matches with a request/response from before the hole.


now,  when the first response is seen to a request   remove the entry from the unmatched table so that no other response can match the same request.



------------------------------------------------------------------------
r12769 | sahlberg | 2004-12-18 16:09:06 -0600 (Sat, 18 Dec 2004) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ndmp.c

make ndmp use tcp_dissect_pdus()
so that it will track pdu boundaries properly

not tracking pdu boundaries caused pain since it would miss too many
commands


------------------------------------------------------------------------
r12768 | gerald | 2004-12-17 14:42:35 -0600 (Fri, 17 Dec 2004) | 2 lines
Changed paths:
   M /trunk/make-version.pl

Remove debugging output.

------------------------------------------------------------------------
r12767 | gerald | 2004-12-17 14:41:14 -0600 (Fri, 17 Dec 2004) | 2 lines
Changed paths:
   M /trunk/make-version.pl

Work around a bug in the strftime() code in the Windows version of Perl.

------------------------------------------------------------------------
r12766 | guy | 2004-12-17 13:27:46 -0600 (Fri, 17 Dec 2004) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-lmp.c

When the LMP dissector rejects a packet because it {is, isn't} UDP, let
some other dissector have it.

------------------------------------------------------------------------
r12765 | guy | 2004-12-17 13:14:24 -0600 (Fri, 17 Dec 2004) | 2 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/packet-ldap.c

From Stefan Metzmacher: basic decoding for LDAP Controls.

------------------------------------------------------------------------
r12764 | guy | 2004-12-17 04:09:32 -0600 (Fri, 17 Dec 2004) | 3 lines
Changed paths:
   M /trunk/gtk/main.c

Don't start up a splash screen if "-G" is specified, even if we weren't
configured with libpcap support.

------------------------------------------------------------------------
r12763 | lroland | 2004-12-16 13:36:23 -0600 (Thu, 16 Dec 2004) | 8 lines
Changed paths:
   M /trunk/plugins/mate/Makefile.am
   M /trunk/plugins/mate/Makefile.nmake
   M /trunk/plugins/mate/mate.h
   M /trunk/plugins/mate/mate_runtime.c
   M /trunk/plugins/mate/mate_setup.c
   M /trunk/plugins/mate/matelib/isup.mate
   M /trunk/plugins/mate/packet-mate.c

Patch for Mate Plugin.
From Luis Ontanon:
- moves mate configuration from proto_register to proto_register_handoff
- add the config file protocol preference
- every item (gop,gog,pdu) has it's own ett
- the tap doesn't do nothing, it just primes the tree
- analyze_frame()  what once was the tap now is called by the dissector
- should work with tethereal now (to be tested)
------------------------------------------------------------------------
r12762 | gerald | 2004-12-16 13:06:52 -0600 (Thu, 16 Dec 2004) | 6 lines
Changed paths:
   M /trunk/make-version.pl

From Thomas Boehne: Fix the version.conf status message and improve code
readability.

Fix a bug in my previous checkin, so that svnversion.h will be created
even when the ".svn/" directory isn't present.

------------------------------------------------------------------------
r12761 | guy | 2004-12-15 11:50:11 -0600 (Wed, 15 Dec 2004) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-http.c

From Yaniv Kaul: add the CCM_POST method.

Tweak indentation.

------------------------------------------------------------------------