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 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658
|
2007-08-30 18:17 aj
* releases/openct-0.6.14: create new release openct 0.6.14.
* trunk/NEWS, trunk/configure.ac: create new version openct 0.6.14.
2007-08-27 08:38 aj
* trunk/etc/openct_usb.in: fixed typo ("-u" instead of "-z") and
other improvements by Kay Sievers.
2007-08-23 20:13 aj
* trunk/configure.ac: trunk is now post 0.6.13.
2007-08-23 20:12 aj
* trunk/NEWS: Document many provements we did in 0.6.13.
2007-08-23 07:09 aj
* trunk/etc/openct.fdi, trunk/etc/openct.hald.in: update hal
configuration and addon script.
2007-08-22 08:20 aj
* trunk/etc/openct.udev, trunk/etc/openct.udev.modalias,
trunk/etc/openct_usb.in: commit changes so this code works
without CONFIG_USB_DEVICEFS.
2007-08-22 07:17 aj
* trunk/etc/Makefile.am, trunk/etc/openct.fdi: add fdi file for
hal.
2007-08-21 09:26 aj
* trunk/NEWS: document latest changes.
2007-08-21 09:22 aj
* trunk/etc/openct_usb.in: fix typo.
2007-08-21 09:04 aj
* trunk/etc/openct_usb.in: simply PRODUCT regeneration.
2007-08-21 08:53 aj
* trunk/etc/openct_usb.in: fix missing quotes.
2007-08-21 07:06 aj
* trunk/etc/openct_usb.in: reconstruct PRODUCT from MODALIAS
setting.
2007-08-21 07:01 aj
* trunk/NEWS, trunk/etc/openct.conf.in, trunk/etc/openct.udev,
trunk/etc/openct.udev.modalias, trunk/etc/openct.usermap,
trunk/src/ifd/Makefile.am, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h: disable wbeiuu driver - not working
yet, but kernel alternative works with phoenix driver.
2007-08-21 06:55 aj
* trunk/etc/openct.udev.modalias: fix modalias rules.
2007-07-11 14:45 aj
* trunk/configure.ac: trunk is now after 0.6.12.
2007-07-11 14:44 aj
* trunk/NEWS: needed one more day.
2007-07-10 15:33 aj
* trunk/etc/openct_usb.in: fix udev script.
2007-07-10 14:45 aj
* trunk/etc/openct_usb.in: - add flexible loop to wait for device.
- the loop must run in the background, otherwise udev will not
create the device till the loop timed out.
2007-07-10 13:02 aj
* trunk/NEWS: document latest changes.
2007-07-10 13:01 aj
* trunk/doc/export-wiki.sh: update wiki export script
2007-07-10 08:27 aj
* trunk/etc/Makefile.am, trunk/etc/openct.udev.modalias: add new
udev rules file based on MODALIAS match for usb devices.
2007-07-09 09:31 aj
* trunk/etc/openct.udev: document the sad compatiblity situation.
2007-07-04 06:42 aj
* trunk/NEWS: target saturday for release.
2007-07-03 14:31 aj
* trunk/configure.ac: prepare for next version.
2007-07-02 09:18 aj
* trunk/NEWS: document recent changes to openct.
2007-06-29 12:28 aj
* trunk/src/ifd/process.c: ct_tlv_get_int needs an unsigned int
pointer as argument. closes gentoo bug
https://bugs.gentoo.org/show_bug.cgi?id=162427 and out bug 24.
2007-06-29 11:12 aj
* trunk/configure.ac: test for bash/ksh/sh not needed according to
ticket 27. thanks to kheinz.
2007-06-28 06:07 aj
* trunk/etc/openct.udev: use DRIVERS== not DRIVER== to match the
whole device chain.
2007-06-26 07:08 aj
* trunk/src/ifd/sys-bsd.c: fix drageonflybsd build and include
needed header file, both fixes by kheinz. (closes #28).
2007-06-26 07:07 aj
* trunk/src/ifd/sys-null.c: fix dragonflybsd build by kheinz
(ticket #28).
2007-06-21 10:31 aj
* trunk/src/ifd/ifd-ccid.c: silence a warning.
2007-06-21 09:49 aj
* trunk/src/ifd/ifd-ccid.c, trunk/src/include/openct/driver.h:
source buffer is unchanged, mark const to fit rest of api.
2007-06-21 09:41 aj
* trunk/src/ifd/ifd-ccid.c: Chaskiel M Grundman: add ccid char
support.
* trunk/etc/Info.plist, trunk/etc/openct.conf.in: correct usb id.
Chaskiel M Grundman: Lastly, it appears that the usb id was
specified incorrectly in etc/Info.plist and etc/openct.conf.
b97/7761 is a usb hub. The actual smartcard devices are b97/7762
(according to ccid/readers/Oz776S.txt from pcsc) and b97/7772
(my new machine)
2007-06-21 07:20 aj
* trunk/src/ifd/ifd-smph.c: use sleep/usleep instead of udelay
(kernel only).
2007-06-06 11:00 aj
* trunk/NEWS: document a change.
2007-06-06 10:55 aj
* trunk/src/ifd/ifd-smph.c: add delays suggested by Alexej
Wassiljew.
2007-05-25 21:11 aj
* trunk/src/ifd/atr.c, trunk/src/ifd/conf.c,
trunk/src/ifd/ctbcs.c, trunk/src/ifd/ifd-cardman.c,
trunk/src/ifd/ifd-ccid.c, trunk/src/ifd/ifd-cm4000.c,
trunk/src/ifd/ifd-egate.c, trunk/src/ifd/ifd-etoken.c,
trunk/src/ifd/ifd-etoken64.c, trunk/src/ifd/ifd-eutron.c,
trunk/src/ifd/ifd-gempc.c, trunk/src/ifd/ifd-ikey2k.c,
trunk/src/ifd/ifd-ikey3k.c, trunk/src/ifd/ifd-smartboard.c,
trunk/src/ifd/ifd-starkey.c, trunk/src/ifd/ifd-towitoko.c,
trunk/src/ifd/ifd-wbeiuu.c, trunk/src/ifd/ifdhandler.c,
trunk/src/ifd/ifdproxy.c, trunk/src/ifd/pcmcia-block.c,
trunk/src/ifd/pcmcia.c, trunk/src/ifd/process.c,
trunk/src/ifd/proto-escape.c, trunk/src/ifd/proto-gbp.c,
trunk/src/ifd/proto-t0.c, trunk/src/ifd/proto-t1.c,
trunk/src/ifd/reader.c, trunk/src/ifd/ria-device.c,
trunk/src/ifd/ria-server.c, trunk/src/ifd/ria.c,
trunk/src/ifd/sys-bsd.c, trunk/src/ifd/sys-solaris.c,
trunk/src/ifd/sys-sunray.c, trunk/src/ifd/usb-descriptors.c,
trunk/src/ifd/usb.c, trunk/src/ifd/utils.c: indent changes only.
2007-05-25 21:05 aj
* trunk/src/ct/client.c, trunk/src/ct/socket.c,
trunk/src/ct/status.c, trunk/src/pcsc/pcsc.c,
trunk/src/tools/openct-control.c, trunk/src/tools/openct-tool.c:
indent changes only.
2007-05-25 21:00 aj
* trunk/NEWS: document latest changes.
2007-05-25 20:45 aj
* trunk/etc/init-script.in, trunk/etc/openct.udev,
trunk/etc/openct_usb.in: try if 100ms delay is enough to avoid
race conditions.
* trunk/src/ifd/proto-escape.c: add missing file / contactless
patch by Harald Welte.
2007-05-25 19:53 aj
* trunk/src/ifd/Makefile.am, trunk/src/ifd/ifd-ccid.c,
trunk/src/ifd/init.c, trunk/src/ifd/internal.h,
trunk/src/include/openct/driver.h,
trunk/src/include/openct/ifd.h: add patch by Harald Welte for
contactless reader support.
2007-05-25 19:49 aj
* trunk/etc/Info.plist, trunk/etc/openct.conf.in: add the ID for
SCR3311 to openct.conf and Info.plist by Ville Skytt /
https://bugzilla.redhat.com/238962
2007-05-25 12:18 aj
* trunk/src/ifd/ria-server.c: add static in both places.
2007-05-25 12:15 aj
* trunk/src/ifd/ifd-wbeiuu.c: s/#ifdef 0/#if 0/
2007-05-25 12:13 aj
* trunk/src/ifd/ifdhandler.c: fix typo.
* trunk/src/ifd/ifd-wbeiuu.c: #if 0 dead code
2007-05-25 12:12 aj
* trunk/src/ifd/ifd-ccid.c: fix 0/NULL situation.
2007-05-25 12:04 aj
* trunk/src/ifd/ifd-wbeiuu.c: oops, not dead code.
2007-05-25 12:02 aj
* trunk/src/ifd/ifd-acr30u.c, trunk/src/ifd/ifd-ccid.c,
trunk/src/ifd/ifd-wbeiuu.c, trunk/src/ifd/ifdhandler.c,
trunk/src/ifd/ifdproxy.c, trunk/src/ifd/ria-device.c,
trunk/src/ifd/ria-server.c, trunk/src/tools/openct-control.c,
trunk/src/tools/openct-tool.c: and more static definitions.
2007-05-25 11:52 aj
* trunk/src/ifd/ifd-acr30u.c, trunk/src/ifd/ifd-cardman.c,
trunk/src/ifd/ifd-etoken64.c, trunk/src/ifd/ifd-gempc.c,
trunk/src/ifd/ifd-kaan.c, trunk/src/ifd/ifd-pertosmart1030.c,
trunk/src/ifd/ifd-smartboard.c, trunk/src/ifd/ifd-smph.c,
trunk/src/ifd/ifd-towitoko.c, trunk/src/ifd/ifd-wbeiuu.c,
trunk/src/ifd/proto-gbp.c, trunk/src/ifd/proto-sync.c,
trunk/src/ifd/proto-t0.c, trunk/src/ifd/proto-t1.c,
trunk/src/ifd/reader.c, trunk/src/ifd/ria.c,
trunk/src/ifd/serial.c, trunk/src/ifd/usb-descriptors.c: work on
lots of warnings, mostly things once declared with static and
later without.
2007-05-25 11:36 aj
* trunk/src/ifd/reader.c: include header file with declaration of
this function.
2007-05-25 11:35 aj
* trunk/src/ifd/init.c, trunk/src/ifd/manager.c,
trunk/src/ifd/process.c: make more functions static. pass void
instead of empty parameter list.
2007-05-25 11:33 aj
* trunk/src/ifd/ctbcs.c: make function static, not needed outside
this scope.
2007-05-25 10:51 aj
* trunk/src/ifd/conf.c: fix more warnings / missing static
declarations and replace 0/NULL for pointer.
2007-05-25 10:45 aj
* trunk/src/ct/path.c, trunk/src/ct/socket.c,
trunk/src/ct/status.c: fix more compiler warnings.
2007-05-25 10:42 aj
* trunk/src/ct/client.c: kill dead code and fix missing static
declaration.
2007-05-25 10:33 aj
* trunk/src/ifd/sys-linux.c: first implementation of ccid
detection.
2007-05-25 08:40 aj
* trunk/src/ifd/usb-descriptors.c: try patch to detect cyberjack
readers by Kurt Jaeger (bug #15).
2007-05-25 08:38 aj
* trunk/src/ifd/init.c, trunk/src/ifd/sys-bsd.c,
trunk/src/ifd/sys-linux.c, trunk/src/ifd/sys-solaris.c,
trunk/src/ifd/sys-sunray.c, trunk/src/tools/openct-control.c:
add fall back to ccid driver.
2007-05-25 08:25 aj
* trunk/etc/Info.plist, trunk/etc/openct.usermap: update other
files to latest config.
2007-05-25 08:16 aj
* trunk/etc/openct.conf.in, trunk/etc/openct.udev: add aladdin
etoken NG, new version.
2007-05-25 08:15 aj
* trunk/src/ifd/process.c: that function need a pointer to an
unsigned int, not a size_t which might be bigger on amd64. also
Bug 24 and gentoo bug 162427.
2007-05-25 08:11 aj
* trunk/src/pcsc/Makefile.am, trunk/src/pcsc/ifdhandler.h,
trunk/src/pcsc/pcsc.c: Bug: #25 remove our own version of
ifdhandler.h and use the pcsc provided one. needs to be tested
if this works on all plattforms. Add patch by Ludovic.
2007-03-16 20:50 aj
* trunk/etc/openct.udev: improve openct udev rules - fix match,
work around fast scheduler (e.g. rsdl).
2007-02-22 08:48 aj
* trunk/etc/openct.conf.in: Add omnikey 1021, thanks to Antti
Andreimann.
2006-12-19 21:55 aj
* trunk/src/ifd/ifd-wbeiuu.c: rename to uint*, which seems to be
the normal name in use everywhere else in the code (and does not
cause problems on solaris 10).
2006-12-19 21:49 aj
* trunk/src/ifd/ifd-cm4000.c: disable driver except on linux.
2006-12-19 21:03 aj
* trunk/aclocal/pkg.m4, trunk/src/ifd/ifd-wbeiuu.c: use
ascii/utf-8.
2006-12-07 10:51 aj
* trunk/src/ifd/ifd-wbeiuu.c: don't compile in an unused funciton
(kill warning).
2006-12-07 10:50 aj
* trunk/src/ifd/ifd-ikey2k.c, trunk/src/ifd/ifd-ikey3k.c,
trunk/src/ifd/sys-linux.c: index is a function in glibc
<string.h>. use a different name to avoid confusion / shadowing.
* trunk/src/ifd/ifd-kaan.c: remove duplicate variable definition.
2006-12-07 10:47 aj
* trunk/src/ifd/ifd-ccid.c: defined twice, one is enough.
* trunk/src/ifd/ifd-acr30u.c, trunk/src/ifd/ifd-cardman.c: index
is a funciton in glibc <string.h>. lets use a different name to
avoid confusion / shadowing.
2006-12-07 10:42 aj
* trunk/src/ifd/usb.c: index is a function defined in glibc
<string.h>. lets use a different name to avoid confusion /
shadowing.
2006-12-07 10:41 aj
* trunk/src/ifd/manager.c: index is a function in glibc
<strings.h>. use a different name to avoid confusion / shadowing.
2006-11-23 07:57 aj
* trunk/NEWS: fix typo.
2006-11-23 07:28 aj
* trunk/NEWS: update news (oops, date was wrong).
2006-11-23 07:27 aj
* trunk/src/ifd/pcmcia-block.c, trunk/src/ifd/pcmcia.c: add
set_params to pcmia and pcmcia-block to get cm4000/cm4040 to
work again.
2006-11-22 21:10 aj
* trunk/etc/openct.conf.in: sort usb id's and add 02 micro reader
(used in dell notebooks).
2006-11-22 08:17 aj
* trunk/NEWS, trunk/configure.ac: create new version.
2006-11-14 09:39 aj
* trunk/NEWS: document latest changes.
2006-11-14 09:13 aj
* trunk/src/tools/openct-control.c: typedev isn't const of course.
2006-11-14 09:12 aj
* trunk/src/ifd/usb.c: remove unused variable.
2006-11-14 09:11 aj
* trunk/src/ifd/sys-bsd.c, trunk/src/ifd/sys-null.c,
trunk/src/ifd/sys-osx.c, trunk/src/ifd/sys-solaris.c,
trunk/src/ifd/sys-sunray.c: ad mising usb_reset implementtions.
unfortunatly solaris and bsd don't know how to do that, I'm told.
2006-11-14 09:10 aj
* trunk/src/ifd/sys-linux.c: fix small bug.
2006-11-11 17:02 aj
* trunk/NEWS, trunk/configure.ac: update version and NEWS.
2006-11-05 22:47 aj
* trunk/NEWS, trunk/src/ifd/internal.h, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/usb.c: add usb reset patch by andrey jivsov.
2006-11-05 22:45 aj
* trunk/etc/openct.udev: revert SUBSYSTEMS to BUS as most people
have a udev that doesn't know about the new name.
2006-11-02 07:56 aj
* trunk/src/ifd/ifd-wbeiuu.c: fix from freebsd cvs.
2006-11-02 07:48 aj
* trunk/NEWS: document latest changes.
2006-11-02 07:47 aj
* trunk/src/ifd/ifd-egate.c: improved reset logic for egate -
improvements by Chaskiel, Bugs by Andreas :)
2006-11-02 07:46 aj
* trunk/src/ifd/utils.c: include string.h in utils.c (Dann Frazier)
* trunk/etc/openct.udev: fix BUS="pcmcia" bug. rename BUS to
SUBSYSTEMS (as does udev).
2006-09-24 13:59 aj
* trunk/NEWS: and update NEWS.
* trunk/src/ifd/sys-bsd.c: fix bsd support, thanks to Markus
Schatzl.
2006-09-22 20:53 aj
* trunk/NEWS, trunk/etc/Makefile.am: ouch, stupid bug in the
Makefile. Thanks to Ville for finding and fixing.
2006-09-20 19:18 aj
* trunk/configure.ac: trunk now after 0.6.9 release.
2006-09-20 19:17 aj
* trunk/NEWS: document latest news.
* trunk/etc/openct.hald.in: convert hald file to new style too.
* trunk/etc/openct.conf.in: add comment what this device is.
2006-09-13 07:06 aj
* trunk/src/ifd/device.c, trunk/src/ifd/internal.h,
trunk/src/ifd/serial.c, trunk/src/ifd/sys-bsd.c,
trunk/src/ifd/sys-linux.c, trunk/src/ifd/sys-null.c,
trunk/src/ifd/sys-osx.c, trunk/src/ifd/sys-solaris.c,
trunk/src/ifd/sys-sunray.c: remove device guessing and identify
code (no longer used / needed / was not ever used anyway).
2006-09-12 23:21 aj
* trunk/NEWS, trunk/etc/openct_pcmcia.in,
trunk/etc/openct_serial.in, trunk/etc/openct_usb.in,
trunk/src/ifd/ifdhandler.c, trunk/src/ifd/reader.c,
trunk/src/ifd/sys-bsd.c, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/sys-solaris.c, trunk/src/ifd/sys-sunray.c,
trunk/src/ifd/utils.c, trunk/src/tools/openct-control.c: cleanup
the parameters to ifdhandler and openct-control attach. include
type of the device in these parameters. do not drop the type if
already known. this change requires the updated hotplug files.
2006-09-12 21:45 aj
* trunk/NEWS, trunk/src/ifd/ifd-acr30u.c,
trunk/src/ifd/ifd-cm4000.c, trunk/src/ifd/ifd-egate.c,
trunk/src/ifd/ifd-etoken.c, trunk/src/ifd/ifd-etoken64.c,
trunk/src/ifd/ifd-eutron.c, trunk/src/ifd/ifd-ikey2k.c,
trunk/src/ifd/ifd-ikey3k.c, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/ifd-starkey.c, trunk/src/ifd/ifd-wbeiuu.c,
trunk/src/ifd/usb.c: replace global claim_interface with per
driver set_parameter call.
2006-09-12 21:44 aj
* trunk/etc/Makefile.am: fix typo in makefile.
2006-09-12 16:23 aj
* trunk/etc/hotplug.openct.in, trunk/etc/openct_pcmcia.in,
trunk/etc/openct_serial.in, trunk/etc/openct_usb.in: new scripts
for udev or hotplug.
2006-09-12 16:21 aj
* trunk/NEWS, trunk/etc/Makefile.am, trunk/etc/openct.conf.in,
trunk/etc/openct.udev, trunk/src/ifd/ifd-ccid.c: ifd-ccid fix by
Chaskiel, add more ids for ccid, move towards udev.
2006-08-30 12:08 aj
* trunk/src/ifd/ifd-egate.c: add some delays for the new egate
tokens.
2006-07-28 19:53 nils
* trunk/src/ct/socket.c: properly initialize header_t structure
2006-06-16 17:36 aj
* trunk/configure.ac: trunk is post 0.6.8.
2006-06-16 17:34 aj
* trunk/src/ct/socket.c: not handling EINTR caused many real world
problems. fix it.
2006-06-13 07:10 aj
* trunk/src/ifd/sys-bsd.c: add workaround to get openbsd working.
Thanks to Markus Schatzl for the patch.
2006-05-23 06:52 aj
* trunk/src/ifd/ifd-wbeiuu.c: Updated driver by Juan Carlos
Borras. Still not 100% working, but a lot closer.
2006-05-15 21:40 aj
* trunk/etc/openct.conf.in: fix typo.
2006-05-01 09:59 aj
* trunk/src/ct/path.c: fix OPENCT_SOCKETDIR for solaris
2006-04-26 13:19 aj
* trunk/etc/openct.udev: fix udev rule for CCID smart card readers.
2006-04-25 21:54 aj
* trunk/src/ifd/ifd-pertosmart1038.c: fix a potential segfault.
* trunk/src/ifd/ifdproxy.c: memeory leak in error handling.
2006-04-25 21:53 aj
* trunk/src/ifd/ifd-eutron.c: close memory leak.
2006-04-25 21:52 aj
* trunk/src/ifd/ifdhandler.c: use signed value.
2006-04-25 21:51 aj
* trunk/src/ctapi/ctapi.c: remove unused value.
2006-04-25 21:50 aj
* trunk/src/ct/status.c: use unsigned parameter.
* trunk/src/include/openct/openct.h: parameter needs to be
unsigned (so we can specify -1 for "any").
2006-04-25 08:54 aj
* trunk/configure.ac: this tree is for development past 0.6.7
2006-04-25 08:53 aj
* trunk/configure.ac, trunk/etc/Info.plist: improved bundle
handling.
2006-04-25 08:10 aj
* trunk/src/ifd/ifdhandler.c: ct_format_path needs opt_reader as
argument, and the resulting path needs to be used in
ct_socket_listen.
2006-04-24 20:57 aj
* trunk/src/ct/socket.c, trunk/src/ifd/ifdhandler.c,
trunk/src/ifd/ifdproxy.c, trunk/src/ifd/ria.c,
trunk/src/ifd/sys-linux.c, trunk/src/ifd/sys-solaris.c,
trunk/src/ifd/sys-sunray.c, trunk/src/include/openct/socket.h:
use limits.h where necessary. convert reader(int) to path in
ifdhandler, not ct_socket_listen. use ct_format_path also in
ifdproxy code. fix solaris compile (thanks to William Wanders).
2006-04-24 20:54 aj
* trunk/src/ct/path.c, trunk/src/include/openct/path.h: last
argument of ct_format_path is never changed.
2006-04-24 19:49 aj
* trunk/src/ifd/ria.c: fix invalid use of ct_socket_connect,
reported by ludovic rousseau.
2006-04-24 09:59 ludovic.rousseau
* trunk/src/ifd/ifd-starkey.c: starkey_card_reset(): remove two
unused variables
2006-04-24 09:58 ludovic.rousseau
* trunk/src/ifd/ifd-pertosmart1038.c: ps_card_status(): initialize
stat structure before using is to avoid a "may be used
uninitialized in this function" compiler warning
2006-04-24 09:54 ludovic.rousseau
* trunk/src/ifd/ifd-ccid.c: ccid_open_usb(): initialize ccid
structure to avoid "may be used uninitialized in this function"
compiler warnings
2006-04-24 09:50 ludovic.rousseau
* trunk/src/ct/status.c: ct_status_unlock(): the function is of
type void so we can't return NULL, use return instead
2006-04-24 09:47 ludovic.rousseau
* trunk/src/ct/path.c: add #include <stdlib.h> so that getenv() is
correctly defined (avoid 3 compiler warnings)
2006-04-21 06:33 aj
* trunk/NEWS: updated news file.
2006-04-20 07:31 aj
* trunk/etc/openct.conf.in, trunk/etc/openct.udev,
trunk/etc/openct.usermap, trunk/src/ifd/Makefile.am,
trunk/src/ifd/ifd-wbeiuu.c, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h: Add driver for WB Electronics'
Infinity USB Unlimited card readers by Juan Carlos Borrs
2006-04-19 15:42 aj
* trunk/src/ifd/internal.h, trunk/src/ifd/sys-bsd.c,
trunk/src/ifd/sys-linux.c, trunk/src/ifd/sys-null.c,
trunk/src/ifd/sys-osx.c, trunk/src/ifd/sys-solaris.c,
trunk/src/ifd/sys-sunray.c, trunk/src/ifd/usb.c: new locking
strategy: claim the control interface so only one process will
be able to use any usb device at any give time.
2006-04-18 16:04 aj
* trunk/etc/reader.conf.in: add reader.conf.in file as template
for a pcsc-lite reader.conf file.
2006-04-18 15:12 aj
* trunk/etc/Makefile.am: add example reader.conf file for
pcsc-lite.
* trunk/etc/openct.conf.in: add id for cherry smartboard ccid
readers.
2006-04-18 15:11 aj
* trunk/src/ct/status.c: reverse change: enable error messages
when looking for status file - no error messages confused a lot
of users.
2006-04-18 14:38 aj
* trunk/src/ifd/atr.c, trunk/src/ifd/atr.h,
trunk/src/ifd/ifd-eutron.c, trunk/src/ifd/internal.h,
trunk/src/ifd/proto-t1.c: improvements by Chaskiel Grundman to
add support for more eutron versions.
2006-04-18 11:11 aj
* trunk/etc/openct.udev: ouch, most lines did not end in \".
2006-04-17 18:38 aj
* trunk/src/ct/client.c, trunk/src/ct/path.c,
trunk/src/ct/socket.c: fix segfault (oops). improve error
checking.
2006-04-17 17:13 aj
* trunk/etc/hotplug.openct.in, trunk/etc/init-script.in: add more
comments for better useability.
2006-04-17 17:11 aj
* trunk/src/ifd/ifd-pertosmart1038.c: Carlos Henrique Bauer: adds
debug messages filtering to the PertoSmart/ACR AC-1038 driver
and fixes a bug for ps_get_status() not returning correctly the
flag IFD_CARD_STATUS_CHANGED.
2006-04-17 17:10 aj
* trunk/src/ifd/ifd-pertosmart1030.c: Carlos Henrique Bauer: add
debug messages filtering to the PertoSmart/ACR AC-1030 driver.
2006-04-17 16:17 aj
* trunk/src/ct/Makefile.am, trunk/src/ct/client.c,
trunk/src/ct/path.c, trunk/src/ct/socket.c,
trunk/src/ct/status.c, trunk/src/ifd/ifdhandler.c,
trunk/src/include/openct/Makefile.am,
trunk/src/include/openct/path.h,
trunk/src/include/openct/socket.h: put path handling into one
central place. allow setting OPENCT_SOCKETDIR environment to
choose a different place.
2006-04-12 08:00 aj
* trunk/src/ifd/utils.c: Andrey Jivsov found this bug: "%" is
bogus, the function should return time elapsed in miliseconds...
2006-03-19 22:35 aj
* trunk/src/ifd/atr.c, trunk/src/ifd/atr.h,
trunk/src/ifd/ifd-ccid.c: Chaskiel Grundman: This patch fixes
some broken PTS behavior that resulted from two misconceptions
that I had about PTS: 1) that the PTS response from the card
must be an exact reflection of the request in order to be
considered successful. 7816-3 says that the card may refuse the
PTS1 byte by sending a response that doesn't include PTS1. 2)
that the PTS2 byte was an N (guard time) value. PTS2 is in fact
a coded-value, of which only the low 2 bits are defined. The
patch adds a new function, ifd_verify_pts, that validates a pts
response according to the pts request that would have been sent
for a given atr_info. it clears the TA1 field from the atr_info
if PTS1 was refused by the card.
2006-03-19 21:44 aj
* trunk/etc/openct.udev: fix typo, this needs to be one long line,
not two.
* trunk/etc/hotplug.openct.in, trunk/etc/init-script.in,
trunk/etc/openct.hald.in: init script: mkdir /var/run/openct, as
some distributions use a tmpfs for /var/run and the directory
can vanish over reboots. hald: we s/SBINDIR/.../, not @SBINDIR@
... hotplug: make it work with udev and /dev/bus/usb device
files.
2006-03-16 21:56 aj
* trunk/src/ifd/init.c: proper sorting. (only for readability)
2006-03-16 21:53 aj
* trunk/configure.ac, trunk/src/ifd/sys-linux.c: openct does not
compile on some plattforms with header file issues. fix this -
as suggested by usb kernel good greg KH - by including all
necessary definitions in the source code.
2006-03-16 21:36 aj
* trunk/configure.ac: simply the revision, drop the m4 code. it
didn't turn out the way I wanted it (does not contain the
_repository_/_branch_ revision).
2006-03-14 21:43 aj
* trunk/NEWS, trunk/src/ifd/ifd-kaan.c: improved Siemens B1 driver
by Lorenz Knauer
2006-02-27 22:03 aj
* trunk/src/ifd/ifd-pertosmart1030.c: a) driver not claiming a USB
interface before using it. b) driver not being able to receive
data from the reader. by Carlos Henrique Bauer
2006-02-27 21:57 aj
* trunk/src/ifd/ifd-pertosmart1038.c: This patch fixes a problem
with the pertosmart1038 driver not being able to receive data
from reader. By Carlos Henrique Bauer.
2006-02-27 21:55 aj
* trunk/src/ifd/sys-linux.c: fix ifd_sysdep_device_type() always
failing for USB devices in Linux. Thanks to Carlos Henrique
Bauer and Nicola Franchi.
2006-02-15 08:46 aj
* trunk/src/ifd/ifd-ccid.c: List of problems fixed: * Fixed
interface search algorithm (was buggy for interface > 0) * Fixed
a double free when no suitable device descriptors are found *
Enabled status polling (instead of interrupt) for USB devices
that don't have an interrupt endpoint (such as this keyboard) *
Do not set device configuration if the device has only one
configuration available (fixes kernel warnings and EBUSY on some
HCI-s on Linux). by Antti Andreimann
2006-02-15 08:45 aj
* trunk/etc/openct.conf.in: add new ids reported by Antti
Andreimann
2006-02-09 19:45 aj
* trunk/LGPL-2.1, trunk/Makefile.am: add LGPL-2.1 to distribution
tar file.
2006-02-09 19:37 aj
* trunk/NEWS: clarify license change.
2006-02-09 19:34 aj
* trunk/NEWS: update news for new driver.
2006-02-09 19:33 aj
* trunk/src/ifd/Makefile.am, trunk/src/ifd/ifd-smph.c,
trunk/src/ifd/init.c, trunk/src/ifd/internal.h: Add
Phoenix/SmartMouse drier by Antoine Nguyen
<nguyen.antoine@wanadoo.fr> Based on Alexandre Becoulet SCTK
project (http://freshmeat.net/projects/sctk/).
2006-01-22 21:13 aj
* trunk/etc/Info.plist: fix url to opensc-project for now and
mention OpenCT, not OpenSC.
2006-01-22 21:05 aj
* trunk/doc/README, trunk/doc/export-wiki.sh: moved to
opensc-project till dns for opensc.org is back.
2006-01-14 17:38 aj
* trunk/etc/Makefile.am, trunk/etc/openct.conf.in,
trunk/etc/openct.hald.in, trunk/etc/openct.udev: add a script
for hald and a config file for udev. add starkey token.
2006-01-14 17:36 aj
* trunk/etc/openct.usermap: add starkey driver.
* trunk/src/ifd/Makefile.am, trunk/src/ifd/ifd-starkey.c,
trunk/src/ifd/init.c: add starkey driver. doesn't work yet (but
you can get an atr!).
2006-01-14 17:35 aj
* trunk/src/ifd/sys-linux.c: try /dev/bus/usb/* first, fallback to
/proc/bus/usb as usual.
* trunk/src/ifd/sys-bsd.c: at least on some bsd the file is called
/dev/ugen0.00 for control transfers. strange, control transfer
is no endpoint AFAIK.
2005-12-26 22:57 aj
* trunk/configure.ac: add "-svn-rXXXX" with svn revision as
version number. thanks to werner koch.
2005-12-15 14:19 aj
* trunk/etc/openct.usermap: add line for spr 532 readers - they
have at least with some firmware the wrong interface class and
were thus not properly detected.
2005-12-02 21:19 aj
* trunk/src/ifd/usb-descriptors.c: add some paranoia: after free
change values to NULL.
2005-12-02 21:18 aj
* trunk/src/ifd/ifd-pertosmart1038.c: more cleanups and better
error handling.
2005-12-02 21:17 aj
* trunk/src/ifd/ifd-pertosmart1030.c: fix signedness issue,
improve error handling.
2005-12-02 21:15 aj
* trunk/src/ifd/ifd-ccid.c: remove double free.
2005-12-01 21:34 aj
* trunk/src/ifd/ifd-pertosmart1038.c: remove "const" of course.
2005-12-01 21:19 aj
* trunk/src/ifd/ifd-pertosmart1038.c: declarations first, then
code.
2005-12-01 21:17 aj
* trunk/src/ifd/ifd-pertosmart1030.c,
trunk/src/ifd/ifd-pertosmart1038.c: fix small bugs introduced in
the cleanup.
2005-12-01 21:00 aj
* trunk/src/ifd/ifd-pertosmart1038.c: start cleaning up this code,
too.
2005-12-01 20:44 aj
* trunk/src/ifd/ifd-pertosmart1030.c: more cleanups to make it
more readable.
2005-12-01 20:33 aj
* trunk/src/ifd/ifd-pertosmart1030.c: swap if argument, reduce
empty lines, remove unneeded brace to make code easier to read
and understand.
2005-12-01 20:10 aj
* trunk/src/ifd/ifd-ikey2k.c: keep some dead code in case we
change that define.
2005-12-01 20:09 aj
* trunk/src/ifd/init.c: proper cleanup in case of an error.
* trunk/src/ifd/ctbcs.c: we checked it is not null. remove dead
code.
2005-12-01 20:08 aj
* trunk/src/ct/socket.c: check if prev is null. don't check it
later, after it was already dereferenced.
2005-12-01 20:05 aj
* trunk/src/ctapi/ctapi.c: remove some dead code, and handle
size!=0 with an error.
2005-12-01 19:59 aj
* trunk/src/ifd/ifd-pertosmart1030.c,
trunk/src/ifd/ifd-pertosmart1038.c: Lident pertosmart drivers.
* trunk/src/ifd/ifd-acr30u.c: Lident acr30u.
* trunk/src/ifd/ifd-ccid.c: Lindent ifd-ccid.
2005-12-01 19:58 aj
* trunk/src/ifd/ifd-cm4000.c, trunk/src/ifd/ifd-etoken.c,
trunk/src/ifd/ifd-etoken64.c, trunk/src/ifd/ifd-eutron.c,
trunk/src/ifd/ifd-ikey2k.c, trunk/src/ifd/ifd-ikey3k.c,
trunk/src/ifd/ifd-towitoko.c, trunk/src/ifd/ifdproxy.c: small
Lindent changes.
2005-12-01 19:56 aj
* trunk/src/ifd/conf.c, trunk/src/ifd/driver.c,
trunk/src/ifd/ifdhandler.c, trunk/src/ifd/init.c,
trunk/src/ifd/pcmcia-block.c, trunk/src/ifd/proto-gbp.c,
trunk/src/ifd/proto-sync.c, trunk/src/ifd/proto-t1.c,
trunk/src/ifd/sys-null.c, trunk/src/ifd/sys-osx.c,
trunk/src/ifd/sys-solaris.c, trunk/src/ifd/usb-descriptors.c:
Lindent these files.
2005-12-01 19:51 aj
* trunk/src/pcsc/pcsc.c: Lindent'ed.
2005-11-01 22:56 aj
* trunk/src/ifd/sys-bsd.c, trunk/src/ifd/sys-null.c:
debian/freebsd has FreeBSD_kernel defined.
2005-10-13 18:49 aj
* trunk/src/ifd/ifd-pertosmart1038.c: add pertosmart 1038 driver.
2005-10-13 07:04 aj
* trunk/etc/openct.conf.in, trunk/etc/openct.usermap,
trunk/src/ifd/Makefile.am, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h: new driver by Carlos Henrique Bauer
<carlos.bauer@smartcon.com.br> for ACS AC-1038 chipset
(PertoSmart EMV and ACS ACR38U).
2005-09-23 15:44 aj
* trunk/aclocal/Makefile.am: list all current macro packages.
* trunk/src/ctapi/ctapi.h, trunk/src/ifd/cardman.h,
trunk/src/ifd/ifd-ccid.c, trunk/src/ifd/ifd-cm4000.c,
trunk/src/ifd/ifd-kaan.c, trunk/src/ifd/ifd-pertosmart1030.c,
trunk/src/ifd/ifd-towitoko.c, trunk/src/ifd/ria.h,
trunk/src/tools/openct-tool.c: silence warnings about extra ","
and "//" style comments.
2005-09-20 20:46 aj
* trunk/src/ifd/ifd-ccid.c: - accept the "proprietary" interface
class id and class descriptors tagged as proprietary for the
following devices (list derived from
<http://svn.debian.org/wsvn/pcsclite/trunk/Drivers/ccid/readers>)
{ 0x04e6, 0xe003 }, /* SCM SPR 532 */ { 0x046a, 0x003e }, /*
Cherry SmartTerminal ST-2XXX */ { 0x413c, 0x2100 }, /* Dell USB
Smartcard Keyboard */ { 0x04e6, 0x5120 }, /* SCM SCR331-DI (NTT)
*/ { 0x04e6, 0x5111 }, /* SCM SCR331-DI */ { 0x08e6, 0x1359 },
/* Verisign secure storage token */ { 0x08e6, 0xACE0 }, /*
Verisign secure token */ - remove the need for struct
usb_ccid_descriptor to be packed - check the slot/sequence of a
ccid bulk-in message before the error code. (this is not
sufficient to support multi-slot readers correctly, but it's a
step in the right direction)
2005-09-20 07:30 aj
* trunk/aclocal/libtool.m4: including libtool.m4 was a bad idea
and causes trouble.
2005-09-20 07:19 aj
* trunk/src/include/openct/apdu.h,
trunk/src/include/openct/device.h,
trunk/src/include/openct/ifd.h,
trunk/src/include/openct/openct.h: remove trailing commas.
2005-09-17 09:54 aj
* trunk/src/ifd/process.c: timeout parameter is optional.
2005-09-16 17:17 aj
* trunk/src/ifd/ifdhandler.c: Following patch should allow
clean(er) shutdown of ifdhandler process. By Priit Randla
2005-09-16 14:15 aj
* trunk/doc/changelog.sh, trunk/doc/export-wiki.sh: xsltproc
without network connections.
2005-09-14 09:49 ludovic.rousseau
* trunk/doc/export-wiki.sh: use -nv instead of --non-verbose since
wget 1.10 now uses --no-verbose instead. Grr!
2005-09-13 10:14 aj
* trunk/src/ct/client.c, trunk/src/ifd/process.c,
trunk/src/include/openct/tlv.h: fix error handling, thanks to
Priit for reporting the issue.
2005-09-13 10:13 aj
* trunk/doc/Makefile.am: remove ChangeLog on "make
maintainer-clean".
2005-09-11 19:16 aj
* trunk/doc/changelog.sh: oops, too much copy&paste.
2005-09-11 18:09 aj
* trunk/src/pcsc/Makefile.am: install bundle file only when
activated.
* trunk/src/ifd/Makefile.am: configure changes caused variable
names to change.
2005-09-11 18:08 aj
* trunk/NEWS, trunk/configure.ac: use pkg-config for finding
pcsc-lite and libusb. same pcsc code as opensc.
* trunk/doc/Makefile.am, trunk/doc/changelog.sh,
trunk/doc/svn2cl.xsl: add svn2cl based changelog.
2005-09-11 17:34 aj
* trunk/ANNOUNCE, trunk/Makefile.am: remove ANNOUNCE file - we
don't use it anyway or always forget about it.
2005-09-11 09:59 aj
* trunk/NEWS: updates done in 0.6.6 release.
2005-09-09 12:10 aj
* trunk/src/ifd/sys-osx.c: null implementation, to be filled with
mac os X specific code.
2005-09-09 12:01 aj
* trunk/src/pcsc/ifdhandler.h: LPSTR is deprecated, use LPTSTR.
* trunk/src/ifd/ifd-pertosmart1030.c: kill two signed warnings.
(ugly?)
2005-09-09 12:00 aj
* trunk/src/ifd/Makefile.am, trunk/src/ifd/sys-null.c: add missing
function to null sys module. create a mac os X sys module
(currently also null code).
2005-09-08 17:21 aj
* trunk/src/ifd/Makefile.am: we use libtool for linking, so it can
calucalte the dependencies using LTLIBLTDL better. Thanks to
Ralf Wildenhues.
2005-09-08 17:06 aj
* trunk/configure.ac: fix AC_MSG_ERROR usage. thanks to Ralf
Wildenhues.
2005-09-08 17:01 aj
* trunk/src/ifd/Makefile.am, trunk/src/pcsc/Makefile.am:
AC_SUBSTed variables are better used with $(..). Thanks to Ralf
Wildenhues.
2005-09-08 16:52 aj
* trunk/Makefile.am, trunk/bootstrap: aclocal -I aclocal/ (as
suggested by Ralf Wildenhues)
2005-09-05 19:12 aj
* trunk/configure.ac: fail if ltdl.h is not available.
2005-09-05 19:11 aj
* trunk/aclocal/lib-ld.m4, trunk/aclocal/lib-link.m4,
trunk/aclocal/lib-prefix.m4, trunk/aclocal/libtool.m4,
trunk/aclocal/pkg.m4: add / update all m4 macro packages we use.
2005-09-05 18:53 aj
* trunk/configure.ac: improved ltdl check.
2005-09-05 18:51 aj
* trunk/ANNOUNCE, trunk/NEWS, trunk/TODO: small documentation
update.
* trunk/src/ifd/ifd-cm4000.c, trunk/src/ifd/pcmcia-block.c:
variables not used.
2005-09-05 18:50 aj
* trunk/src/ifd/init.c: return 1 (error).
2005-09-05 18:49 aj
* trunk/src/ifd/ifd-acr30u.c: variable not used.
* trunk/src/ifd/ifd-pertosmart1030.c: too much debug info.
2005-09-05 18:37 aj
* trunk/etc/openct.conf.in, trunk/etc/openct.usermap:
carlos.bauer: Add new USB ID (072f:8009) to pertosmart1030
driver.
2005-09-05 06:45 ludovic.rousseau
* trunk/doc/export-wiki.sh: make export-wiki.sh executable
2005-09-04 11:31 aj
* trunk/etc/openct.conf.in: add cm4040 reader.
2005-09-04 11:30 aj
* trunk/src/ifd/ifd-ccid.c: The changes to ifd-ccid.c are: 1) make
usb config descriptor parsing conditional to USB 2) add
initialization for PCMCIA variant 3) Only ask for 10 bytes when
issuing CCID_CMD_GETSLOTSTAT (which is fixed size of 10 bytes
according to ccid spec 1.00a anyway) adds support for omnikey
4040 devices.
2005-09-04 11:28 aj
* trunk/src/ifd/Makefile.am, trunk/src/ifd/internal.h: add pcmcia
block device type.
2005-09-04 11:27 aj
* trunk/src/ifd/device.c, trunk/src/ifd/pcmcia-block.c: add pcmcia
block device type.
* trunk/src/include/openct/device.h: add pcmcia block type.
2005-09-03 22:39 aj
* trunk/src/ifd/ifd-cm4000.c: Patch by Harald Welte: - cleans up
some unused code from ifd-cm4000.c - adds card_status detection
- fixes CM_IOCGATR ioctl on 64bit platforms (don't use numeric
value)
2005-09-03 10:02 aj
* trunk/src/tools/openct-tool.c: adds a new "-s" option to specify
the slot number. By Harald Welte
2005-09-02 16:43 aj
* trunk/Makefile.am, trunk/doc/Makefile.am: that didn't work
either. new idea.
2005-09-02 09:51 aj
* trunk/Makefile.am: "doc" does not work well, it is the
subdirectory name.
2005-09-02 09:29 aj
* trunk/Makefile.am: dist-hook: is too late, need to generate the
documentation before automake "make dist" copied files around.
2005-09-01 20:15 aj
* trunk/configure.ac, trunk/src/ifd/Makefile.am: use the macro
(from gettext package) to link via libltdl.la. That should take
care of dependencies, but maybe it does not?
* trunk/doc/README: add a word on regenerating those files.
2005-09-01 15:17 aj
* trunk/doc/Makefile.am, trunk/doc/trac.css: proper cleanup on
documentation.
2005-09-01 14:59 aj
* trunk/doc/api: remove api/ subdir, to get generate-api.sh script
work better.
2005-09-01 13:58 aj
* trunk/Makefile.am, trunk/api, trunk/bootstrap,
trunk/configure.ac, trunk/doc/AuthorsAndCredits.html,
trunk/doc/ContactInfo.html, trunk/doc/DriverApi.html,
trunk/doc/FilesTools.html, trunk/doc/LicenseText.html,
trunk/doc/MailingLists.html, trunk/doc/Makefile.am,
trunk/doc/OperatingSystems.html, trunk/doc/OverView.html,
trunk/doc/QuickStart.html, trunk/doc/RemoteAccess.html,
trunk/doc/ResourcesLinks.html, trunk/doc/SecureSetup.html,
trunk/doc/TroubleShooting.html, trunk/doc/api,
trunk/doc/cardman.html, trunk/doc/ccid.html,
trunk/doc/doxygen.conf.in, trunk/doc/egate.html,
trunk/doc/etoken.html, trunk/doc/eutron.html,
trunk/doc/export-wiki.sh, trunk/doc/gempc.html,
trunk/doc/generate-api.sh, trunk/doc/ikey2032.html,
trunk/doc/ikey3000.html, trunk/doc/index.html,
trunk/doc/kaan.html, trunk/doc/pertosmart1030.html,
trunk/doc/smartboard.html, trunk/doc/towitoko.html,
trunk/src/ifd/Makefile.am: * big documentation update. remove
generated documentation from svn. * create documentation on
"make dist" * do not include libltdl, instead us and require an
installed one.
2005-08-28 21:38 aj
* trunk/api, trunk/api/Makefile.am, trunk/api/README,
trunk/api/doxygen.conf, trunk/api/html,
trunk/api/html/annotated.html,
trunk/api/html/apdu_8h-source.html,
trunk/api/html/buffer_8h-source.html,
trunk/api/html/conf_8h-source.html,
trunk/api/html/device_8h-source.html,
trunk/api/html/dir_000000.html, trunk/api/html/dir_000001.html,
trunk/api/html/dir_000002.html, trunk/api/html/dirs.html,
trunk/api/html/doxygen.css, trunk/api/html/doxygen.png,
trunk/api/html/driver_8h-source.html,
trunk/api/html/driver_8h.html,
trunk/api/html/error_8h-source.html, trunk/api/html/files.html,
trunk/api/html/functions.html,
trunk/api/html/functions_vars.html,
trunk/api/html/ifd_8h-source.html, trunk/api/html/index.html,
trunk/api/html/logging_8h-source.html,
trunk/api/html/openct_8h-source.html,
trunk/api/html/protocol_8h-source.html,
trunk/api/html/server_8h-source.html,
trunk/api/html/socket_8h-source.html,
trunk/api/html/structifd__driver__ops.html,
trunk/api/html/tlv_8h-source.html: add api documentation.
2005-08-28 21:08 aj
* trunk/Makefile.am, trunk/configure.ac, trunk/src/ifd/driver.c,
trunk/src/include/openct/driver.h: add initial doxygen
documentation by Laurent Pinchart
2005-08-23 23:05 aj
* trunk/src/ifd/ifdhandler.c: oops, fix typo.
2005-08-23 23:01 aj
* trunk/NEWS: comment changes in openct since 0.6.5 so far.
2005-08-23 22:54 aj
* trunk/doc/DriverApi.html, trunk/doc/Makefile.am,
trunk/doc/index.html: documentation update.
2005-08-23 18:44 aj
* trunk/Makefile.am, trunk/bootstrap, trunk/configure.ac,
trunk/src/Makefile.am, trunk/src/ifd/Makefile.am,
trunk/src/ifd/init.c, trunk/src/ifd/modules.c, trunk/src/scdl:
use libltdl instead of scdl.
2005-08-23 18:41 aj
* trunk/src/ifd/Makefile.am: do not install libifd - only meant to
use some code in two appliactions.
2005-08-17 19:10 aj
* trunk/doc/MailingLists.html, trunk/doc/Makefile.am,
trunk/doc/OperatingSystems.html, trunk/doc/OverView.html,
trunk/doc/RecentResults.html, trunk/doc/ResourcesLinks.html,
trunk/doc/SupportedReaders.html, trunk/doc/cardman.html,
trunk/doc/index.html, trunk/doc/pertosmart1030.html:
documentation update.
2005-07-20 08:37 aj
* trunk/src/ifd/Makefile.am: also compile in acr30u driver.
2005-07-19 20:38 aj
* trunk/doc/AuthorsAndCredits.html, trunk/doc/etoken.html: small
updates from current wiki.
2005-07-19 18:41 aj
* trunk/src/ifd/ifd-acr30u.c, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h: add acr30u driver by Laurent Pinchart.
2005-07-19 18:39 aj
* trunk/src/ifd/device.c, trunk/src/ifd/reader.c: fix situation in
case device name is NULL. patch by Laurent Pinchart.
2005-07-18 22:56 aj
* trunk/doc/AuthorsAndCredits.html, trunk/doc/ContactInfo.html,
trunk/doc/FilesTools.html, trunk/doc/LicenseText.html,
trunk/doc/OperatingSystems.html, trunk/doc/QuickStart.html,
trunk/doc/RecentResults.html, trunk/doc/RemoteAccess.html,
trunk/doc/SecureSetup.html, trunk/doc/SupportedReaders.html,
trunk/doc/TroubleShooting.html, trunk/doc/cardman.html,
trunk/doc/ccid.html, trunk/doc/egate.html,
trunk/doc/etoken.html, trunk/doc/eutron.html,
trunk/doc/export-wiki.sh, trunk/doc/gempc.html,
trunk/doc/ikey2032.html, trunk/doc/ikey3000.html,
trunk/doc/index.html, trunk/doc/kaan.html,
trunk/doc/pertosmart1030.html, trunk/doc/smartboard.html,
trunk/doc/towitoko.html: replace with current wiki files.
2005-07-18 22:51 aj
* trunk/etc/openct.conf.in, trunk/etc/openct.usermap: add new
drivers.
2005-07-18 22:50 aj
* trunk/src/ifd/Makefile.am, trunk/src/ifd/ifd-etoken64.c,
trunk/src/ifd/init.c, trunk/src/ifd/internal.h: add etoken64
driver.
2005-07-18 22:47 aj
* trunk/src/ifd/Makefile.am, trunk/src/ifd/ifd-pertosmart1030.c,
trunk/src/ifd/init.c, trunk/src/ifd/internal.h: add pertosmart
ac1030 driver.
2005-07-12 14:58 martin
* trunk/doc/export-wiki.sh: Use xsltproc instead of xalan.
2005-06-16 19:38 aj
* trunk/etc/openct.conf.in, trunk/solaris/openct.conf-dist,
trunk/src/pcsc/pcsc.c: "smart card" not "SmartCard" or
"smartcard".
2005-06-15 20:45 aj
* trunk/etc/hotplug.openct.in: race found in kernel usb/hotplug
interaction. sleep 1 helps a lot.
2005-06-03 20:28 aj
* trunk/src/ifd/atr.c, trunk/src/ifd/atr.h: accept more
parameters, e.g. estonian id card.
2005-05-29 19:39 aj
* trunk/src/ctapi/ctapi.c, trunk/src/ifd/conf.c,
trunk/src/ifd/driver.c, trunk/src/ifd/ifd-cm4000.c,
trunk/src/ifd/ifd-etoken.c, trunk/src/ifd/ifd-eutron.c,
trunk/src/ifd/ifd-gempc.c, trunk/src/ifd/ifd-ikey2k.c,
trunk/src/ifd/ifd-ikey3k.c, trunk/src/ifd/ifd-towitoko.c,
trunk/src/ifd/internal.h, trunk/src/ifd/pcmcia.c,
trunk/src/ifd/proto-gbp.c, trunk/src/ifd/proto-sync.c,
trunk/src/ifd/sys-bsd.c, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/sys-solaris.c, trunk/src/ifd/sys-sunray.c,
trunk/src/include/openct/driver.h: many small compile fixes plus
code/indent improvements, silenting warnings etc.
2005-05-29 17:48 aj
* trunk/src/ifd/ria.c: timeout is always at least
RIA_DEFAULT_TIMEOUT, so it cannot be = 0 or < 0 ...
2005-05-29 17:43 aj
* trunk/src/ctapi/ctapi.c: if (size) or if (size != NULL), but for
sake of readability: please don't use if (size != (size_t *) 0)
...
2005-05-29 17:35 aj
* trunk/src/tools/openct-control.c: handle out of memory.
2005-05-29 17:34 aj
* trunk/src/ctapi/ctapi.c: don't access structures after freeing
them.
2005-05-29 17:29 aj
* trunk/src/ifd/atr.c: info structure has int TA[3], i.e. 0..2 is
valid as index, 3 is not.
2005-05-29 16:30 aj
* trunk/src/ifd/conf.c, trunk/src/ifd/device.c,
trunk/src/ifd/driver.c, trunk/src/ifd/ifd-cardman.c,
trunk/src/ifd/ifd-ccid.c, trunk/src/ifd/ifd-cm4000.c,
trunk/src/ifd/ifd-gempc.c, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/locks.c, trunk/src/ifd/protocol.c,
trunk/src/ifd/ria-server.c, trunk/src/ifd/ria.c,
trunk/src/ifd/sys-bsd.c, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/sys-solaris.c, trunk/src/ifd/sys-sunray.c,
trunk/src/ifd/usb-descriptors.c: add/fix/unify out of memory
handling.
2005-05-29 13:49 aj
* trunk/src/ifd/reader.c: one more calloc check, one more check
for NULL.
2005-05-29 13:45 aj
* trunk/src/ifd/ifd-eutron.c: error on a too long atr, accept more
than 4 bytes as atr complete.
2005-05-29 13:38 aj
* trunk/src/ifd/ifd-towitoko.c: buffer needs to be TWT_PAGESIZE +2
(header, body, footer).
2005-05-29 13:35 aj
* trunk/src/ifd/ifdhandler.c, trunk/src/ifd/ifdproxy.c,
trunk/src/ifd/init.c: fix a few unhandled out of memory
situations.
2005-05-29 13:29 aj
* trunk/src/ifd/ifdhandler.c: make device argument mandatory.
2005-05-29 13:15 aj
* trunk/src/ifd/ifd-cm4000.c: len was not initialized, guess this
fixes it.
2005-05-29 13:09 aj
* trunk/src/tools/openct-control.c, trunk/src/tools/openct-tool.c:
Lindent for consistent style
2005-05-29 13:08 aj
* trunk/src/scdl/scdl.c: Lindent for consistent style
2005-05-29 13:06 aj
* trunk/src/pcsc/pcsc.c: Lindent for consistent style
2005-05-29 13:05 aj
* trunk/src/ifd/ifd-cm4000.c, trunk/src/ifd/ifd-egate.c,
trunk/src/ifd/ifd-etoken.c, trunk/src/ifd/ifd-eutron.c,
trunk/src/ifd/ifd-gempc.c, trunk/src/ifd/ifd-ikey2k.c,
trunk/src/ifd/ifd-ikey3k.c, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/ifd-smartboard.c, trunk/src/ifd/ifd-towitoko.c:
Lindent for consistent style
2005-05-29 13:02 aj
* trunk/src/ifd/serial.c: Lindent for consistent style
2005-05-29 13:00 aj
* trunk/src/ifd/ifdhandler.c, trunk/src/ifd/ifdhandler.h,
trunk/src/ifd/ifdproxy.c, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h: Lindent for consistent style
2005-05-29 12:54 aj
* trunk/src/ifd/locks.c, trunk/src/ifd/manager.c,
trunk/src/ifd/modules.c: Lindent for consistent style
2005-05-29 12:53 aj
* trunk/src/ifd/pcmcia.c, trunk/src/ifd/process.c,
trunk/src/ifd/proto-gbp.c, trunk/src/ifd/proto-sync.c,
trunk/src/ifd/proto-t0.c, trunk/src/ifd/proto-t1.c,
trunk/src/ifd/proto-trans.c, trunk/src/ifd/protocol.c: Lindent
for consistent style
2005-05-29 12:50 aj
* trunk/src/ifd/reader.c, trunk/src/ifd/ria-device.c,
trunk/src/ifd/ria-server.c, trunk/src/ifd/ria.c,
trunk/src/ifd/ria.h: Lindent for consistent style
2005-05-29 12:48 aj
* trunk/src/ifd/sys-bsd.c, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/sys-null.c, trunk/src/ifd/sys-solaris.c,
trunk/src/ifd/sys-sunray.c: Lindent for common style, and reduce
nesting in some functions to keep the code indent'able and make
it easier to read.
2005-05-29 12:26 aj
* trunk/src/ifd/usb-descriptors.c,
trunk/src/ifd/usb-descriptors.h, trunk/src/ifd/usb.c: Lindent
for consistent style
2005-05-29 12:21 aj
* trunk/src/ifd/utils.c: Lindent for consistent style
2005-05-29 12:20 aj
* trunk/src/ifd/ifd-cardman.c: Lindent for consistent style
2005-05-29 11:37 aj
* trunk/src/ifd/device.c, trunk/src/ifd/driver.c: Lindent for
consistent style
2005-05-29 11:36 aj
* trunk/src/ifd/apdu.c, trunk/src/ifd/atr.c, trunk/src/ifd/atr.h,
trunk/src/ifd/cardman.h, trunk/src/ifd/checksum.c,
trunk/src/ifd/conf.c, trunk/src/ifd/ctbcs.c,
trunk/src/ifd/ctbcs.h: Lindent for consistent style
2005-05-29 11:08 aj
* trunk/src/ctapi/ctapi.c, trunk/src/ctapi/ctapi.h: Lindent for
consistent style.
2005-05-29 11:05 aj
* trunk/src/ct/buffer.c, trunk/src/ct/client.c,
trunk/src/ct/error.c, trunk/src/ct/mainloop.c,
trunk/src/ct/socket.c, trunk/src/ct/status.c,
trunk/src/ct/tlv.c: Lindent for consistent style.
2005-05-16 20:40 aj
* trunk/configure.ac: change back to WIP for snapshot script.
2005-05-16 20:22 aj
* trunk/NEWS, trunk/configure.ac: release openct 0.6.5 without
changes.
2005-05-16 20:21 aj
* trunk/doc/ccid.html: minimal documentation update.
2005-05-10 20:24 aj
* trunk/configure.ac: change version string back to WIP for the
nightly snapshots script.
2005-05-10 20:16 aj
* trunk/Makefile.am: reflect changes in solaris/.
2005-05-10 20:10 aj
* trunk/src/ifd/sys-linux.c: open is defined in fcntl.h
2005-05-10 20:04 aj
* trunk/AUTHORS, trunk/ChangeLog, trunk/LICENSE,
trunk/Makefile.am, trunk/NEWS, trunk/QUICKSTART, trunk/README,
trunk/configure.ac: remove text documentation where it
duplicates html documentation. create new release.
2005-05-10 20:01 aj
* trunk/doc/AuthorsAndCredits.html, trunk/doc/FilesTools.html,
trunk/doc/LicenseText.html, trunk/doc/Makefile.am,
trunk/doc/OperatingSystems.html, trunk/doc/QuickStart.html,
trunk/doc/README, trunk/doc/RecentResults.html,
trunk/doc/RemoteAccess.html, trunk/doc/SecureSetup.html,
trunk/doc/SupportedReaders.html, trunk/doc/TroubleShooting.html,
trunk/doc/cardman.html, trunk/doc/ccid.html,
trunk/doc/egate.html, trunk/doc/etoken.html,
trunk/doc/eutron.html, trunk/doc/export-wiki.sh,
trunk/doc/export-wiki.xsl, trunk/doc/gempc.html,
trunk/doc/ikey2032.html, trunk/doc/ikey3000.html,
trunk/doc/index.html, trunk/doc/kaan.html, trunk/doc/openct.css,
trunk/doc/smartboard.html, trunk/doc/towitoko.html,
trunk/doc/trac.css: add new documentation based on a wiki
snapshot.
2005-05-10 19:53 aj
* trunk/doc/Makefile.am, trunk/doc/README,
trunk/doc/export-wiki.sh, trunk/doc/export-wiki.xsl: add new
documentation based on wiki export.
2005-05-10 19:51 aj
* trunk/doc/openct.html, trunk/doc/openct.xml,
trunk/doc/openct.xsl: remove old xml/html documentation.
2005-05-10 19:45 aj
* trunk/src/ifd/usb.c: first claim interface, then configure it.
2005-05-05 22:37 aj
* trunk/solaris/Makefile, trunk/solaris/Makefile.client,
trunk/solaris/Makefile.server, trunk/solaris/README,
trunk/solaris/openct.conf-dist: William Wanders: client/server
support for solaris sunray machines.
2005-05-05 22:35 aj
* trunk/src/ifd/sys-sunray.c: William Wanders: Add support for
sunray machines.
2005-05-05 22:33 aj
* trunk/solaris/Makefile: William Wanders: updated support files
to build and create packages for Solaris 9/10
* trunk/src/ifd/Makefile.am, trunk/src/ifd/ifdhandler.c,
trunk/src/ifd/internal.h, trunk/src/ifd/sys-bsd.c,
trunk/src/ifd/sys-linux.c, trunk/src/ifd/sys-solaris.c,
trunk/src/ifd/usb-descriptors.c, trunk/src/ifd/usb.c: William
Wander: moved usb_open to the system dependant files
2005-05-05 22:31 aj
* trunk/src/ct/client.c, trunk/src/ct/status.c: William Wanders:
use different paths for sunray support.
2005-05-05 22:30 aj
* trunk/configure.ac: William Wanders: add configure options for
sunray.
2005-05-05 09:10 aj
* trunk/aclocal/pkg.m4: avoids a warning from aclocal >= 1.8 when
bootstrapping. (Ville Skytta)
* trunk/configure.ac, trunk/src/tools/Makefile.am,
trunk/src/tools/openct-tool.1.in: -man.patch contains a very
rudimentary manual page for openct-tool. I intend to expand it
somewhat in the future, and create manual pages for other tools
in OpenCT as well. (Ville Skytta)
2005-05-05 09:08 aj
* trunk/src/ifd/ifdhandler.c, trunk/src/ifd/ifdproxy.c:
-usage.patch prints the usage to stdout if there's no error.
This was mainly inspired so that one can use help2man on the
OpenCT tools, but I think it's ok to have anyway. (Ville Skytta)
* trunk/src/tools/openct-control.c, trunk/src/tools/openct-tool.c:
usage.patch prints the usage to stdout if there's no error. This
was mainly inspired so that one can use help2man on the OpenCT
tools, but I think it's ok to have anyway. Also carries one
trivial grammar fix. (Ville Skytta)
2005-04-29 22:10 aj
* trunk/src/ifd/ifdhandler.c: Ville Skytta: adds docs for "-i" to
"ifdhandler -h".
* trunk/etc/openct.conf.in: Ville Skytta: add a sample commented
out config snippet for gempc.
2005-04-26 19:43 aj
* trunk/etc/openct.conf.in: Ville Skytta: an example cm4000
configuration snippet, commented out by default due to the
driver not being quite ready for real use yet.
* trunk/src/ifd/ifd-cardman.c, trunk/src/ifd/ifd-cm4000.c: Ville
Skytta: cardman-strings.patch contains various cosmetic comment
and string improvements to the cardman and cm4000 drivers.
2005-04-26 19:42 aj
* trunk/etc/Info.plist, trunk/etc/openct.conf.in,
trunk/etc/openct.usermap: Ville Skytta: comments out the orignal
"cardman" driver entries in the default configs. It also adds
CardMan 3121 and 5121 strings to Info.plist which enables
pcsc-lite hotplug for them.
2005-04-26 09:11 aj
* trunk/NEWS: 0.6.4 was released yesterday, add changes we did to
0.6.5 do far.
2005-04-25 21:01 aj
* trunk/configure.ac: move back to "WIP" for the snapshot script.
2005-04-25 20:52 aj
* trunk/etc/openct.conf.in, trunk/src/ifd/Makefile.am,
trunk/src/ifd/cardman.h, trunk/src/ifd/ifd-cm4000.c,
trunk/src/ifd/init.c: add cardman support.
2005-04-25 20:50 aj
* trunk/src/ifd/device.c, trunk/src/ifd/pcmcia.c: add pcmcia
support (by Harald Welte)
2005-04-25 20:49 aj
* trunk/src/ifd/ifd-ccid.c, trunk/src/include/openct/device.h:
make usb endpoint configureable (by Harald Welte)
2005-04-25 20:44 aj
* trunk/configure.ac: create new release candidate.
2005-04-25 20:19 aj
* trunk/ANNOUNCE, trunk/configure.ac: New version of openct: 0.6.4.
2005-04-17 20:15 aj
* trunk/configure.ac: change back to "WIP" for the snapshot script.
2005-04-17 20:05 aj
* trunk/NEWS, trunk/configure.ac: create new release candidate
with the libtool fix from ville.
2005-04-17 20:03 aj
* trunk/macos/libtool-bundle: Description by ville.skytta@iki.fi:
Cosmetic: Installing the lib contained in the bundle as
"openct-ifd" without the usual shared library suffix is slightly
misleading. Will attach a patch which preserves the filename and
installs it as "openct-ifd.so" (on Linux) which is what I'd
expect a shared lib / loadable module to be named like.
2005-04-12 20:45 aj
* trunk/configure.ac: set the version to "WIP" (work in progress)
for the snapshot script.
2005-04-07 07:12 aj
* trunk/Makefile.am, trunk/NEWS: Add solaris/ files to relase tar
file. (via main makefile.am, because of solaris/Makefile)
2005-04-07 07:05 aj
* trunk/configure.ac: create a second rc without the proto t=1
changes.
2005-04-07 07:04 aj
* trunk/src/ifd/proto-t1.c: reverse proto-t1 changes for now, will
be added once we have this release out of the door.
2005-03-29 07:28 aj
* trunk/solaris, trunk/solaris/Makefile, trunk/solaris/README,
trunk/solaris/checkinstall.in,
trunk/solaris/devices-openct-fabric.xml-dist,
trunk/solaris/openct-fabric-dist,
trunk/solaris/openct-hotplug-dist,
trunk/solaris/openct.conf-dist, trunk/solaris/pkginfo.in,
trunk/solaris/postinstall, trunk/solaris/preremove,
trunk/solaris/proto: Add files to make using openct on solaris
easier.
2005-03-22 09:23 aj
* trunk/NEWS, trunk/configure.ac: document changes in news,
increase library version.
2005-03-22 08:39 aj
* trunk/etc/Makefile.am: only gnu sed spits the file to stdout.
*bsd sed wants < file I think.
2005-03-22 08:16 aj
* trunk/src/ifd/ifd-ccid.c: From: William Wanders
<william@wanders.org> The first patch fixes an alignment problem
I encountered with the SUN C Pro compiler and ifd-ccid.c.
2005-03-22 08:15 aj
* trunk/NEWS, trunk/src/ifd/sys-solaris.c: From: William Wanders
<william@wanders.org> The second patch enhances the
sys-solaris.c with support for bulk and interrupt endpoint
transfers. Well just enough to get the CCID driver going.
2005-03-22 08:11 aj
* trunk/NEWS, trunk/src/ifd/sys-bsd.c: Attached is a patch for
sys-bsd.c which should add enough bulk and interrupt endpoint
support for the CCID driver. Hotplugging doesn't really work
that well. Polling the existence of a device through thru the
ugen driver doesn't seem to have the aimed effect.
2005-03-22 08:10 aj
* trunk/src/ifd/Attic: remove the Attic directory with files left
from the cvs2svn conversion.
2005-03-22 08:09 aj
* trunk/debian: remove old debian files, so eric can add the
current version (which is complete independend, so a diff'ed
merge wouldn't be of any help).
2005-03-22 08:08 aj
* trunk/.cvsignore, trunk/aclocal/.cvsignore,
trunk/doc/.cvsignore, trunk/etc/.cvsignore,
trunk/macos/.cvsignore, trunk/src/.cvsignore,
trunk/src/ct/.cvsignore, trunk/src/ctapi/.cvsignore,
trunk/src/ifd/.cvsignore, trunk/src/include/.cvsignore,
trunk/src/include/openct/.cvsignore, trunk/src/pcsc/.cvsignore,
trunk/src/scdl/.cvsignore, trunk/src/tools/.cvsignore: remove
.cvsignore files.
2005-03-22 08:07 aj
* trunk/ANNOUNCE, trunk/NEWS, trunk/QUICKSTART, trunk/TODO,
trunk/configure.ac: merge changes from 0.6.3 release.
2005-03-07 10:52 aet
* trunk/configure.ac: - Merge with opensc
2005-02-11 20:43 aet
* trunk/configure.ac: - Merge between opensc / openct
2005-01-29 10:51 aet
* trunk/configure.ac: - Show package version when configure is
finished
2005-01-29 10:43 aet
* trunk/src/ifd/ifd-ccid.c: - ccid update by Chaskiel M Grundman
<cg2v@andrew.cmu.edu> with some cleanups
2005-01-29 09:12 aet
* trunk/Makefile.am: - Require automake 1.5 or later
2005-01-23 10:14 aet
* trunk/aclocal/Makefile.am, trunk/aclocal/pkg.m4: - Add pkg.m4
for pkg-config depencies
2005-01-16 19:21 aet
* trunk/TODO: - Update
2005-01-16 19:20 aet
* trunk/src/ifd/internal.h: - Add void *dev to complement
ifd_device and future driver support.
2005-01-16 15:44 aet
* trunk/src/ct/socket.c, trunk/src/ct/status.c: - Silence harmless
error/debug messages
2004-12-15 18:18 aet
* trunk/configure.ac: - Merge with opensc
2004-12-15 13:57 aet
* trunk/ANNOUNCE, trunk/NEWS, trunk/QUICKSTART: - Preparations for
the next release
2004-12-15 13:52 aet
* trunk/src/ctapi/ctapi.c: - C++ build fix
2004-12-15 10:58 aet
* trunk/src/ctapi/ctapi.c, trunk/src/ifd/ifdproxy.c,
trunk/src/ifd/process.c: - Fix compiler warnings
2004-12-05 17:47 aj
* trunk/configure.ac, trunk/src/ifd/ifdhandler.c,
trunk/src/ifd/ifdproxy.c, trunk/src/tools/openct-control.c,
trunk/src/tools/openct-tool.c: add version to tools.
2004-11-11 19:52 aj
* trunk/src/ifd/device.c, trunk/src/ifd/ifd-smartboard.c,
trunk/src/ifd/ifdproxy.c, trunk/src/ifd/internal.h,
trunk/src/ifd/ria-device.c, trunk/src/ifd/ria-server.c,
trunk/src/ifd/ria.c, trunk/src/ifd/ria.h,
trunk/src/ifd/serial.c, trunk/src/include/openct/device.h: Priit
Randla writes: A couple of fixes, an additional RIA command and
an API change to specify time for sending break. As
ifd_serial_send_break was used in ifd-smartboard.c, I had to
make a change there too.
2004-11-10 09:43 aj
* trunk/src/ct/socket.c: slen needs to be set, else getpeername
cannot work.
2004-11-08 23:07 aj
* trunk/src/ctapi/ctapi.c: Improved command checking by Priit
Randla.
2004-11-05 18:28 aj
* trunk/src/ifd/reader.c: bug fix by Priit Randla.
2004-11-04 22:19 aj
* trunk/src/ct/client.c, trunk/src/ctapi/ctapi.c,
trunk/src/ctapi/ctapi.h, trunk/src/ifd/process.c,
trunk/src/include/openct/openct.h,
trunk/src/include/openct/protocol.h, trunk/src/pcsc/pcsc.c:
implement protocol selection. by Priit Randla
2004-10-31 15:33 aj
* trunk/src/ifd/ifd-egate.c: allow 4 bytes commands as well.
2004-10-31 11:27 aj
* trunk/etc/hotplug.openct.in: fix test command.
2004-10-25 06:41 aj
* trunk/src/ifd/atr.c: Allow TA4, bug found by Priit Randla.
2004-10-17 21:43 aj
* trunk/src/ifd/ifd-egate.c, trunk/src/ifd/process.c: increase
reply buffer to 258 bytes and add proper error handling to
ifd-egate. both by Chaskiel M Grundman.
2004-08-31 20:44 aj
* trunk/etc/Info.plist: Here's a simple patch to make eToken (the
older one) hotplug work with pcsc-lite using OpenCT's driver
bundle. (Ville Skytt�)
2004-08-06 07:18 nils
* trunk/src/ifd/usb-descriptors.c: add missing host endian
conversion patch supplied by William Wanders
<william@wanders.org>
2004-08-06 07:15 nils
* trunk/src/ifd/ifd-kaan.c: fix compiler warning patch supplied by
William Wanders <william@wanders.org>
2004-07-20 21:03 aj
* trunk/Makefile.am, trunk/QUICKSTART: Add some minimal text
documentation for now.
2004-07-20 20:48 aj
* trunk/ANNOUNCE, trunk/LICENSE, trunk/NEWS, trunk/TODO: updated
text files.
2004-07-20 00:47 aj
* trunk/src/ifd/proto-t1.c, trunk/src/include/openct/ifd.h: t=1
protocol improvements by ludovic rousseau
2004-07-20 00:46 aj
* trunk/configure.ac: Better placement of info text for old
configure test.
2004-07-20 00:43 aj
* trunk/src/ifd/ifdhandler.c: check if a full packet has been
received or not (i.e. differ return code 0 / 1, not only < 0).
2004-07-20 00:19 aj
* trunk/src/ct/socket.c: fix protocol bug triggered by egate. for
some reason the ifdhandler sends two responses, first an ok,
then an error. we ignore the second one, because the xid does
not match.
2004-07-19 21:12 aj
* trunk/src/ifd/internal.h: fix type difference source / header.
2004-07-19 21:05 aj
* trunk/etc/Makefile.am: change init script and hotplug script to
mode 755. install hotplug files only if target directory is
writeable.
2004-07-19 21:02 aj
* trunk/configure.ac, trunk/src/ifd/Makefile.am,
trunk/src/pcsc/Makefile.am: Try pkg-config detection, fall back
to conventional code.
2004-07-15 06:16 aet
* trunk/src/include/openct/Makefile.am: - Fixed the previous commit
2004-07-14 21:54 aj
* trunk/etc/init-script.in: remove status file in the init script
on stop.
2004-07-14 21:26 aj
* trunk/src/include/openct/Makefile.am: Do not include types.h in
distribution tar file, as it is generated by configure.
* trunk/doc/openct.html: get html documentation in sync with xml
source.
2004-07-09 21:09 aj
* trunk/etc/openct.usermap: Ville Skytt�: Remove duplicate CardMan
2020 entry.
* trunk/doc/openct.xml: Ville Skytt�: import new openct.conf
2004-07-09 21:08 aj
* trunk/src/pcsc/Makefile.am: Ville Skytt�: Create bundle dir
before trying to install into it, do not mask installation
failure.
2004-07-09 19:25 aj
* trunk/src/ctapi/ctapi.c: This patch introduces host files to
CTAPI. The implementation is not complete, but enough to compile
and run code to read out German health insurance cards. It
should not break existing code, but of course testing is
encouraged. (fix by Michael Haardt)
2004-06-30 21:06 aj
* trunk/doc/openct.html: html file update.
2004-06-30 06:54 aj
* trunk/etc/hotplug.openct.in: Only start ifdhandler if already
initialized / status file exists.
2004-06-28 22:45 aj
* trunk/etc/openct.usermap: update usermap for usb hotplugging,
too.
2004-06-28 22:44 aj
* trunk/etc/openct.conf.in: additional id's found by Ville Skytt�
2004-06-28 22:43 aj
* trunk/doc/openct.xml: small fixed by Ville Skytt�.
2004-03-14 18:42 aet
* trunk/src/ifd/sys-bsd.c, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/sys-null.c, trunk/src/ifd/sys-solaris.c: -
ifd_sysdep_usb_poll_presence cleanups
2004-03-14 14:39 aet
* trunk/src/ifd/sys-bsd.c, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/sys-null.c, trunk/src/ifd/sys-solaris.c,
trunk/src/ifd/usb.c: - Some merging and polishing before
rewriting the USB layer - Add missing functions for BSD port -
Fix incorrect return values
2004-03-14 10:47 aet
* trunk/src/ifd/sys-bsd.c: - Untested build fixes for FreeBSD 5.2
2004-03-04 10:08 aj
* trunk/src/ifd/ifd-kaan.c: small fix by Michael Haardt
<michael@moria.de>
2004-02-26 10:37 aj
* trunk/debian/README.Debian, trunk/debian/changelog,
trunk/debian/control, trunk/debian/copyright,
trunk/debian/libopenct0-dev.install,
trunk/debian/libopenct0.install, trunk/debian/libopenct0.shlibs,
trunk/debian/openct-dev.dirs, trunk/debian/openct-dev.files,
trunk/debian/openct.README.Debian, trunk/debian/openct.dirs,
trunk/debian/openct.doc-base.manual, trunk/debian/openct.docs,
trunk/debian/openct.files, trunk/debian/openct.install,
trunk/debian/openct.postinst, trunk/debian/rules: switch to eric
dorlands debian/ files, those are used in the official debian
packages. however a changelog for a current cvs snapshot was
added, and maintainer set to Andreas Jellinghaus
<aj@dungeon.inka.de>, so eric is not bothered with bugs in the
cvs snapshot.
2004-02-26 10:32 aj
* trunk/doc/openct.html: minimal update for changes in openct.xml.
2004-01-27 09:06 okir
* trunk/src/ifd/process.c: - Patch to fix use of
ifd_{read,write}_memory (Michael Haardt)
2004-01-22 08:37 okir
* trunk/src/ifd/atr.c, trunk/src/ifd/ifd-ccid.c: - new CCID
patches from Chaskiel
2004-01-21 10:05 okir
* trunk/src/ct/error.c, trunk/src/include/openct/error.h: - added
IFD_ERROR_INVALID_ATR
2004-01-21 09:43 okir
* trunk/src/ifd/Makefile.am, trunk/src/ifd/atr.c,
trunk/src/ifd/atr.h, trunk/src/ifd/protocol.c: - added code for
ATR parsing and PTS string handling
2004-01-20 12:43 aet
* trunk/src/ifd/ifd-ccid.c, trunk/src/ifd/ria-server.c,
trunk/src/ifd/usb-descriptors.c,
trunk/src/ifd/usb-descriptors.h, trunk/src/ifd/utils.c: - Minor
warning fixes - Portability fixes
2004-01-20 09:57 okir
* trunk/doc/openct.xml: - Added author notice on CCID driver
2004-01-20 09:56 okir
* trunk/etc/openct.conf.in, trunk/etc/openct.usermap,
trunk/src/ifd/Makefile.am, trunk/src/ifd/ifd-ccid.c,
trunk/src/ifd/init.c, trunk/src/ifd/internal.h,
trunk/src/ifd/sys-linux.c, trunk/src/ifd/usb-descriptors.c,
trunk/src/ifd/usb-descriptors.h: - merged CCID driver from
Chaskiel Grundmann
2004-01-20 08:51 okir
* trunk/src/ifd/ifd-egate.c: - patch from Chaskiel to use symbolic
names for constants
* trunk/src/ifd/protocol.c: - added ifd_debug() call
2004-01-19 19:54 aet
* trunk/src/ifd/sys-bsd.c: - Add USB rewrite for FreeBSD by
William Wanders
2004-01-19 19:52 aet
* trunk/src/ifd/Makefile.am: - Revert previous patch
2004-01-19 18:51 aj
* trunk/src/ifd/Makefile.am: make libifd not standalone, i.e. all
tools and libs will link it staticaly.
2004-01-19 18:50 aj
* trunk/debian/changelog: new debian packages...
2004-01-14 21:41 aj
* trunk/src/ct/libopenct.pc.in: library dependencies for linking
where missing from the pkgconfig file.
2004-01-14 20:13 aj
* trunk/debian/changelog: recompiled debian packages.
2004-01-11 12:47 aet
* trunk/src/ctapi/Makefile.am: - Revert previous patch
2004-01-10 20:24 aet
* trunk/src/ctapi/Makefile.am: - Add versioning
2004-01-10 19:49 aet
* trunk/configure.ac: - Move the variable substitution of
exec_prefix and sysincludedir to make-level (Lars T. Mikkelsen)
2004-01-08 23:25 aet
* trunk/src/ifd/sys-solaris.c: - Minor cleanups and a build fix
for Sun's native compiler for Solaris, yet untested.
2004-01-08 19:13 aj
* trunk/debian/openct.postinst, trunk/debian/openct.postrm,
trunk/debian/openct.prerm, trunk/debian/rules: remove post/pre
rm/inst scripts, as debhelper will create them. dh_initinstall
--init-script=../etc/init-script -name openct does not work, so
the script is copied to debian/openct.init and removed in clean.
2004-01-08 12:37 aj
* trunk/doc/openct.html: thanks to William Wanders for
contributing Solaris support.
2004-01-08 12:36 aj
* trunk/debian/files, trunk/debian/openct-dev.substvars,
trunk/debian/openct.postinst.debhelper,
trunk/debian/openct.postrm.debhelper,
trunk/debian/openct.substvars: oops. these are temporary files
created by debian and removed by debian/rules clean. they
shouldn't be in the cvs.
2004-01-08 11:00 okir
* trunk/doc/openct.xml: - added william wanders as author of
sys-solaris.c
2004-01-08 10:53 okir
* trunk/src/ifd/internal.h, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/sys-null.c, trunk/src/ifd/usb.c: - created
ifd_sysdep_usb_poll_presence and moved poll functionality there
2004-01-08 10:52 okir
* trunk/src/ifd/Makefile.am, trunk/src/ifd/sys-solaris.c: -
Solaris support from William Wanders
2004-01-08 10:43 aj
* trunk/doc/openct.html: rendered with new docbook stylesheet.
2004-01-08 10:20 aj
* trunk/debian, trunk/debian/README.Debian,
trunk/debian/changelog, trunk/debian/compat,
trunk/debian/control, trunk/debian/copyright,
trunk/debian/files, trunk/debian/openct-dev.dirs,
trunk/debian/openct-dev.files,
trunk/debian/openct-dev.substvars, trunk/debian/openct.dirs,
trunk/debian/openct.docs, trunk/debian/openct.files,
trunk/debian/openct.postinst,
trunk/debian/openct.postinst.debhelper,
trunk/debian/openct.postrm,
trunk/debian/openct.postrm.debhelper, trunk/debian/openct.prerm,
trunk/debian/openct.substvars, trunk/debian/rules: files for
creating debian packages. Unofficial versions.
2004-01-06 12:59 okir
* trunk/src/ifd/ifd-cardman.c, trunk/src/ifd/internal.h,
trunk/src/ifd/sys-linux.c, trunk/src/ifd/sys-null.c,
trunk/src/ifd/usb.c, trunk/src/include/openct/device.h: - Merged
USB enhancements from Chaskiel
2004-01-06 12:39 okir
* trunk/src/ifd/ria-device.c, trunk/src/ifd/ria.c,
trunk/src/ifd/ria.h: - fixed ria timeout handling
2004-01-06 12:38 okir
* trunk/src/ifd/ifdproxy.c: - Fixed gcc warning
2003-12-18 18:57 okir
* trunk/src/ifd/ifd-ikey2k.c: - yet another answer to card reset
2003-12-12 09:32 aet
* trunk/src/pcsc/Makefile.am: - Minor bundle handling fixes
2003-12-10 14:52 aet
* trunk/configure.ac, trunk/src/ifd/ifd-gempc.c: - Minor naming
convention harmonisation for pc/sc and ct-api related things
2003-12-09 19:37 aet
* trunk/aclocal/acx_pthread.m4: - Probe for -lpthread before
-pthread, as we did in the previous version.
2003-12-09 12:38 okir
* trunk/src/ifd/ifd-gempc.c, trunk/src/ifd/proto-gbp.c: - Merged
patches from Chaskiel
2003-12-09 12:13 okir
* trunk/src/ifd/ifdproxy.c: - added chroot support
2003-12-09 12:12 okir
* trunk/src/ct/error.c: - chroot support - open syslog as early as
possible; later may be too late
2003-12-06 18:14 aet
* trunk/configure.ac, trunk/src/ifd/sys-linux.c: - Build fix
against latest broken glibc usb headers
2003-12-03 10:56 aet
* trunk/configure.ac: - Add AM_MAINTAINER_MODE
2003-11-30 17:19 aet
* trunk/ChangeLog: - Fixed an embarrassing typo from the ChangeLog
URL
2003-11-27 09:51 okir
* trunk/src/ifd/ifdproxy.c, trunk/src/ifd/internal.h,
trunk/src/ifd/utils.c: - moved daemon() to utils.c
2003-11-27 09:45 okir
* trunk/src/ct/socket.c: - updated setsockopt(IPV6_IPV6ONLY)
2003-11-26 21:22 aet
* trunk/configure.ac, trunk/src/ifd/ifdproxy.c: - Check for
daemon(), add wrapper code
2003-11-26 21:16 aet
* trunk/src/ifd/ria-server.c: - Remove duplicate #include
openct/ifd.h
2003-11-26 20:26 aet
* trunk/configure.ac, trunk/src/ct/socket.c,
trunk/src/ifd/ria-device.c, trunk/src/ifd/ria.c,
trunk/src/ifd/ria.h, trunk/src/include/openct/socket.h: - Some
portability changes to the new socket code - Warning fixes
2003-11-26 17:16 okir
* trunk/src/ct/socket.c: - dont use IPV6_V6ONLY if not defined
2003-11-26 16:24 okir
* trunk/etc/openct.conf.in: - added section for ifdproxy
2003-11-26 16:21 okir
* trunk/src/ifd/ifd-kaan.c, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h, trunk/src/ifd/proto-sync.c,
trunk/src/include/openct/ifd.h: - Replace all phone card
specific protocols with the eurochip protocol (patch from
Michael Haardt)
2003-11-26 16:17 okir
* trunk/src/ct/socket.c: - Endianness fix
2003-11-26 16:11 okir
* trunk/src/pcsc/Makefile.am: - leftover patch from I don't know
whom
2003-11-26 16:10 okir
* trunk/src/ifd, trunk/src/ifd/.cvsignore,
trunk/src/ifd/Makefile.am, trunk/src/ifd/device.c,
trunk/src/ifd/ifdhandler.c, trunk/src/ifd/ifdproxy.c,
trunk/src/ifd/internal.h, trunk/src/ifd/reader.c,
trunk/src/ifd/ria-device.c, trunk/src/ifd/ria-server.c,
trunk/src/ifd/ria.c, trunk/src/ifd/ria.h,
trunk/src/ifd/serial.c: - Some changes in socket behavior -
Added remote access to devices (for debugging)
2003-11-26 16:09 okir
* trunk/src/ct/client.c, trunk/src/ct/mainloop.c,
trunk/src/ct/socket.c, trunk/src/include/openct/server.h,
trunk/src/include/openct/socket.h: - massive socket rewrite
2003-11-26 15:59 okir
* trunk/src/include/openct/device.h: - added ifd_device_reset
2003-11-26 15:57 okir
* trunk/src/ct/error.c, trunk/src/include/openct/error.h: - more
error codes
* trunk/src/ct/buffer.c: - Added ct_buf_push - ct_buf_put now
compacts the buffer if needed
2003-11-26 15:56 okir
* trunk/src/include/openct/buffer.h: - added ct_buf_push
2003-11-26 15:55 okir
* trunk/src/ifd/ifd-towitoko.c: - fixed typo - better return codes
2003-11-25 13:38 aet
* trunk/ANNOUNCE: - Fixed a typo
2003-11-24 18:05 aet
* trunk/NEWS: - Set release date
2003-11-23 20:57 aet
* trunk/src/ifd/Makefile.am: - Add prefix ifd- for all actual
reader driver source files
2003-11-23 20:36 aet
* trunk/src/ifd/ifdhandler.h: - OPENCT_ -> IFD_
2003-11-23 15:36 aet
* trunk/aclocal/Makefile.am: - Add missing m4 files to
distribution tarball
2003-11-23 14:52 aet
* trunk/etc/Makefile.am: - Replace the hardcoded path /etc with
$(sysconfdir)
2003-11-23 13:26 aet
* trunk/TODO: - Update TODO status
2003-11-23 12:53 aet
* trunk/doc/openct.html, trunk/doc/openct.xml,
trunk/etc/openct.conf.in: - Fixed a typo in sample configuration
syntax
2003-11-23 12:45 aet
* trunk/AUTHORS, trunk/doc/openct.html, trunk/doc/openct.xml,
trunk/etc/openct.conf.in: - Documentation updates
2003-11-22 18:09 aet
* trunk/ANNOUNCE, trunk/NEWS, trunk/README: - More documentation
updates for the upcoming release
2003-11-22 17:39 aet
* trunk/doc/openct.html, trunk/doc/openct.xml: - Add minor
documentation updates
2003-11-22 14:12 aet
* trunk/src/ifd/ifd-ikey2k.c: - Fixed a typo
2003-11-21 21:57 okir
* trunk/src/ifd/ifd-gempc.c: - small update
2003-11-21 15:17 aet
* trunk/src/ifd/ifd-gempc.c, trunk/src/ifd/internal.h: - Minor
warning fixes
2003-11-21 14:24 okir
* trunk/src/ifd/ifd-kaan.c: - more kaan patches from mhaardt
2003-11-21 13:21 okir
* trunk/etc/Makefile.am, trunk/etc/openct.usermap: - Install
targets for hotplug script and usermap
2003-11-21 13:14 okir
* trunk/etc/openct.conf.in: - added ID for iKey 2000
2003-11-21 13:05 okir
* trunk/src/ifd/driver.c, trunk/src/ifd/ifdhandler.c,
trunk/src/ifd/internal.h, trunk/src/ifd/protocol.c: -
implemented "ifdhandler -i" to display list of configured
drivers and protocols.
* trunk/src/ifd/ifd-ikey2k.c: - fixed warning
2003-11-21 12:45 okir
* trunk/src/ifd/Makefile.am, trunk/src/ifd/ifd-ikey2k.c,
trunk/src/ifd/init.c: - merged ikey2k driver from Andreas
Jellinghaus
2003-11-21 12:44 okir
* trunk/src/ifd/Makefile.am, trunk/src/ifd/ifd-gempc.c,
trunk/src/ifd/init.c, trunk/src/ifd/internal.h: - added initial
support for gempc readers, untested
2003-11-21 09:40 okir
* trunk/src/ifd/ifd-towitoko.c: - fixed typo
2003-11-21 07:16 okir
* trunk/src/ifd/Makefile.am, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h, trunk/src/ifd/proto-gbp.c: - first
stab at Gemplus Block Protocol (GBP)
2003-11-20 21:15 aet
* trunk/src/ifd/process.c: - Warning fix
* trunk/src/ifd/init.c: - Disable ikey2k init for now
2003-11-20 20:37 aet
* trunk/aclocal/acx_pthread.m4: - Replace the patched file with a
new upstream version
2003-11-20 09:51 aet
* trunk/src/ifd/Makefile.am: - snapshot build fix
2003-11-17 16:09 okir
* trunk/src/ifd/ifd-kaan.c: - More Kaan patches from Michael Haardt
2003-11-17 16:03 okir
* trunk/src/ifd/protocol.c: - dont crash if ops->init == NULL
2003-11-17 15:51 okir
* trunk/src/ifd/Makefile.am, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/init.c, trunk/src/ifd/internal.h,
trunk/src/ifd/proto-sync.c: - removed mem size probing for sync
cards (ugly hack). Patch by mhaardt
2003-11-13 21:13 okir
* trunk/src/tools/openct-tool.c: - fix help message (mhaardt)
2003-11-11 22:42 aet
* trunk/src/scdl/Makefile.am: - Remove Makefile.mak
2003-11-11 22:30 aet
* trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/ifd/Makefile.am, trunk/src/ifd/modules.c,
trunk/src/scdl, trunk/src/scdl/.cvsignore,
trunk/src/scdl/Makefile.am, trunk/src/scdl/scdl.c,
trunk/src/scdl/scdl.h: - Merge scdl functions from OpenSC
2003-11-11 21:12 aet
* trunk/src/pcsc/pcsc.c: - Add some handling for pcscd's different
channel numbering scheme for hotplug devices
2003-11-11 20:56 aet
* trunk/src/pcsc/pcsc.c: - Indent lines
2003-10-30 12:42 okir
* trunk/src/ct/client.c, trunk/src/ct/socket.c,
trunk/src/tools/openct-tool.c: - fixed several resource leaks
(patches by Kevin Stefanik)
2003-10-30 12:32 okir
* trunk/doc/openct.xml: - Added some instructions on building, and
explain --prefix and --sysconfdir - Be a little more specific on
where openct.conf is installed, based on the configure options.
2003-10-19 20:28 aet
* trunk/src/ifd/conf.c, trunk/src/ifd/ifd-towitoko.c,
trunk/src/ifd/serial.c, trunk/src/include/openct/conf.h: -
Rename hush_errors to suppress_errors, similar to OpenSC.
2003-10-19 13:49 aet
* trunk/src/ifd/utils.c, trunk/src/include/openct/ifd.h: - Add
somewhat working ifd_debug() for non-gcc compilers
2003-10-19 13:14 aet
* trunk/src/ct/buffer.c, trunk/src/ct/client.c,
trunk/src/ct/error.c, trunk/src/ct/tlv.c,
trunk/src/ctapi/ctapi.c, trunk/src/ifd/device.c,
trunk/src/ifd/ifd-kaan.c, trunk/src/ifd/ifd-smartboard.c,
trunk/src/ifd/ifd-towitoko.c, trunk/src/ifd/ifdhandler.c,
trunk/src/ifd/process.c, trunk/src/ifd/proto-sync.c,
trunk/src/ifd/reader.c, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/utils.c, trunk/src/include/openct/apdu.h,
trunk/src/include/openct/buffer.h,
trunk/src/include/openct/conf.h,
trunk/src/include/openct/device.h,
trunk/src/include/openct/driver.h,
trunk/src/include/openct/error.h,
trunk/src/include/openct/ifd.h,
trunk/src/include/openct/logging.h,
trunk/src/include/openct/openct.h,
trunk/src/include/openct/protocol.h,
trunk/src/include/openct/server.h,
trunk/src/include/openct/socket.h,
trunk/src/include/openct/tlv.h,
trunk/src/tools/openct-control.c, trunk/src/tools/openct-tool.c:
- C++ warning fixes and additions to public headers - Move
ct_hexdump from libifd to libopenct
2003-10-19 12:59 aet
* trunk/src/ifd/Makefile.am, trunk/src/ifd/confparse.c: - Remove
empty file confparse.c
2003-10-18 21:09 aet
* trunk/src/ifd/device.c, trunk/src/ifd/internal.h,
trunk/src/ifd/sys-bsd.c, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/sys-null.c, trunk/src/ifd/usb.c,
trunk/src/include/openct/device.h: - Remove obsolete
ifd_device_open_channel / ifd_sysdep_channel_to_name - Some
polishing for sysdep usb layer, as not all usb api
implementations work on top of a file descriptor
2003-10-18 21:05 aet
* trunk/src/ct/error.c: - Rename syslog identification string from
ifdd to ifdhandler
2003-10-16 20:59 aet
* trunk/etc/Makefile.am, trunk/src/pcsc/Makefile.am: - Move
additional Info.plist from src/pcsc/ to etc/ instead
2003-10-16 20:40 aet
* trunk/configure.ac, trunk/etc/Info.plist,
trunk/macos/libtool-bundle, trunk/src/pcsc/Makefile.am: -
Preliminary support for installing USB bundle package for
pcsc-lite, should work for any platform with pcsc-lite 1.2.0-rc3
or later. TODO: Add all supported vendor/device IDs and
friendlynames to src/pcsc/Info.plist
2003-10-16 16:59 aet
* trunk/src/ctapi/Makefile.am: - Don't link with libifd
2003-10-16 15:51 aet
* trunk/Makefile.am, trunk/configure.ac, trunk/macos,
trunk/macos/.cvsignore, trunk/macos/Makefile.am,
trunk/macos/libtool-bundle: - Merge bundle installation script
from OpenSC
2003-10-16 14:16 aet
* trunk/src/ctapi/Makefile.am: - PC/SC IFD installation fix for
MacOS X
2003-10-16 14:00 aet
* trunk/src/ifd/ifd-kaan.c: - Add missing sys/poll.h, any reason
not to use usleep instead?
2003-10-16 13:29 aet
* trunk/src/pcsc/Makefile.am: - Oops, include order is important
in some environments
2003-10-16 13:15 aet
* trunk/src/tools, trunk/src/tools/.cvsignore: - Add openct-control
* trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/tools/Makefile.am: - Move openct-control from
src/control to src/tools
2003-10-16 12:59 aet
* trunk/src/ifd/Makefile.am, trunk/src/ifd/sys-bsd.c,
trunk/src/ifd/sys-linux.c, trunk/src/ifd/sys-null.c,
trunk/src/ifd/utils.c, trunk/src/include/openct/ifd.h,
trunk/src/tools/openct-control.c: - Start renewing the USB
layer, move all OS specific functions to ifd/sys-*.c - Rename
mgr_scan_usb to ifd_scan_usb, temporary - Move
mgr_spawn_ifdhandler to libifd and rename it as
ifd_spawn_handler - Add sys-null.c for platforms that don't have
USB layer implemented yet, therefore provides support for using
serial devices only
2003-10-16 11:34 okir
* trunk/src/ifd/proto-sync.c: - disable probing of card length for
now
2003-10-16 10:50 aet
* trunk/src/pcsc/Makefile.am, trunk/src/pcsc/pcsc.c: - New PC/SC
IFD handler implementation. Incomplete, but works.
2003-10-15 10:50 okir
* trunk/src/ifd/ifd-kaan.c: - clarified kaan TLV encoding
2003-10-15 10:12 okir
* trunk/src/ifd/ifd-kaan.c: - new B1 patch from Michael Haardt
2003-10-15 10:07 okir
* trunk/src/include/openct/ifd.h: - added IFD_PROTOCOL_4401ff
(mhaardt)
2003-10-13 16:04 aet
* trunk/aclocal/acx_pthread.m4, trunk/configure.ac,
trunk/src/pcsc/Makefile.am: - Merge PC/SC changes and pthread
support from OpenSC
2003-10-12 19:24 aet
* trunk/src/pcsc/ifdhandler.h: Merge ifdhandler.h from pcsc-lite
1.2.0
2003-10-09 19:08 okir
* trunk/src/ifd/ifd-kaan.c: - merge some more diffs from Michael
Haardt
2003-10-09 18:38 okir
* trunk/src/ifd/proto-t1.c: - force a device flush in resynchronize
2003-10-08 11:56 aet
* trunk/src/ctapi/ctapi.h, trunk/src/include/openct/apdu.h,
trunk/src/include/openct/openct.h,
trunk/src/include/openct/protocol.h,
trunk/src/include/openct/server.h,
trunk/src/include/openct/socket.h,
trunk/src/include/openct/tlv.h: While at it, unify the copyright
header a bit.
2003-10-08 11:33 okir
* trunk/src/ctapi/Makefile.am: - install ctapi.h
2003-10-08 11:28 okir
* trunk/src/ctapi/ctapi.h: - Patch from Michael Haardt: removed
useless PORT_* macros, added ERR_HOST
2003-10-07 18:21 aet
* trunk/src/ifd/ifd-smartboard.c, trunk/src/ifd/serial.c,
trunk/src/include/openct/device.h: Minor warnings / portability
fixes
2003-10-07 13:41 okir
* trunk/src/ifd/Makefile.am, trunk/src/ifd/ifd-smartboard.c,
trunk/src/ifd/init.c: - First implementation of Cherry
Smartboard Driver
2003-10-07 13:40 okir
* trunk/src/ifd/serial.c: - Added code to turn on detect parity
errors on input (req'd by Smartboard) - Added
ifd_serial_send_break - Fixed compiler warning
2003-10-07 13:38 okir
* trunk/src/ifd/ifdhandler.c: - fixed uninitialized variable
* trunk/src/ifd/proto-t0.c, trunk/src/ifd/proto-t1.c,
trunk/src/include/openct/ifd.h: - Add support for "block
oriented" devices, such as the Cherry Smartboard, that will send
T=0 and T=1 commands in one frame.
2003-10-07 13:36 okir
* trunk/src/include/openct/device.h: - added check_parity field to
device_params
2003-10-02 08:47 aet
* trunk/src/ctapi/ctapi.c: Add bugfix update from Michael Haardt
2003-10-01 09:00 aet
* trunk/src/ctapi/Makefile.am, trunk/src/pcsc/Makefile.am: -
Backout @libdir@/openct installation - Rename openct-ctapi back
to libopenctapi as requested by Michael Haardt
2003-09-28 15:06 aet
* trunk/src/ctapi/Makefile.am, trunk/src/pcsc/Makefile.am: Fix
openct-ctapi / openct-ifd linking
2003-09-28 14:44 aet
* trunk/src/ctapi/Makefile.am: Rename libopenctapi.so back to
openct-ctapi.so
2003-09-25 15:03 aet
* trunk/src/tools/openct-tool.c: Fix hardcoded ifd.conf path into
use of OPENCT_CONF_PATH
2003-09-24 10:17 aet
* trunk/ChangeLog: Remove old ChangeLog, add URL to the new
location.
2003-09-18 18:08 aet
* trunk/src/include/openct/ifd.h: - Minor cleanups - Add temporary
hack for ifd_debug to make it work with non-gcc compilers, needs
a rewrite some other day.
2003-09-18 17:59 aet
* trunk/src/ifd/process.c: Rewrite cmd_name handling to make it
work with non-gcc compilers
2003-09-12 06:49 aet
* trunk/configure.ac: Minor merge with OpenSC
2003-09-10 10:02 aet
* trunk/configure.ac: Replace overly complex and old configure
magic for connect() and friends, just check for socket() in
libsocket.
2003-09-05 12:33 aet
* trunk/src/ct/socket.c: Fix for the previous commit
2003-09-05 11:52 aet
* trunk/src/ct/socket.c, trunk/src/ifd/conf.c,
trunk/src/ifd/ifd-cardman.c, trunk/src/ifd/ifd-egate.c,
trunk/src/ifd/ifd-etoken.c, trunk/src/ifd/ifd-eutron.c,
trunk/src/ifd/ifd-ikey3k.c, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/ifd-towitoko.c, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h, trunk/src/ifd/proto-sync.c,
trunk/src/ifd/proto-t0.c, trunk/src/ifd/proto-t1.c,
trunk/src/ifd/proto-trans.c, trunk/src/ifd/serial.c,
trunk/src/ifd/usb.c, trunk/src/include/openct/openct.h: Build
fixes for non-gcc compilers, untested.
2003-09-05 10:40 aet
* trunk/src/ct/error.c: Rewrite ct_strerror to make it work with
non-gcc compilers
2003-09-04 13:54 okir
* trunk/src/ifd/ifd-egate.c: - Patch from Chaskiel: prevent USB
stall
2003-09-04 08:37 aet
* trunk/Makefile.am, trunk/configure.ac, trunk/src/Makefile.am,
trunk/src/ifd/Makefile.am: Renaming / moving things update
2003-09-03 20:38 okir
* trunk/src/ifd/ifd-kaan.c: - Merged patch from Michael Haardt to
support Siemens B1
2003-09-03 15:22 aet
* trunk/configure.ac: Build fix for MacOS X + fink
2003-09-03 12:32 aet
* trunk/src/ct/client.c, trunk/src/ct/status.c,
trunk/src/ifd/conf.c, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/serial.c, trunk/src/include/openct/driver.h,
trunk/src/tools/openct-control.c, trunk/src/tools/openct-tool.c:
Build / warning fixes
2003-09-03 11:50 aet
* trunk/configure.ac, trunk/src/ct/libopenct.pc.in,
trunk/src/ifd/checksum.c, trunk/src/ifd/internal.h,
trunk/src/ifd/modules.c, trunk/src/ifd/utils.c,
trunk/src/include/openct, trunk/src/include/openct/.cvsignore,
trunk/src/include/openct/Makefile.am,
trunk/src/include/openct/socket.h: - Fix the ifdhandler path for
OPENCT_IFDHANDLER_PATH - Generate system depended openct/types.h
for portability, install it to exec_prefix/include - Build fixes
2003-09-03 11:46 aet
* trunk/aclocal/ac_compile_check_sizeof.m4,
trunk/aclocal/ac_create_stdint_h.m4: Add 3rdparty M4 macros
2003-09-02 05:25 okir
* trunk/src/ctapi/ctapi.c: - bugfix update from Michael Haardt
2003-08-26 12:22 aet
* trunk/src/ct/Makefile.am, trunk/src/ifd/Makefile.am: Add
versioning to libopenct and libifd
2003-08-26 12:16 aet
* trunk/Makefile.am, trunk/configure.ac, trunk/doc/Makefile.am,
trunk/etc/Makefile.am, trunk/src/Makefile.am,
trunk/src/ct/Makefile.am, trunk/src/ctapi/Makefile.am,
trunk/src/ifd/Makefile.am, trunk/src/include/Makefile.am,
trunk/src/include/openct/Makefile.am,
trunk/src/pcsc/Makefile.am, trunk/src/pcsc/ifdhandler.h,
trunk/src/pcsc/pcsc.c, trunk/src/tools/Makefile.am: Generic
build cleanups PC/SC IFD build fixes
2003-08-26 11:17 aet
* trunk/src/ifd/ifd-cardman.c, trunk/src/ifd/internal.h,
trunk/src/ifd/proto-sync.c, trunk/src/ifd/proto-t0.c,
trunk/src/ifd/proto-t1.c, trunk/src/ifd/proto-trans.c,
trunk/src/ifd/serial.c, trunk/src/ifd/sys-bsd.c,
trunk/src/ifd/sys-linux.c, trunk/src/ifd/utils.c: Move
sys/time.h include to internal.h, it needs to be included there
anyway because of ifd_time_elapsed() function prototype.
2003-08-26 10:54 aet
* trunk/configure.ac, trunk/src/ct/buffer.c,
trunk/src/ct/client.c, trunk/src/ct/error.c,
trunk/src/ct/mainloop.c, trunk/src/ct/socket.c,
trunk/src/ct/status.c, trunk/src/ct/tlv.c,
trunk/src/ctapi/ctapi.c, trunk/src/ifd/apdu.c,
trunk/src/ifd/conf.c, trunk/src/ifd/confparse.c,
trunk/src/ifd/ctbcs.c, trunk/src/ifd/device.c,
trunk/src/ifd/driver.c, trunk/src/ifd/ifd-cardman.c,
trunk/src/ifd/ifd-egate.c, trunk/src/ifd/ifd-etoken.c,
trunk/src/ifd/ifd-eutron.c, trunk/src/ifd/ifd-ikey3k.c,
trunk/src/ifd/ifd-kaan.c, trunk/src/ifd/ifd-towitoko.c,
trunk/src/ifd/ifdhandler.c, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h, trunk/src/ifd/locks.c,
trunk/src/ifd/manager.c, trunk/src/ifd/modules.c,
trunk/src/ifd/process.c, trunk/src/ifd/proto-sync.c,
trunk/src/ifd/proto-t0.c, trunk/src/ifd/proto-t1.c,
trunk/src/ifd/proto-trans.c, trunk/src/ifd/protocol.c,
trunk/src/ifd/reader.c, trunk/src/ifd/serial.c,
trunk/src/ifd/sys-bsd.c, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/usb.c, trunk/src/ifd/utils.c,
trunk/src/include/openct/Makefile.am,
trunk/src/include/openct/conf.h,
trunk/src/include/openct/pathnames.h, trunk/src/pcsc/pcsc.c,
trunk/src/tools/openct-control.c, trunk/src/tools/openct-tool.c:
- Remove openct/pathnames.h, use autoconf + config.h instead -
Include config.h in sources - Add minor portability fixes, many
more to come
2003-08-25 10:24 aet
* trunk/configure.ac: More merging with OpenSC
2003-08-22 19:13 aet
* trunk/configure.ac: More OpenSC configure merges, now OpenCT
./configure at least runs on other operating systems than Linux.
2003-08-22 14:40 okir
* trunk/src/ifd/proto-t0.c, trunk/src/ifd/proto-trans.c: - fixed
t=0 and trans protocol handlers
2003-08-22 14:15 aet
* trunk/etc/Makefile.am: Build fix
2003-08-22 13:48 aet
* trunk/configure.ac: Merge PC/SC stuff from OpenSC. From now on,
-lpcsclite won't be part of LIBS, so you may need to update
other Makefiles.
2003-08-22 13:25 aj
* trunk/src/ifd/sys-bsd.c: No, I'm not working at suse. Only a
typo.
2003-08-22 13:01 aet
* trunk/src/ifd/sys-bsd.c: Typo fixes
2003-08-22 11:46 aet
* trunk/Makefile.am, trunk/aclocal/Makefile.am, trunk/bootstrap,
trunk/configure.ac: - Merge configure stuff with OpenSC - Remove
tools/, add aclocal/
2003-08-22 11:43 aet
* trunk, trunk/.cvsignore, trunk/aclocal,
trunk/aclocal/.cvsignore, trunk/doc, trunk/doc/.cvsignore,
trunk/etc, trunk/etc/.cvsignore, trunk/src,
trunk/src/.cvsignore, trunk/src/ct, trunk/src/ct/.cvsignore,
trunk/src/ctapi, trunk/src/ctapi/.cvsignore, trunk/src/ifd,
trunk/src/ifd/.cvsignore, trunk/src/include,
trunk/src/include/.cvsignore, trunk/src/include/openct,
trunk/src/include/openct/.cvsignore, trunk/src/pcsc,
trunk/src/pcsc/.cvsignore, trunk/src/tools,
trunk/src/tools/.cvsignore: Add .cvsignore files
2003-08-20 09:54 aj
* trunk/doc/openct.html, trunk/doc/openct.xml: Improvements and
spelling fixes by Ville Skytt��. Note: The HTMl changes are
quite big, as someone else has a slightly different toolchain,
with slightly different results, I guess. things like moving
</a> to a new line. If you know hoe we can avoid this, please
let me know.
2003-08-18 12:31 okir
* trunk/src/ifd/ifd-kaan.c: - support for sync ICCs
* trunk/src/ifd/proto-sync.c: - allow ifd_sync_detect_icc to be
called with NULL atr ptr
* trunk/src/ifd/internal.h: - made ifd_sync_probe_memory_size
public
2003-08-18 06:14 aj
* trunk/configure.ac: restore tools/ subdir, as the change to
remove it was incomplete and broke the build process.
2003-08-15 11:51 aet
* trunk/Makefile.am: Add ANNOUNCE to distribution tarball
2003-08-15 11:11 okir
* trunk/src/ctapi/Makefile.am, trunk/src/ctapi/ctapi.c: - New
CTAPI implementation from Michael Haardt
2003-08-15 10:53 okir
* trunk/src/ifd/ifd-kaan.c, trunk/src/ifd/internal.h,
trunk/src/ifd/proto-t1.c, trunk/src/ifd/protocol.c,
trunk/src/include/openct/driver.h,
trunk/src/include/openct/ifd.h: - use ifd_protocol_resynchronize
to request t=1 resync
2003-08-15 10:11 okir
* trunk/src/tools/openct-tool.c: - previous changes broke printing
async ATRs
2003-08-13 09:55 okir
* trunk/configure.ac, trunk/src/ct/client.c,
trunk/src/ifd/Makefile.am, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/ifd-towitoko.c, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h, trunk/src/ifd/process.c,
trunk/src/ifd/proto-sync.c, trunk/src/ifd/protocol.c,
trunk/src/ifd/reader.c, trunk/src/include/openct/driver.h,
trunk/src/include/openct/ifd.h,
trunk/src/include/openct/openct.h,
trunk/src/include/openct/protocol.h: - initial support for
synchronous ICCs
2003-08-13 09:50 okir
* trunk/src/tools/openct-tool.c: - added command to dump sync ICCs
2003-08-13 09:49 okir
* trunk/src/ct/socket.c, trunk/src/ifd/ifdhandler.c: - increased
default socket buffer size
2003-08-13 09:48 okir
* trunk/src/include/openct/socket.h: - allow to TLV encode more
than 255 bytes of data - specify default socket buffer size
2003-08-13 09:47 okir
* trunk/src/ct/tlv.c, trunk/src/include/openct/tlv.h: - allow to
TLV encode more than 255 bytes of data
2003-08-13 09:45 okir
* trunk/src/ifd/serial.c: - added some debugging output
2003-08-13 09:44 okir
* trunk/src/ifd/proto-t1.c: - Perform a resynch if the initial
state is RESYNCH
2003-08-13 08:37 okir
* trunk/src/ct/error.c: - fixed typo in previous patch
2003-08-13 06:54 okir
* trunk/src/ct/error.c: - implemented ct_strerror
* trunk/src/include/openct/error.h: - additional error code
2003-08-12 16:13 okir
* trunk/src/ifd/ifd-eutron.c, trunk/src/ifd/sys-linux.c: - fixed a
few compiler warnings
2003-08-11 21:03 aj
* trunk/src/ifd/conf.c: fix END_OF_FILE comparison on ppc.
2003-08-08 20:46 okir
* trunk/ANNOUNCE: - Added announcement
2003-08-07 18:13 aj
* trunk/etc/hotplug.openct.in: fix hotplug script. assume it is
always called for usb devices.
2003-08-05 15:36 aj
* trunk/src/ifd/ifd-eutron.c: Sleep between retries for 0.1 s key
generation completed so far within 20 seconds.
2003-08-05 15:35 aj
* trunk/src/ifd/proto-t0.c: increase timeout, as generating keys
can take more than 40 seconds.
2003-08-01 12:53 okir
* trunk/src/ifd/proto-t1.c: - Fixed size_t vs unsigned int mixup
(barfs on 64bit archs)
2003-08-01 10:58 aj
* trunk/configure.ac, trunk/src/ifd/sys-linux.c: autoconf test for
new / old linux usb structures.
2003-08-01 08:26 aj
* trunk/src/include/openct/ifd.h: undo a bogus change.
2003-08-01 07:11 aj
* trunk/src/include/openct/apdu.h,
trunk/src/include/openct/buffer.h,
trunk/src/include/openct/conf.h,
trunk/src/include/openct/device.h,
trunk/src/include/openct/driver.h,
trunk/src/include/openct/error.h,
trunk/src/include/openct/ifd.h,
trunk/src/include/openct/logging.h,
trunk/src/include/openct/openct.h,
trunk/src/include/openct/pathnames.h,
trunk/src/include/openct/protocol.h,
trunk/src/include/openct/socket.h,
trunk/src/include/openct/tlv.h: defines in headerfiles should
reflect the filename. i.e. #include a/b.h -> #ifndef A_B_H ...
2003-07-31 19:27 aj
* trunk/src/ifd/sys-linux.c: looks like that change was done in
2.5.2
http://www.kernel.org/pub/linux/kernel/people/gregkh/usb/2.5/usb-devrequest-2.5.2-pre9.patch
2003-07-31 18:29 aj
* trunk/src/ifd/sys-linux.c: My debian unstable headers are 2.4.20
and have the old structure - off by one I guess.
2003-07-31 12:51 okir
* trunk/doc/Makefile.am: - build fix for systems that dont have
docbook.xsl
2003-07-31 11:55 okir
* trunk/src/ifd/sys-linux.c: - make it build on 2.4.21
2003-07-27 16:38 aj
* trunk/src/ifd/proto-t1.c: further cleanup of t1 / error / resync
handling.
2003-07-23 19:15 aj
* trunk/src/tools/openct-tool.c: add "rwait" command to wait for a
reader. useful for hot plugging.
2003-07-23 15:27 aj
* trunk/configure.ac: fix usb / openct-control / cold plugging.
this time realy.
2003-07-23 15:05 aj
* trunk/src/tools/openct-control.c: #include "config.h" is
required, as #ifdef HAVE_LIBUSB is used.
2003-07-23 14:58 aj
* trunk/Makefile.am: remove config.status on "make distclean".
2003-07-22 21:39 aj
* trunk/etc/hotplug.openct.in: changes $1 to $TYPE, as at least
mandrake does not pass a first argument. Also we could change it
to "usb" since our hotplug currently is only called for usb
devices.
2003-07-22 15:42 aj
* trunk/doc/openct.html, trunk/doc/openct.xml,
trunk/etc/Makefile.am: Do not install openct.conf, so we don't
overwrite valuable configuration. Do not install init script, so
we don't overwrite valuable configuration. Add documentation how
to install these files.
2003-07-22 14:50 aj
* trunk/src/tools/openct-tool.c: fix usage text: main folder is
selected by "mf" argument.
2003-07-22 14:49 aj
* trunk/etc/Makefile.am: allways install openct.conf in /etc, as
openct will always look for it in /etc.
2003-07-22 14:44 aj
* trunk/etc/init-script.in: fixed .../sbin/sbin/... issue.
2003-07-21 12:59 aj
* trunk/doc/openct.html, trunk/doc/openct.xml: add missing id, fix
typo.
2003-07-21 12:52 aj
* trunk/doc/openct.html, trunk/doc/openct.xml: small updates,
mostly adding id's, removed print-atr, added Eutron
CryptoIdendity IT-Sec documentation.
2003-07-21 11:11 aj
* trunk/src/ifd/ifd-egate.c, trunk/src/ifd/ifd-etoken.c,
trunk/src/ifd/ifd-ikey3k.c, trunk/src/ifd/serial.c,
trunk/src/include/openct/device.h: add cts detection to serial
device handler. the drivers return the atr length in the reset
function. make that obvious.
2003-07-21 11:10 aj
* trunk/src/ifd/ifd-eutron.c: Eutron driver is now working with
these changes.
* trunk/src/ifd/proto-t1.c: new fixed and clean resync handling.
2003-07-21 11:09 aj
* trunk/doc/openct.html, trunk/doc/openct.xml: markus friedl
helped with the bsd port.
2003-07-21 11:08 aj
* trunk/etc/openct.conf.in: change the config file, so people do
not need to edit it.
2003-07-19 16:28 aj
* trunk/Makefile.am: Include LICENSE in tar file. (*party*
*finaly* *we*have*a*license* :-)
2003-07-19 16:06 okir
* trunk/LICENSE: - Added license
2003-07-19 10:48 aj
* trunk/Makefile.am, trunk/README, trunk/bootstrap,
trunk/configure.ac: Set automake option via Makefile.am remove
requirement for automake, remove requirement comments from
bootstrap, add pointer to docs/opensc.html to README.
2003-07-17 13:16 aj
* trunk/src/ct/socket.c, trunk/src/ifd/modules.c,
trunk/src/ifd/serial.c, trunk/src/ifd/sys-bsd.c: Improvements
for the *BSD port.
2003-07-17 10:55 aj
* trunk/configure.ac: forgot )
2003-07-17 10:47 aj
* trunk/src/tools/openct-control.c: Disable coldplugging unless
libusb is available.
2003-07-17 10:45 aj
* trunk/configure.ac: add HAVE_LIBUSB if it is available.
2003-07-17 10:38 aj
* trunk/configure.ac: fix order.
2003-07-17 10:36 aj
* trunk/configure.ac: 1.5.* does not support new style automake
init.
2003-07-17 10:32 aj
* trunk/bootstrap: use only autoreconf, no need to call libtoolize
etc.
2003-07-16 20:29 aj
* trunk/src/ifd/proto-t1.c: RESYNC code is buggy. now it works,
but is very ugly.
2003-07-15 09:40 aj
* trunk/src/ifd/ifd-eutron.c: Add driver for Eutron Crypto
Idendity (IT-Sec, maybe others). Still work in progress, not
working :-(
2003-07-15 09:13 aj
* trunk/src/ifd/Makefile.am, trunk/src/ifd/init.c: Initial eutron
support (defunct)
2003-07-15 09:11 aj
* trunk/src/tools/openct-control.c: make coldplugging optional. -n
will disable it.
2003-07-15 08:22 aj
* trunk/src/ifd/sys-bsd.c: Initial BSD support (still incomplete /
not working).
2003-07-15 08:21 aj
* trunk/src/ifd/Makefile.am: Initial BSD support (still incomplete)
2003-07-15 08:17 aj
* trunk/src/ifd/internal.h, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/usb.c, trunk/src/include/openct/device.h: all
parameters of the usb control request are unsigned.
2003-07-15 08:14 aj
* trunk/bootstrap, trunk/configure.ac, trunk/etc/Makefile.am:
configure/makefile fixes: - require autoconf 2.57 - require
automake 2.7.6 - test for lib dl (not required on *bsd) - test
for lib usb (but code currently does not stop if it is not
found. currently libusb is necessary, but could be changed.)
2003-07-12 17:05 aj
* trunk/Makefile.am: Include bootstrap in distribution tar file.
2003-07-10 10:34 aj
* trunk/configure.ac: updates configure to new init syntax. set
automake strictness to foreign
2003-07-05 15:46 aj
* trunk/doc/openct.html, trunk/doc/openct.xml: Even more
documentation updates.
2003-07-05 15:30 aj
* trunk/doc/openct.html, trunk/doc/openct.xml: Documentation
update: - list all drivers, try to give a status. - add missing
section on installation with hotplug utils (it somehow got lost,
usbtoken had more detailed instructions).
2003-07-03 19:46 aj
* trunk/doc/Makefile.am: Fix typo in makefile (s/sc/ct/g)
2003-07-03 19:24 aj
* trunk/doc/openct.html, trunk/doc/openct.xml: how could cvs mess
this up? the last version was very, very buggy.
2003-07-03 19:13 aj
* trunk/doc/Makefile.am, trunk/doc/openct.css,
trunk/doc/openct.html, trunk/doc/openct.xml,
trunk/doc/openct.xsl: Improved documentation: - integrated what
I had already documented for usbtoken. - deleted duplicates,
improved some small parts.
2003-07-02 15:01 aj
* trunk/doc/openct.html, trunk/doc/openct.xml: added some
documentation on security and troubleshooting. still very
incomplete :-(
2003-06-26 16:49 aj
* trunk/doc/Makefile.am, trunk/doc/openct.html: run tidy on html
files (ignore if tidy is not available). tidy html file, so it
is human readable.
2003-06-25 08:20 aj
* trunk/src/ifd/sys-linux.c: reference to usb.h is never used.
2003-06-25 08:16 aj
* trunk/doc/Makefile.am, trunk/doc/openct.html: Ease the pain for
developers: add the html document to cvs. I will always update
both, so even other developers don't need to have docbook dtd,
tools, stylesheets installed.
2003-06-25 08:06 aj
* trunk/src/ifd/Makefile.am: libusb is not used here at all, no
need to link with it.
* trunk/src/ifd/Makefile.am: Don't forget the header files,
without them in the dist tarball it will not compile. added
ctbcs.h
2003-06-25 08:05 aj
* trunk/src/ifd/sys-linux.c: return the number of bytes send or
received, not len.
2003-06-23 12:50 okir
* trunk/src/ct/client.c, trunk/src/ifd/Makefile.am,
trunk/src/ifd/ctbcs.c, trunk/src/ifd/ctbcs.h,
trunk/src/ifd/ifd-ikey3k.c, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/process.c, trunk/src/ifd/reader.c,
trunk/src/include/openct/driver.h,
trunk/src/include/openct/ifd.h,
trunk/src/include/openct/openct.h,
trunk/src/include/openct/protocol.h: - added PERFORM VERIFY stuff
* trunk/src/ct/buffer.c, trunk/src/include/openct/buffer.h: -
added deferred overrun check
2003-06-23 12:49 okir
* trunk/src/ifd/proto-t1.c: - attempt at better WTX handling
2003-06-23 12:48 okir
* trunk/src/include/openct/error.h: - more error codes
2003-06-16 11:32 okir
* trunk/src/ifd/sys-linux.c: - fixed return value of usb_control
2003-06-15 12:38 okir
* trunk/src/include/openct/device.h: - added
ifd_serial_get_{dsr,dtr}
2003-06-15 12:37 okir
* trunk/src/ifd/ifd-cardman.c, trunk/src/ifd/ifd-egate.c,
trunk/src/ifd/ifd-kaan.c, trunk/src/ifd/reader.c,
trunk/src/ifd/sys-linux.c: - get rid of compiler wwarnings
2003-06-15 12:36 okir
* trunk/src/ifd/proto-t1.c: - resync after t1 error and retry
command
2003-06-14 19:53 okir
* trunk/src/ifd/reader.c: - minor cosmetic changes
* trunk/src/ifd/ifd-cardman.c: - some T=0 stuff already working
* trunk/src/tools/openct-tool.c: - cryptoflex needs special class
byte in select file
2003-06-14 17:19 okir
* trunk/etc/openct.conf.in: - added entry for omnikey cardman 2020
2003-06-14 17:17 okir
* trunk/src/tools/openct-tool.c: - fixed usage message
2003-06-14 17:16 okir
* trunk/src/ifd/ifd-egate.c, trunk/src/ifd/ifd-etoken.c,
trunk/src/ifd/ifd-ikey3k.c, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h, trunk/src/ifd/proto-t0.c,
trunk/src/ifd/serial.c, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/usb.c, trunk/src/ifd/utils.c: - redid usb_control
handling
* trunk/src/ifd/Makefile.am, trunk/src/ifd/ifd-cardman.c: - added
cardman 2020 driver
2003-06-14 17:14 okir
* trunk/src/include/openct/device.h: - redid usb_control stuff
* trunk/src/ifd/reader.c, trunk/src/include/openct/ifd.h: - added
ifd_atr_complete
2003-06-14 17:13 okir
* trunk/src/ct/mainloop.c: - properly initialize socket list head
2003-06-02 21:23 okir
* trunk/src/ifd/ifd-kaan.c: - more effective polling card_status
polling (use FREEZE command)
2003-06-02 21:22 okir
* trunk/src/ifd/serial.c: - Added ifd_serial_get_{dsr,dtr}
2003-05-27 15:27 aj
* trunk/src/pcsc/Makefile.am: smaller ifdef context does not
change anything, but makes older automake versions happy.
2003-05-26 09:31 aj
* trunk/Makefile.am, trunk/configure.ac: move autoconf helper
files to tools/ subdirectory.
2003-05-24 19:28 aj
* trunk/etc/Makefile.am, trunk/etc/hotplug.openct,
trunk/etc/hotplug.openct.in, trunk/etc/init-script,
trunk/etc/init-script.in, trunk/etc/openct.conf,
trunk/etc/openct.conf.in: replaces files with .in files:
Makefile will substitute SBINDIR for the sbin dir.
2003-05-23 10:03 okir
* trunk/src/ifd/proto-t0.c: - inserted a usleep(10msec) when
receiving a wait extension character
2003-05-22 20:56 okir
* trunk/src/ifd/ifd-egate.c: - fix for APDUs with 4 bytes
(Chaskiel)
2003-05-19 15:48 okir
* trunk/src/ifd/proto-t1.c: - properly retry operation if recv
and/or checksum failed
2003-05-19 15:45 okir
* trunk/src/ifd/proto-t1.c: - resynch after all t1 errors
2003-05-19 14:45 okir
* trunk/src/ifd/ifdhandler.c: - updated usage message
2003-05-19 14:44 okir
* trunk/src/ifd/proto-t1.c: - change max recv buffer handling in
t1_xcv
2003-05-19 14:16 okir
* trunk/src/ct/tlv.c: - avoid gcc warnings
2003-05-19 12:42 aj
* trunk/TODO: openct-control is noisy.
* trunk/src/ifd/Makefile.am, trunk/src/ifd/device.c,
trunk/src/ifd/ifd-egate.c, trunk/src/ifd/ifd-etoken.c,
trunk/src/ifd/ifd-ikey3k.c, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/ifd-towitoko.c, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h, trunk/src/ifd/serial.c,
trunk/src/ifd/usb.c, trunk/src/ifd/utils.c: new driver ikey3k.
changed send/recv buffer to unsigned char*. improved logging in
usb.c
2003-05-19 12:41 aj
* trunk/src/include/openct/device.h,
trunk/src/include/openct/driver.h: send and recv should have a
unsigned char* buffer, not void* buffer.
* trunk/etc/init-script, trunk/etc/openct.conf: new init script.
new ikey3k in openct.conf put openct.conf entries in order.
2003-05-16 16:08 aj
* trunk/Makefile.am, trunk/configure.ac, trunk/doc,
trunk/doc/Makefile.am, trunk/doc/openct.xml,
trunk/etc/Makefile.am, trunk/src/pcsc/Makefile.am: Added
documentation. src/pcsc: fix rename in Makefile.am
2003-05-15 21:17 aj
* trunk/etc/hotplug.openct: add demo hotplug script.
2003-05-15 21:16 aj
* trunk/etc/Makefile.am: added demo hotplug script
2003-05-14 18:57 okir
* trunk/src/tools/openct-control.c: - added status command
2003-05-14 06:51 okir
* trunk/src/ctapi/Makefile.am, trunk/src/ifd/Makefile.am,
trunk/src/pcsc/Makefile.am: - fixed botched build changes
2003-05-12 09:09 okir
* trunk/src/pcsc/Makefile.am: - renamed module as suggested by aj
2003-05-12 09:06 okir
* trunk/src/ct/libopenct.pc.in: - fixed cflags
2003-05-12 09:05 okir
* trunk/src/ct/Makefile.am: - added pkgconfig target
* trunk/etc/openct.conf: - another etoken ID
2003-05-12 09:04 okir
* trunk/src/ifd/Makefile.am: - moved ifdhandler to /sbin
2003-05-12 08:29 okir
* trunk/src/ctapi/Makefile.am: - renamed module as suggested by aj
2003-05-12 08:26 okir
* trunk/src/ifd/Makefile.am, trunk/src/ifd/print-atr.c: - nixed
print-atr
2003-05-08 11:40 aj
* trunk/src/include/Makefile.am, trunk/src/pcsc/Makefile.am:
remove generated files in "make maintainer-clean".
2003-05-08 11:01 okir
* trunk/src/pcsc/ifdhandler.h: - missing header, required
2003-05-08 10:59 okir
* trunk/configure.ac, trunk/src/ct/libopenct.pc.in: - automakefied
thanks to Andreas Jellinghaus
2003-05-08 10:49 okir
* trunk/AUTHORS, trunk/Makefile, trunk/Makefile.am, trunk/NEWS,
trunk/bootstrap, trunk/etc/Makefile.am, trunk/src/Makefile,
trunk/src/Makefile.am, trunk/src/ct/Makefile,
trunk/src/ct/Makefile.am, trunk/src/ctapi/Makefile,
trunk/src/ctapi/Makefile.am, trunk/src/ifd/Makefile,
trunk/src/ifd/Makefile.am, trunk/src/include/Makefile,
trunk/src/include/Makefile.am,
trunk/src/include/openct/Makefile,
trunk/src/include/openct/Makefile.am, trunk/src/pcsc/Makefile,
trunk/src/pcsc/Makefile.am, trunk/src/pcsc/pcsc.c,
trunk/src/tools/Makefile, trunk/src/tools/Makefile.am: -
automakefied thanks to Andreas Jellinghaus
2003-04-17 18:02 okir
* trunk/src/ifd/proto-t1.c: - t=1: fixed handling of S-block
requests
2003-04-16 11:04 okir
* trunk/src/ifd/proto-t0.c: - give slow operations a little more
leeway
2003-04-12 21:26 okir
* trunk/README, trunk/etc/openct.conf, trunk/src/ifd/Makefile,
trunk/src/ifd/ifd-egate.c, trunk/src/ifd/init.c: - Merged egate
driver from Chaskiel M Grundman
2003-04-11 15:31 okir
* trunk/TODO: Update
2003-04-11 15:30 okir
* trunk/src/include/openct/error.h: - added IFD_ERROR_NOT_CONNECTED
2003-04-11 15:29 okir
* trunk/src/ct/socket.c: - SIGPIPE protection when writing to
socket
2003-04-11 13:22 okir
* trunk/src/ifd/ifdhandler.c, trunk/src/ifd/reader.c,
trunk/src/include/openct/ifd.h: - don't poll for card status
while client is talking to card (slows things down too much)
2003-04-11 13:21 okir
* trunk/src/ifd/proto-t1.c: - fix for linux usb
2003-04-10 18:40 okir
* trunk/src/ct/error.c, trunk/src/ct/status.c,
trunk/src/include/openct/Makefile: - build fixes for newer gcc
2003-04-10 14:15 okir
* trunk/TODO, trunk/src/ct/client.c, trunk/src/ifd/process.c,
trunk/src/ifd/reader.c, trunk/src/include/openct/ifd.h,
trunk/src/include/openct/protocol.h: - added a bunch of
functions to ifd protocol
2003-04-10 13:50 okir
* trunk/TODO, trunk/src/ifd/reader.c,
trunk/src/include/openct/driver.h: - added card_eject
2003-04-10 13:46 okir
* trunk/TODO: Update
* trunk/src/Makefile: - daemon/ moved to control/
2003-04-10 13:45 okir
* trunk/src/ifd/ifdhandler.c: - clean status file slot on exit
* trunk/src/ct/client.c: - added ct_reader_info
* trunk/src/tools/openct-tool.c: - cleanup; added wait command
2003-04-10 13:28 okir
* trunk/src/include/openct/ifd.h,
trunk/src/include/openct/openct.h,
trunk/src/include/openct/pathnames.h: Update
2003-04-10 13:24 okir
* trunk/src/tools/Makefile: - updated install target
2003-04-10 13:20 okir
* trunk/src/tools/openct-control.c: - ifdmaster becomes
openct-control
2003-04-10 13:19 okir
* trunk/src/ifd/locks.c: - use ifd_debug instead of ct_debug
* trunk/src/ifd/ifdhandler.c: - become a daemon
2003-04-10 13:18 okir
* trunk/src/ct/status.c: - use lock file while allocating slot in
status file
2003-04-10 11:53 okir
* trunk/src/tools/Makefile: - openct-control obsolete
2003-04-10 11:51 okir
* trunk/src/ifd/manager.c, trunk/src/tools/openct-tool.c: -
renamed IFD_MAX_READERS -> OPENCT_MAX_READERS
* trunk/src/tools/openct-control.c: - another day, another rewrite
2003-04-10 11:49 okir
* trunk/src/ifd/ifdhandler.c: - poll for card status
* trunk/src/ifd/ifd-kaan.c: - renamed IFD_MAX_SLOTS ->
OPENCT_MAX_SLOTS
2003-04-10 11:48 okir
* trunk/src/ifd/reader.c: - removed pid field from ifd_reader_t
* trunk/src/ifd/ifd-towitoko.c: - activate reader prior to reset
2003-04-10 11:47 okir
* trunk/src/ct/Makefile, trunk/src/ct/client.c,
trunk/src/ct/status.c: - Put reader and slot status into public
status file
2003-04-09 17:20 okir
* trunk/src/ifd/Makefile: - install ifdhandler, too
2003-04-09 15:40 okir
* trunk/Makefile, trunk/src/Makefile, trunk/src/ct/Makefile,
trunk/src/ctapi/Makefile, trunk/src/ifd/Makefile,
trunk/src/include/Makefile, trunk/src/include/openct/Makefile,
trunk/src/pcsc/Makefile, trunk/src/tools/Makefile: - added
install target
2003-04-09 15:30 okir
* trunk/src/ct/client.c, trunk/src/ct/socket.c,
trunk/src/ifd/conf.c, trunk/src/ifd/internal.h,
trunk/src/include/openct/Makefile: - moved around include files
2003-04-09 15:15 okir
* trunk/README: Update
2003-04-09 15:10 okir
* trunk/src/ifd/ifd.conf: obsolete
2003-04-09 15:04 okir
* trunk/etc/openct.conf, trunk/etc/opensc.conf: - check in right
config file
2003-04-09 15:00 okir
* trunk/src/ct/Makefile, trunk/src/ct/mainloop.c,
trunk/src/ct/socket.c, trunk/src/ifd/Makefile,
trunk/src/ifd/conf.c, trunk/src/ifd/device.c,
trunk/src/ifd/driver.c, trunk/src/ifd/hotplug.c,
trunk/src/ifd/ifd-etoken.c, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/ifd-towitoko.c, trunk/src/ifd/ifdhandler.c,
trunk/src/ifd/ifdhandler.h, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h, trunk/src/ifd/locks.c,
trunk/src/ifd/process.c, trunk/src/ifd/reader.c,
trunk/src/ifd/sys-linux.c, trunk/src/include/openct/conf.h,
trunk/src/include/openct/device.h,
trunk/src/include/openct/driver.h,
trunk/src/include/openct/ifd.h,
trunk/src/include/openct/pathnames.h,
trunk/src/include/openct/server.h,
trunk/src/tools/openct-control.c: - another major butchery for
hotplug support
2003-04-09 12:36 okir
* trunk/src/tools/Makefile: - added openct-control
2003-04-09 12:33 okir
* trunk/src/ct/mainloop.c, trunk/src/ifd/ifdhandler.c,
trunk/src/tools/openct-control.c: - Restructuring for hotplug
2003-04-09 12:32 okir
* trunk/src/ifd/device.c, trunk/src/ifd/hotplug.c,
trunk/src/ifd/internal.h, trunk/src/ifd/manager.c,
trunk/src/ifd/reader.c, trunk/src/include/openct/device.h,
trunk/src/include/openct/ifd.h: - USB hotplug related changes
2003-04-09 12:31 okir
* trunk/src/ct/socket.c, trunk/src/include/openct/socket.h: -
added socket permission parameter to ct_socket_listen - added
puts/gets style functions for sending/receiving strings -
ct_socket_flsbuf(..., 2) does a shutdown(SEND)
2003-04-09 12:30 okir
* trunk/src/include/openct/error.h: - ERROR_NO_MEMORY
* trunk/src/ct/error.c, trunk/src/include/openct/logging.h: -
support logging to syslog
2003-04-09 12:29 okir
* trunk/src/ct/client.c, trunk/src/include/openct/openct.h: -
added ct_master_control
* trunk/src/ct/buffer.c, trunk/src/include/openct/buffer.h: -
added gets/puts functions
2003-04-08 18:52 okir
* trunk/src/tools/openct-control.c: - started on hotplug support
2003-04-08 18:51 okir
* trunk/src/ifd/internal.h, trunk/src/ifd/manager.c,
trunk/src/ifd/usb.c: - added usb_poll_presence
* trunk/src/ct/socket.c, trunk/src/include/openct/socket.h: -
socket cleanup
2003-04-08 18:12 okir
* trunk/src/ifd/internal.h, trunk/src/ifd/serial.c,
trunk/src/ifd/usb.c: - added fd to ifd_device_t; got rid of
special types ifd_serial_t and ifd_usb_t
2003-04-08 15:27 okir
* trunk/TODO: - update
2003-04-08 15:13 okir
* trunk/etc, trunk/etc/opensc.conf: - added sample config file
2003-04-08 15:12 okir
* trunk/src/ifd/Makefile, trunk/src/ifd/conf.c,
trunk/src/ifd/confparse.c, trunk/src/ifd/hotplug.c,
trunk/src/ifd/init.c, trunk/src/ifd/internal.h,
trunk/src/ifd/print-atr.c, trunk/src/ifd/reader.c,
trunk/src/ifd/sys-linux.c, trunk/src/include/openct/conf.h,
trunk/src/include/openct/ifd.h,
trunk/src/tools/openct-control.c, trunk/src/tools/openct-tool.c:
- changed config file handling and format
2003-04-08 14:17 okir
* trunk/src/ct/Makefile, trunk/src/ct/client.c,
trunk/src/ct/error.c: - moved conf.c back to libifd
2003-04-08 14:14 okir
* trunk/src/ct/error.c, trunk/src/ifd/conf.c: - cleanup
* trunk/src/ct/client.c: - use hard-coded socket dir
2003-04-08 10:54 okir
* trunk/TODO: - added TODO list
2003-04-08 10:45 okir
* trunk/src/ctapi/ctapi.c, trunk/src/ifd/apdu.c,
trunk/src/ifd/ifd-kaan.c, trunk/src/ifd/internal.h,
trunk/src/ifd/print-atr.c, trunk/src/ifd/process.c,
trunk/src/ifd/proto-t0.c, trunk/src/ifd/proto-t1.c,
trunk/src/ifd/proto-trans.c, trunk/src/ifd/protocol.c,
trunk/src/ifd/reader.c, trunk/src/include/openct/apdu.h,
trunk/src/include/openct/driver.h,
trunk/src/include/openct/error.h,
trunk/src/include/openct/ifd.h, trunk/src/pcsc/pcsc.c: - removed
last traces of ifd_apdu_t
2003-04-08 09:00 okir
* trunk/src/ifd/protocol.c, trunk/src/include/openct/ifd.h: -
added ifd_protocol_get_parameter
* trunk/src/ifd/proto-t1.c: - Fixed S-Block and error block
handling
2003-04-08 08:59 okir
* trunk/src/ifd/ifd-kaan.c: - misc Kaan fixes
2003-04-07 21:15 okir
* trunk/src/ifd/ifd-kaan.c: - fix display command
2003-04-07 15:38 okir
* trunk/src/pcsc/pcsc.c: - core.h -> ifd.h rename
* trunk/src/ctapi/ctapi.c: - apdu changes
2003-04-07 15:31 okir
* trunk/src/ct/error.c, trunk/src/include/openct/logging.h: -
added ct_strerror
2003-04-07 15:30 okir
* trunk/src/ifd/proto-t0.c: - renamed t0_data -> t0_state
* trunk/src/ifd/confparse.c, trunk/src/ifd/driver.c,
trunk/src/ifd/ifd-etoken.c, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/ifd-towitoko.c, trunk/src/ifd/internal.h,
trunk/src/ifd/manager.c, trunk/src/ifd/proto-t0.c,
trunk/src/ifd/proto-t1.c, trunk/src/ifd/protocol.c,
trunk/src/ifd/usb.c: - debugging fixes
2003-04-07 15:05 okir
* trunk/src/ct/client.c: - bugfix for ct_transact
* trunk/src/ifd/apdu.c, trunk/src/ifd/device.c,
trunk/src/ifd/ifd-kaan.c, trunk/src/ifd/ifd-towitoko.c,
trunk/src/ifd/internal.h, trunk/src/ifd/print-atr.c,
trunk/src/ifd/proto-t0.c, trunk/src/ifd/proto-t1.c,
trunk/src/ifd/protocol.c, trunk/src/include/openct/apdu.h,
trunk/src/include/openct/device.h,
trunk/src/include/openct/ifd.h: - first steps to get rid of
ct_apdu_t
* trunk/src/ifd/usb.c: - minor debug fix
* trunk/src/ifd/utils.c: - ct_hexdump: return empty string for
len=0
2003-04-07 12:03 okir
* trunk/src/ifd/internal.h, trunk/src/ifd/process.c,
trunk/src/tools/openct-control.c: - renamed core.h -> ifd.h
* trunk/src/ifd/ifd-etoken.c, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/ifd-towitoko.c, trunk/src/ifd/internal.h,
trunk/src/include/openct/device.h: - renamed core.h -> ifd.h
2003-04-07 11:55 okir
* trunk/src/ct/buffer.c, trunk/src/ct/client.c,
trunk/src/ct/error.c, trunk/src/ct/socket.c, trunk/src/ct/tlv.c,
trunk/src/ctapi/ctapi.c, trunk/src/ifd/conf.c,
trunk/src/ifd/confparse.c, trunk/src/ifd/driver.c,
trunk/src/ifd/hotplug.c, trunk/src/ifd/ifd-etoken.c,
trunk/src/ifd/ifd-kaan.c, trunk/src/ifd/ifd-towitoko.c,
trunk/src/ifd/internal.h, trunk/src/ifd/locks.c,
trunk/src/ifd/manager.c, trunk/src/ifd/modules.c,
trunk/src/ifd/print-atr.c, trunk/src/ifd/process.c,
trunk/src/ifd/proto-t0.c, trunk/src/ifd/proto-t1.c,
trunk/src/ifd/proto-trans.c, trunk/src/ifd/protocol.c,
trunk/src/ifd/reader.c, trunk/src/ifd/serial.c,
trunk/src/ifd/sys-linux.c, trunk/src/ifd/usb.c,
trunk/src/ifd/utils.c, trunk/src/include/openct/buffer.h,
trunk/src/include/openct/conf.h,
trunk/src/include/openct/error.h,
trunk/src/include/openct/logging.h,
trunk/src/include/openct/openct.h,
trunk/src/include/openct/protocol.h,
trunk/src/include/openct/socket.h,
trunk/src/include/openct/tlv.h,
trunk/src/tools/openct-control.c, trunk/src/tools/openct-tool.c:
- the great rename, part 2
2003-04-07 11:43 okir
* trunk/src/ct/Makefile, trunk/src/ct/buffer.c,
trunk/src/ct/client.c, trunk/src/ct/error.c,
trunk/src/ct/socket.c, trunk/src/ct/tlv.c,
trunk/src/ctapi/ctapi.c, trunk/src/ifd/Makefile,
trunk/src/ifd/conf.c, trunk/src/ifd/ifd-etoken.c,
trunk/src/ifd/ifd-kaan.c, trunk/src/ifd/ifd-towitoko.c,
trunk/src/ifd/internal.h, trunk/src/ifd/locks.c,
trunk/src/ifd/print-atr.c, trunk/src/ifd/process.c,
trunk/src/include/Makefile, trunk/src/include/openct/Makefile,
trunk/src/include/openct/device.h,
trunk/src/include/openct/ifd.h,
trunk/src/include/openct/socket.h,
trunk/src/include/openct/tlv.h, trunk/src/pcsc/pcsc.c,
trunk/src/tools/Makefile, trunk/src/tools/openct-control.c,
trunk/src/tools/openct-tool.c: - the great rename, part 1
2003-04-07 11:39 okir
* trunk/README: - Update
2003-04-07 11:30 okir
* trunk/src/ifd/process.c: - always activate reader before getting
card status (is that right?)
2003-04-07 11:29 okir
* trunk/src/ifd/ifd-towitoko.c: - debug fixes
* trunk/src/ifd/device.c: - flush serial device before transaction
* trunk/src/ct/socket.c: - implemented socket credentials
2003-04-07 11:03 okir
* trunk/src/ctapi/Makefile, trunk/src/pcsc/Makefile: - build fixes
* trunk/src/Makefile: - subdir rename
* trunk/src/tools/openct-tool.c: - update
* trunk/src/ifd/locks.c, trunk/src/ifd/process.c,
trunk/src/tools/openct-control.c: - implemented new functions
2003-04-07 11:02 okir
* trunk/src/ifd/conf.c, trunk/src/include/openct/pathnames.h: -
IFD_FOO -> OPENCT_FOO renames
* trunk/src/ct/socket.c, trunk/src/include/openct/socket.h: -
added close callback
* trunk/src/include/openct/openct.h,
trunk/src/include/openct/protocol.h: - locking related additions
2003-04-07 11:01 okir
* trunk/src/include/openct/error.h: - added a few error codes
* trunk/src/ct/client.c: - new commands
* trunk/src/include/openct/buffer.h: - compile fix
2003-04-07 11:00 okir
* trunk/src/ifd/internal.h, trunk/src/ifd/reader.c,
trunk/src/include/openct/ifd.h: - remember whether reader was
activated or not
* trunk/src/ifd/confparse.c: - use OPENCT_CONFIG_PATH instead of
hard-coded path
2003-04-07 06:42 okir
* trunk/src/ctapi/Makefile, trunk/src/pcsc/Makefile,
trunk/src/tools/Makefile: - Makefile fixes
2003-04-06 20:39 okir
* trunk/src/Makefile: - added tools subdir
2003-04-06 20:37 okir
* trunk/src/ct/Makefile, trunk/src/ct/client.c,
trunk/src/ct/socket.c, trunk/src/ct/tlv.c,
trunk/src/ifd/ifd.conf, trunk/src/ifd/process.c,
trunk/src/include/openct/ifd.h,
trunk/src/include/openct/openct.h,
trunk/src/include/openct/protocol.h,
trunk/src/include/openct/socket.h,
trunk/src/include/openct/tlv.h,
trunk/src/tools/openct-control.c, trunk/src/tools/openct-tool.c:
- changes for OpenCT resource manager
* trunk/src/ifd/proto-t1.c: - minor cleanup
2003-04-04 15:55 okir
* trunk/src/ct/Makefile, trunk/src/ct/tlv.c,
trunk/src/include/openct/protocol.h,
trunk/src/include/openct/tlv.h: - added TLV functions
2003-04-04 14:43 okir
* trunk/src/tools/openct-control.c: - forgot to call the server
loop
2003-04-04 14:34 okir
* trunk/src/include/openct/Makefile,
trunk/src/include/openct/protocol.h: - added
2003-04-04 14:29 okir
* trunk/src/include/Makefile: fixed
* trunk/Makefile: - mkdir lib
2003-04-04 14:28 okir
* trunk/src/Makefile, trunk/src/ct/Makefile,
trunk/src/ct/buffer.c, trunk/src/ct/error.c,
trunk/src/ifd/conf.c, trunk/src/ifd/process.c,
trunk/src/include/openct/buffer.h,
trunk/src/include/openct/conf.h,
trunk/src/include/openct/error.h,
trunk/src/include/openct/socket.h, trunk/src/tools,
trunk/src/tools/openct-control.c: - added resource manager code
2003-04-04 12:18 okir
* trunk/src/ifd/Makefile, trunk/src/ifd/confparse.c,
trunk/src/ifd/internal.h, trunk/src/include/openct/pathnames.h:
- added config.h
2003-04-04 12:02 okir
* trunk/src/ct/Makefile, trunk/src/ct/socket.c,
trunk/src/include/openct/socket.h: - added
2003-04-04 12:01 okir
* trunk/src/ct/buffer.c, trunk/src/include/openct/buffer.h: -
added ifd_buf_compact
2003-04-04 08:35 okir
* trunk/src/ifd/ifd-kaan.c: - fixed handling of 6100 response -
use ifd_iso_apdu_t instead of kaan_apdu_t
2003-04-04 08:25 okir
* trunk/src/Makefile: - added pcsc subdir
* trunk/src/ifd/Makefile: - fixed LDFLAGS
2003-04-03 19:27 okir
* trunk/src/pcsc, trunk/src/pcsc/Makefile, trunk/src/pcsc/pcsc.c:
- first stab at a PCSC ifd handler
2003-04-03 15:38 okir
* trunk/src/ifd/print-atr.c: - fix compile warning
2003-04-03 15:35 okir
* trunk/src/Makefile: - forgot makefile
2003-04-03 14:53 okir
* trunk/src/ifd/manager.c, trunk/src/include/openct/ifd.h: - added
ifd_reader_count to support reader enumeration
2003-04-03 14:52 okir
* trunk/src/ifd/print-atr.c: - list command to list readers
2003-04-03 12:23 okir
* trunk/src/ifd/sys-linux.c, trunk/src/ifd/usb.c: - moved
ifd_sysdep_usb_scan
2003-04-03 12:04 okir
* trunk/src/include/Makefile: - libifd directory moved
2003-04-03 12:02 okir
* trunk/src/ifd/hotplug.c, trunk/src/ifd/ifd.conf,
trunk/src/ifd/internal.h, trunk/src/ifd/print-atr.c,
trunk/src/ifd/usb.c, trunk/src/include/openct/device.h,
trunk/src/include/openct/ifd.h: - added hotplug scan on startup
* trunk/src/ifd/conf.c, trunk/src/ifd/confparse.c,
trunk/src/include/openct/conf.h: - added hotplug_scan_on_startup
* trunk/src/ifd/Makefile: - build fixes
2003-04-03 11:35 okir
* trunk/README: - added README
2003-04-03 11:23 okir
* trunk/src/ifd/ifd-etoken.c: - got rid of silly warning
2003-04-03 11:22 okir
* trunk/src/ctapi/Makefile, trunk/src/ctapi/ctapi.c,
trunk/src/ifd/Makefile, trunk/src/ifd/driver.c,
trunk/src/ifd/ifd-etoken.c, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/ifd-towitoko.c, trunk/src/ifd/init.c,
trunk/src/ifd/internal.h, trunk/src/ifd/print-atr.c,
trunk/src/ifd/proto-t0.c, trunk/src/ifd/protocol.c,
trunk/src/ifd/reader.c, trunk/src/include/openct/buffer.h,
trunk/src/include/openct/conf.h, trunk/src/include/openct/ifd.h:
- The great restructuring
* trunk/src/ifd/Makefile, trunk/src/ifd/conf.c,
trunk/src/ifd/confparse.c, trunk/src/ifd/device.c,
trunk/src/ifd/hotplug.c, trunk/src/ifd/ifd.conf,
trunk/src/ifd/manager.c, trunk/src/ifd/sys-linux.c,
trunk/src/ifd/usb.c, trunk/src/include/openct/device.h,
trunk/src/include/openct/driver.h: - added hotplug, rewrote USB
handling
2003-04-02 22:01 okir
* trunk/src/ct/buffer.c, trunk/src/ifd/conf.c,
trunk/src/ifd/confparse.c, trunk/src/ifd/driver.c,
trunk/src/ifd/ifd.conf, trunk/src/ifd/internal.h,
trunk/src/ifd/manager.c, trunk/src/ifd/print-atr.c,
trunk/src/ifd/sys-linux.c, trunk/src/ifd/usb.c: - added config
file parsing; reader registration stuff
2003-04-02 22:00 okir
* trunk/src/include/openct/ifd.h: - added
ifd_reader_by_{handle,index}
2003-04-02 17:03 okir
* trunk/src/ct/error.c, trunk/src/ifd/conf.c,
trunk/src/ifd/confparse.c, trunk/src/ifd/manager.c,
trunk/src/ifd/reader.c, trunk/src/ifd/usb.c,
trunk/src/ifd/utils.c, trunk/src/include/openct/conf.h,
trunk/src/include/openct/device.h,
trunk/src/include/openct/error.h: - added copyright message
2003-04-02 17:00 okir
* trunk/src/ifd/apdu.c, trunk/src/ifd/print-atr.c: - fix compiler
warnings
2003-04-02 16:23 okir
* trunk/src/ctapi/ctapi.c, trunk/src/ifd/reader.c,
trunk/src/include/openct/driver.h,
trunk/src/include/openct/ifd.h: - added request_icc
functionality to framework
* trunk/src/ifd/apdu.c: - fixed le=0 case
2003-04-02 16:22 okir
* trunk/src/ifd/Makefile: - fixed clean target
2003-04-02 15:20 okir
* trunk/src/ctapi/ctapi.c, trunk/src/ifd/Attic/drivers/ctapi.c,
trunk/src/ifd/internal.h: - renamed
s/ifd_reader_ctbcs/ifd_ctapi_control/
2003-04-02 15:11 okir
* trunk/src/ifd/pcsc.c: - dead
* trunk/src/ctapi/ctapi.c, trunk/src/ctapi/ctapi.h,
trunk/src/ifd/Attic/drivers/Makefile,
trunk/src/ifd/Attic/drivers/ctapi.c: - CTAPI fixes
2003-04-02 15:10 okir
* trunk/src/ifd/pcsc.c: - blah
* trunk/src/ifd/apdu.c: - added facilities to handle ISO apdus
2003-04-02 15:09 okir
* trunk/src/ifd/reader.c: - renamed ifd_shutdown to ifd_close
* trunk/src/ifd/conf.c, trunk/src/ifd/confparse.c: - added .debug
* trunk/src/ifd/proto-t0.c: - return number of bytes received
2003-04-01 07:09 okir
* trunk/src/ctapi/ctapi.h, trunk/src/ifd/Attic/drivers/ctapi.c,
trunk/src/ifd/Makefile, trunk/src/ifd/apdu.c,
trunk/src/ifd/internal.h, trunk/src/include/openct/apdu.h,
trunk/src/include/openct/ifd.h: - ctapi work
2003-03-28 22:52 okir
* trunk/src/ifd/Attic/drivers/Makefile,
trunk/src/ifd/ifd-etoken.c: - fixed compiler warning
2003-03-28 22:48 okir
* trunk/src/ifd/t1.c: - obsolete
2003-03-28 17:06 okir
* trunk/src/ctapi/ctapi.c, trunk/src/ifd/Makefile: - added ctapi.c
2003-03-28 16:59 okir
* trunk/src/ctapi, trunk/src/ctapi/ctapi.h,
trunk/src/ifd/Attic/drivers/Makefile,
trunk/src/ifd/Attic/drivers/ctapi.c, trunk/src/ifd/pcsc.c,
trunk/src/include/openct/ifd.h: - added missing prototype for
ifd_close
2003-03-28 16:20 okir
* trunk/src/ifd/print-atr.c, trunk/src/ifd/reader.c,
trunk/src/include/openct/ifd.h: - renamed ifd_icc_command to
ifd_card_command
2003-03-28 16:13 okir
* trunk/src/ifd/device.c, trunk/src/ifd/sys-linux.c,
trunk/src/include/openct/device.h: - added
ifd_device_open_channel
2003-03-28 16:02 okir
* trunk/src/ifd/ifd-etoken.c, trunk/src/ifd/ifd-kaan.c,
trunk/src/ifd/internal.h, trunk/src/ifd/protocol.c,
trunk/src/include/openct/driver.h,
trunk/src/include/openct/ifd.h: - fixed most compiler warnings
2003-03-26 22:45 okir
* trunk/src/ifd/ifd-kaan.c: - display a string when initializing CT
2003-03-26 21:42 okir
* trunk/src/ifd/internal.h, trunk/src/ifd/proto-t0.c,
trunk/src/ifd/proto-t1.c, trunk/src/ifd/proto-trans.c,
trunk/src/ifd/protocol.c: - changed DAD handling
* trunk/src/ifd/ifd-kaan.c: - select MF works now
2003-03-26 09:49 okir
* trunk/src/ifd/internal.h, trunk/src/ifd/protocol.c,
trunk/src/ifd/reader.c, trunk/src/include/openct/driver.h: -
allow drivers to handle ICC commands directly
* trunk/src/ifd/proto-t1.c: - t1_transceive returns # of bytes
received
2003-03-26 09:48 okir
* trunk/src/ifd/ifd-kaan.c: - almost works now
2003-03-26 09:47 okir
* trunk/src/include/openct/ifd.h: - changed IFD_APDU_CASE macros
2003-03-26 09:46 okir
* trunk/src/ifd/print-atr.c: - misc fixes
2003-03-26 09:45 okir
* trunk/src/ifd/Makefile, trunk/src/ifd/proto-trans.c: - added
proto-trans
2003-03-25 00:28 okir
* trunk/src/ifd/Attic/drivers/Makefile, trunk/src/ifd/ifd-kaan.c:
- added some code for Kobil Kaan
* trunk/src/ifd/serial.c: - iflags fixes
* trunk/src/ifd/protocol.c: - ifd_protocol_set_parameter
2003-03-25 00:27 okir
* trunk/src/ifd/proto-t1.c: - added IFD_PROTOCOL_T1_RESYNCH
* trunk/src/include/openct/ifd.h: - added driver data
2003-03-24 22:58 okir
* trunk/src/ifd/protocol.c: - fix compile warning
2003-03-24 21:09 okir
* trunk/src/ifd/usb.c: - added debugging code
* trunk/src/ifd/proto-t1.c: - fixed T=1
2003-03-24 21:08 okir
* trunk/src/ifd/ifd-etoken.c: - copied some magic stuff from
Andreas etoken driver
* trunk/src/include/openct/ifd.h: - added
IFD_PROTOCOL_T1_CHECKSUM_{L,C}RC
2003-03-24 21:07 okir
* trunk/src/ifd/print-atr.c: - better dump function
2003-03-21 11:28 okir
* trunk/src/ifd/protocol.c: - minor fix in ATR parsing for
protocol select
2003-03-20 21:45 okir
* trunk/src/ifd/ifd-etoken.c, trunk/src/ifd/proto-t1.c: - still
struggling to get t=1 and etoken to work
2003-03-20 13:40 okir
* trunk/src/ifd/reader.c: - Cleanup
2003-03-20 13:27 okir
* trunk/src/ifd/ifd-etoken.c: - initial stuff to get etoken working
* trunk/src/ifd/usb.c: - added usb_control - misc fixes for
scanning/opening
2003-03-20 13:26 okir
* trunk/src/include/openct/device.h: - Added struct ifd_usb_cmsg
* trunk/src/ifd/device.c: - ifd_device_open now recognizes devices
types in the name
2003-03-20 12:27 okir
* trunk/src/ifd/device.c, trunk/src/ifd/internal.h,
trunk/src/include/openct/device.h: - added device control
messages
2003-03-20 12:03 okir
* trunk/src/ifd/Makefile, trunk/src/ifd/usb.c: - started to work
on usb support
* trunk/src/ifd/Attic/drivers/Makefile,
trunk/src/ifd/ifd-etoken.c: - started to work on etoken
2003-03-20 12:02 okir
* trunk/src/include/openct/ifd.h: - add per slot reader data
* trunk/src/ifd/ifd-towitoko.c: - don't report default_protocol
2003-03-20 11:21 okir
* trunk/src/ifd/Attic/drivers/Makefile, trunk/src/ifd/Makefile,
trunk/src/ifd/device.c, trunk/src/ifd/ifd-towitoko.c,
trunk/src/ifd/print-atr.c, trunk/src/ifd/reader.c,
trunk/src/ifd/sys-linux.c, trunk/src/include/openct/device.h,
trunk/src/include/openct/driver.h: - generic ifd_open() function
added
2003-03-20 10:48 okir
* trunk/src/ifd/protocol.c, trunk/src/ifd/reader.c: - fixed ATR
handling
2003-03-19 19:36 okir
* trunk/src/ifd/proto-t0.c: - warning fixes
2003-03-19 19:35 okir
* trunk/src/ct/buffer.c, trunk/src/ifd/ifd-towitoko.c,
trunk/src/ifd/internal.h, trunk/src/ifd/print-atr.c,
trunk/src/ifd/proto-t0.c, trunk/src/ifd/proto-t1.c,
trunk/src/ifd/protocol.c, trunk/src/ifd/reader.c,
trunk/src/include/openct/driver.h,
trunk/src/include/openct/ifd.h: - new function ifd_buf_set
* trunk/src/ifd/apdu.c: - return correct Le for case 4 apdus
2003-03-19 19:34 okir
* trunk/src/ifd/Makefile: - clean also zaps application objects
2003-03-19 14:46 okir
* trunk/src/ifd/internal.h, trunk/src/ifd/proto-t0.c,
trunk/src/ifd/proto-t1.c, trunk/src/ifd/protocol.c,
trunk/src/include/openct/ifd.h: - changed signature of protocol
ops
2003-03-19 14:31 okir
* trunk/src/ct/buffer.c, trunk/src/ifd/ifd-towitoko.c,
trunk/src/ifd/proto-t0.c, trunk/src/ifd/proto-t1.c,
trunk/src/ifd/reader.c, trunk/src/ifd/serial.c: - fix misc
compiler warnings
2003-03-19 12:37 okir
* trunk/src/ifd/proto-t0.c: - more T=0 changes
* trunk/src/ifd/Makefile, trunk/src/ifd/apdu.c,
trunk/src/include/openct/ifd.h: - added ifd_apdu_case
2003-03-19 10:25 okir
* trunk/src/ifd/proto-t0.c: - t0 now compiles
* trunk/src/ct/buffer.c, trunk/src/ifd/internal.h: - added
ifd_buf_{head,tail}
2003-03-18 20:31 okir
* trunk/src/ifd/Makefile, trunk/src/ifd/proto-t0.c,
trunk/src/ifd/proto-t1.c: - rough outline for T=0
2003-03-18 19:41 okir
* trunk/src/ifd/Attic, trunk/src/ifd/Attic/drivers,
trunk/src/ifd/Attic/drivers/Makefile: - added Makefile
2003-03-18 18:36 okir
* trunk/src/ifd/ifd-towitoko.c, trunk/src/ifd/reader.c,
trunk/src/include/openct/ifd.h: - added slot fields to
ifd_reader_t
2003-03-18 18:35 okir
* trunk/src/ct/error.c: - dont print debug messages unconditionally
2003-03-18 17:42 okir
* trunk/src/ct/buffer.c, trunk/src/ct/error.c,
trunk/src/ifd/Makefile, trunk/src/ifd/conf.c,
trunk/src/ifd/confparse.c, trunk/src/ifd/device.c,
trunk/src/ifd/driver.c, trunk/src/ifd/ifd-towitoko.c,
trunk/src/ifd/internal.h, trunk/src/ifd/manager.c,
trunk/src/ifd/modules.c, trunk/src/ifd/print-atr.c,
trunk/src/ifd/proto-t1.c, trunk/src/ifd/protocol.c,
trunk/src/ifd/reader.c, trunk/src/ifd/serial.c,
trunk/src/ifd/usb.c, trunk/src/ifd/utils.c,
trunk/src/include/openct/conf.h,
trunk/src/include/openct/device.h,
trunk/src/include/openct/driver.h,
trunk/src/include/openct/error.h,
trunk/src/include/openct/ifd.h,
trunk/src/include/openct/logging.h: - we now get the ATR from
the towitoko
2003-03-17 19:01 okir
* trunk/src/ct, trunk/src/ct/buffer.c, trunk/src/ifd/Makefile,
trunk/src/ifd/internal.h, trunk/src/ifd/proto-t1.c,
trunk/src/include/openct/ifd.h: - T=1 implementation
2003-03-17 14:15 okir
* trunk/Makefile, trunk/src/include/Makefile: - new makefiles
2003-03-17 10:03 okir
* trunk/src, trunk/src/ifd, trunk/src/ifd/Makefile,
trunk/src/ifd/checksum.c, trunk/src/ifd/device.c,
trunk/src/ifd/internal.h, trunk/src/ifd/manager.c,
trunk/src/ifd/proto-t1.c, trunk/src/ifd/reader.c,
trunk/src/ifd/t1.c, trunk/src/include, trunk/src/include/openct,
trunk/src/include/openct/ifd.h: Initial revision
2003-03-17 10:03
* branches, releases, trunk: New repository initialized by cvs2svn.
|