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
|
/*
* $Id: c8ef94cd4ca07441a5454e5b08fa5c23ee80a63c $
*/
Info:
PB = Peter Bieringer <pb (at) bieringer.de>
NT = Niko Tyni <ntyni (at) iki dot fi>
ESR = Eric S. Raymond <esr (at) thyrsus dot com>
PV = Peter Volkov <pva (at) gentoo dot org>
AGP = Anthony G. Basile <basile at opensource dot dyc dot edu>
VZ = Vadim Zhukow https://github.com/grayedhttps://github.com/grayed
--------------------------------------------------------------------
20230612/PB:
tag version 4.1.0
20230609/PB:
databases/lib/libipv6calc_db_wrapper_IP2Location.c: adjustments depending on IP2Location version
databases/lib/libipv6calc_db_wrapper.c: adjustments depending on IP2Location version
20230608/PB:
databases/lib/libipv6calc_db_wrapper_IP2Location.[h|c]: add support for DB-26
databases/lib/libipv6calc_db_wrapper.c: extension for ASN from IP2Location (DB-26)
databases/lib/libipv6calc_db_wrapper.h: minor bugfix
configure[.in]: add support for -Wno-deprecated-declarations (openssl/md5 workaround)
autogen-all-variants.sh: disable static build for --enable-openssl-md5
autogen.sh: remove -Wl,--as-needed from LDFLAGS as causing issues with -S
internal databases: update
20230606/PB:
tools/IP2Location-update.sh.in: add option -S to download a specific sample file
20230112/PB:
ipv6calc/ipv6calc.c: bugfix related to ACTION_addr_to_countrycode and pipe mode
20221204/PB:
internal databases: update
tag version 4.0.2
20220730/PB:
databases/tools/create_ieee_headerfile.pl: extend hints in case of entries have to be extended in lib/libieee.h
internal databases: update
20220127/PB:
tag version 4.0.1
20220125/PB:
databases/lib/libipv6calc_db_wrapper_External.c: bugfix related to db_ptr_cache
internal databases: update
20211114/PB:
various spelling and grammar fixes (credits to Ville Skyttä)
20211020/PB:
ipv6calcweb/ipv6calcweb.cgi.in: change geonames URL to https
20211019/PB:
ipv6calcweb/ipv6calcweb.cgi.in: several cosmetic updates and fixes
databases/ieee*/Makefile: alignments related to libieee.[ch] changes
internal databases: update
tag version 4.0.0
20211003/PB:
tools/ipv6calc-create-update-ipset.sh: (add)
20210930/PB:
configure[.in]: add support for OpenSSL EVP MD5 legacy (OpenSSL 1.0.x)
lib/librfc3041.c: add support for OpenSSL EVP MD5 legacy (OpenSSL 1.0.x)
configure[.in]: try to resolve BerkeleyDB library version required for static builds
20210927/PB:
ipv6calc/ipv6calc.c(+dependent files): add option '--print-ipset <SETNAME>' to be honored by action "dbdump"
20210924/PB:
ipv6calc/ipv6calc.c: improve error message in case input and output type is given but no action autodetected
ipv6calc/ipv6calc.c: new output format ip6to4 for IPv4 addresses (also supported on action "dbdump")
20210921/PB:
*.c/*.h: complete reorg of static includes in *.h to avoid private copies where possible
20210919/PB:
internal databases: update
lib/libipaddr.c: copy also flags/prefixlengths
lib/ipv6calctypes.h ipv6calc/ipv6calc.c databases/lib/libipv6calc_db_wrapper_External.[h,c] databases/lib/libipv6calc_db_wrapper.[h,c] ipv6calc/test_ipv6calc.sh lib/ipv6calchelp.c: add new action -A dbdump
20210918/PB:
lib/libipv6addr.c: ipv6addrstruct_to_uncompaddrprefix: print prefix length if given and not suppressed by option
lib/librfc3056.c,lib/ipv6calchelp.c,ipv6calc/test_ipv6calc.sh: action conv6to4 keeps (and mask) prefix length if not suppressed by option
20210916/PB:
configure[.in]: add support for OpenSSL EVP MD5 (with precedence), add additional MD5 implementation selection options
lib/librfc3041.c: add support for OpenSSL EVP MD5
lib/ipv6calchelp.c: display linked MD5 implementation
*/Makefile[.in]: fixes related to static builds
autogen-all-variants.sh: add additional variants for OpenSSL legacy and EVP MD5
configure[.in]: define CFLAG_EXTRAS=-fPIC to fix linker issues since use of regex was introduced
20210809/PB:
ipv6calc/ipv6calc.c ipv6calc/ipv6calcoptions_local.h ipv6calc/test_ipv6calc.sh lib/ipv6calchelp.c lib/ipv6calctypes.h lib/libipv4addr.c:
add support for output of IPv4 in dot separated octal and also autodetect/parse such input
20210801/PB:
tools/DBIP-update.sh.in: add support for deleting older files (-C <days>)
20210714/PB:
tag version 3.2.0
20210712/PB:
internal databases: update
20210708/PB:
lib/librfc1884.c ipv6calc/test_ipv6calc.sh ipv6calc/test_scenarios.sh ipv6loganon/test_ipv6loganon.sh: output format fix for compressed IPv6 addresses (https://github.com/pbiering/ipv6calc/issues/28)
20210529/PB:
databases/lib/libipv6calc_db_wrapper_IP2Location.c|h: add support for blacklisting IP2Location DB25 files < 8.4.0
databases/lib/libipv6calc_db_wrapper_IP2Location.c: fix broken dedicated db selection option
Bugfixes related to "pull/20" (https://github.com/pbiering/ipv6calc/issues/25)
20210528/PB:
replace NI_MAXHOST with IPV6CALC_STRING_MAX or PATH_MAX where applicable (https://github.com/pbiering/ipv6calc/issues/24)
tools/IP2Location-update.sh[.in]: add support for 'token' authentication
databases/lib/libipv6calc_db_wrapper_IP2Location.h: add initial support for IP2Location DB25 files
autogen-support.sh: add IP2Location 8.3.0 8.3.1 8.4.0
Bugfixes related to "pull/20" (https://github.com/pbiering/ipv6calc/issues/25)
20210522/PB:
Bugfixes related to "pull/20" (https://github.com/pbiering/ipv6calc/issues/25)
tag version 3.1.1
20210518/PB:
Improve revnibble handling (TLD+NLD given given -> prefix, missing -> suffix), add related online help
tag version 3.1.0
20210516/VZ:
Fix tests on OpenBSD (https://github.com/pbiering/ipv6calc/pull/21)
20210516/PB:
Improve autodetection of nibble strings, add additional test cases, triggered by "pull/19"
Bugfixes related to "pull/20"
internal databases: update
20210515/VZ:
Shell scripts refinement (https://github.com/pbiering/ipv6calc/pull/20)
add support for compressed IPv4 addresses, like 10/8 (https://github.com/pbiering/ipv6calc/pull/19)
20210116/PB:
all */test_*.sh: enforce use of "bash" (FreeBSD regression test result)
ipv6loganon/test_ipv6loganon.sh: fix for "sed" which is not supporting \W (FreeBSD regression test result)
databases/lib/libipv6calc_db_wrapper.c databases/lib/libipv6calc_db_wrapper_MMDB.c: use different way to access union members in in6_addr (FreeBSD regression test result)
ipv6calcweb/test_ipv6calcweb_form.sh ipv6calcweb/test_ipv6calcweb.sh:
use different way of calling cgi with optional -T where not causing issues (FreeBSD regression test result)
ipv6calcweb/create_ipv6calcweb-cgi.sh: remove -T on FreeBSD (FreeBSD regression test result)
ipv6calcweb/test_ipv6calcweb.sh: skip AntiDDoS test on FreeBSD (FreeBSD regression test result)
ipv6calcweb/Makefile.in: remove explicit make of ipv6calc (FreeBSD regression test result)
autogen.sh-support.sh: autodetect GNU make if available (FreeBSD regression test result)
autogen.sh: add additional 'hint' regarding includes/libs in case of "clang" is used (FreeBSD regression test result)
autogen-all-variants.sh: skip bundled getopt/md5 + 32-bit tests (FreeBSD regression test result)
tag version 3.0.2
20210115/PB:
configure[.in]: add missing predefine ENABLE_BUNDLED_GETOPT=0 ENABLE_BUNDLED_MD5=0
20210113/PB:
ipv6calc/showinfo.c: fix for compilers < C99
20210113/PB:
internal databases: update
lib/libieee.h: add 6 new OUI28 prefixes
configure[.in]: remove obsolete and incomplete function checks
tag version 3.0.1
20210110/PB:
ipv6calc/showinfo.c: add support for wildcard in select token
ipv6loganon/ipv6loganon.c ipv6calc/ipv6calc.c: autodetect support for ANON_ANONYMIZE
ipv6calc/ipv6calc.c: do not enforce output type for revnibbles and ipv6literal in case of showinfo
ipv6calc/test_scenarios.sh: add test cases for wildcard support in select token
ipv6calc/test_ipv6calc_anonymization.sh: take use of wildcard support in select token
config.h.in databases/lib/libipv6calc_db_wrapper.c configure: don't check/use 'memcmp'
lib/libipv6addr.c: fix missing settype for extracted IPv4 address
20210109/PB:
databases/lib/libipv6calc_db_wrapper_BuiltIn.c databases/lib/libipv6calc_db_wrapper.c: fixes for case of all internal databases are disabled
configure configure.in: fix typo and builtin default, add disable-builtin option (catch-all)
autogen.sh: add test case for disabling all internal databases
ipv6calc/test_ipv6calc_anonymization.sh: skip standard anonymization tests if not supported
ipv6calc/ipv6calc.c: disable standard anonymization feature if builtin database is not enabled
autogen-all-variants.sh: add additional variants
20210108/PB:
autogen.sh: add test case for gcc -Os
lib/ipv6calctypes.h lib/libipv4addr.c lib/libipv6addr.c: fix 'maybe-uninitialized' issue found by gcc -Os
20201108/PB:
tag version 3.0.0
20201107/PB:
internal databases: update
20201019/PB:
Drop support of GeoIP(legacy) and db-ip.com(BerkeleyDB):
README README.DBIP README.GeoIP autogen.sh config.h.in configure
databases/lib/Makefile.in
databases/lib/libipv6calc_db_wrapper.c
doc/ipv6calc.[lyx|sgml|xml|html]
ipv6calc/Makefile.in ipv6calc/ipv6calc.c ipv6calc/showinfo.c
ipv6loganon/Makefile.in
ipv6logconv/Makefile.in
ipv6logstats/Makefile.in ipv6logstats/ipv6logstats.c
lib/Makefile.in lib/ipv6calccommands.h lib/ipv6calchelp.c lib/ipv6calcoptions.c lib/ipv6calcoptions_common.h
ipv6calcweb/ipv6calcweb.cgi.in
mod_ipv6calc/Makefile.in mod_ipv6calc/ipv6calc.conf mod_ipv6calc/test_mod_ipv6calc.sh
autogen-all-variants.sh: drop also support of EOL IP2Location library version
contrib/ipv6calc.spec[.in]: sync also with FedoraProject version
databases/lib/libipv6calc_db_wrapper_DBIP.[c|h]: deleted
databases/lib/libipv6calc_db_wrapper_GeoIP.[c|h]: deleted
external-fallback/GeoIP/*: deleted
external-fallback/IP2Location/*: deleted
tools/DBIP-update.sh.in: fix database directory
tools/GeoIP-update.sh.in: fix database directory
databases/lib/libipv6calc_db_wrapper_IP2Location.c: remove support of EOL IP2Location library version, adjust for 8.2.0
README.DBIP2: add additional hints
internal databases: update
20200910/PB:
mod_ipv6calc/test_mod_ipv6calc.sh: add additional test cases for new config/environment options
mod_ipv6calc/ipv6calc.conf: add info about new config/environment/debug options
mod_ipv6calc/Makefile[.in]: add additional test cases for new config/environment options
mod_ipv6calc/mod_ipv6calc.c: add new debug option IPV6CALC_DEBUG_SHOW_ENVIRONMENT, add support for new config/environment options
20200908/PB:
ipv6calcweb/ipv6calcweb.conf: unset all possible headers related to supported environment variables to avoid unexpected preset via extra headers in request
mod_ipv6calc/ipv6calc.conf: disable legacy databases GeoIP(v1) and DBIP(Berkeley) by default
databases/lib/libipv6calc_db_wrapper_External.c: stdout->stderr bugfixes, remove redundant #ifdef
mod_ipv6calc/mod_ipv6calc.c: add new debug option IPV6CALC_DEBUG_SHOW_CLIENT_IP
20200905/PB:
databases/lib/libipv6calc_db_wrapper_External.c: remove unused function, do not close database in case an error is found, log extended information instead, fix variable handling for strtok
ipv6calc/test_scenarios.sh: some fixes related to database updates
20200904/PB:
lib/libipv6addr.c: extract ASN from anonymized included IPv4 address in IID
ipv6calcweb/ipv6calcweb.cgi[.in]: HTTP_IPV6CALCWEB_ANTIDOS_PROCMAX: activate test only if proc_max != 0 (solve "make test" issue)
20200825/PB:
ipv6calcweb/ipv6calcweb.cgi[.in]: HTTP_IPV6CALCWEB_ANTIDOS_PROCMAX default 0 and activate test only if proc_max > 0 to avoid SELinux issues (until a better solution is found)
20200824/PB:
tools/DBIP-update.sh[.in]: honor also IPV6CALC_DB_DBIP2_DIR
tools/GeoIP-update.sh[.in]: honor also IPV6CALC_DB_GEOIP2_DIR, remove legacy no-longer-working download mode, improve verbose mode
tools/IP2Location-update.sh[.in]: honor also IPV6CALC_DB_IP2LOCATION_DIR, add verbose option, mask password in verbose mode
tools/ipv6calc-db-update.sh[.in]: honor also IPV6CALC_DB_EXTERNAL_DIR
lib/ipv6calchelp.c: add hint about predefined long options from environment, fix missing catch for db-prio regarding DBIP2 and GEOIP2
20200822/PB:
spec: add requirement "unzip" (for IP2Location-update.sh)
tools/IP2Location-update.sh: check for existing "unzip"
tools/ipv6calc-db-update.sh[.in]: fix broken options -D|h|?
20200720/PB:
databases: update
lib/libipv4addr.h lib/libipv4addr.c: fix not working --no-prefixlength, add support maskprefix/suffix
lib/ipv6calctypes.h: add support maskprefix/suffix, forceprefix length
ipv6calc/ipv6calc.c: add support maskprefix/suffix
20200718/PB:
ipv6calc/ipv6calc.c,ipv6calc/ipv6calcoptions_local.h,lib/librfc1884.c: fix not working --forceprefix <len> / --no-prefixlength
20200621/PB:
databases: update
databases/tools/create_ieee_headerfile.pl: minor improvement
contrib/ipv6calc.spec[.in]: cover 2 potential ldconfig locations
20200512/PB:
tools/ipv6calc-update-registries.sh: adjust LISP URL (website moved)
20200124/PB:
ipv6logconv/ipv6logconv.{h,c}: fix multiple definition of 'cache_lru_limit'
20191209/PB:
ipv6calcweb/ipv6calcweb.cgi[.in]: fix missing description for GeoName ID, remove unexpected GenName links
20191012/PB:
tag version 2.2.0
20191011/PB:
external-fallback/IP2Location: update to 8.0.9
20191008/PB:
ipv6calc/showinfo.c: fix bug regarding decoding anonymized EUI-48/64
ipv6calc/test_scenarios.sh: add additional test cases for OUI-24/28/36
20191007/PB:
databases/ieee*: update, switch to CSV mode
databases/tools/create_ieee_headerfile.pl: remove TXT parser, add CSV parser
databases/ieee-oui/create_ieee_oui_headerfile.pl: removed, EOL
lib/libeui64.c,lib/libieee.c,lib/libieee.h,lib/libmac.c: add support for oui28
20191006/PB:
autogen-all-variants.sh: add permutations for --clang and --m32
{getopt,md5}/Makefile.in: remove unnecessary -s option (make clang happy), fix --m32 support
lib/Makefile.in: fix --m32 support
databases/lib/Makefile.in: fix --m32 support
autogen.sh/configure.in: improve --m32 support
configure.in: fix LDFLAGS issue (ldb)
databases/lib/libipv6calc_db_wrapper_MMDB.h: add workaround for libmaxminddb header file pinning to m32 or m64
{ipv6calc,ipv6logconv,ipv6loganon,ipv6logstats}/Makefile.in: fix LDFLAGS usage
Makefile.in: catch error during single update, add support for oui28
databases/tools/create_ieee_headerfile.pl: add support for oui28
databases/ieee-{iab,oui,oui36}/{Makefile,README}: fix URLs
databases/ieee-oui28: new
databases/lib/libipv6calc_db_wrapper_BuiltIn.{c,h}: add support for oui28
20191005/PB:
databases/lib/libipv6calc_db_wrapper_{GeoIP2,DBIP2}.c: remove not necessary dependencies to db.h
update documentation
internal databases: update
20190923/PB:
tools/DBIP-update.sh[.in]: drop CSV database support
tools/DBIP-generate-db.pl: removed, no longer needed
20190908/PB:
autogen.sh: small bugfix
databases/lib/libipv6calc_db_wrapper_MMDB.c: make clang happy by initialization of "result_MMDB_lookup_sockaddr"
configure[.in]: adjust fix --disable-mod_ipv6calc to support also EL6
databases/lib/libipv6calc_db_wrapper.c: fix for 32 bit systems
ipv6calc/test_ipv6calc.sh: adjust IP to test
tag version 2.1.1
20190907/PB:
databases/lib/libipv6calc_db_wrapper_MMDB.c: add support for registered_country (fallback)
contrib/ipv6calc.spec[.in]: add build requirement: automake make
databases/lib/libipv6calc_db_wrapper.c: fix format token
lib/libipv6addr.c: make clang happy by initialization of "flags"
20190607/PB:
configure[.in]: fix broken logic in case of --disable-mod_ipv6calc is given
20190428/PB:
databases/lib/libipv6calc_db_wrapper_IP2Location.c: cosmetic fixes + reorg
20190405/PB
databases: update
tag version 2.1.0
20190308/PB
some files: add IP address anonymization support "keep-type-geonameid"
ipv6calcweb: disable GeoIP/DBIP legacy databases by default
databases: update
ipv6calc: add action "address to countrycode" and for machine readable "match token suffix"
20190128/PB
many files: add MaxMindDB support, internal improvements and fixes
databases: update
ipv6calc/showinfo: add tokensuffix filter option
tag version 2.0.0
20190120/PB
ipv6calc/ipv6calc.c: Merge pull request #10 from packetloop/segment-fault-when-pipe
20190109/PB
tools/DBIP-update.sh[.in]: fix buggy download error handling
20181010/PB
tools/DBIP-update.sh[.in]: switch to 'lite' database files
tools/DBIP-generate-db.pl: accept also format of 'lite' databases without quotes
20181003/PB
databases: update
tag version 1.1.0
20180902/PB
lib/{ipv6calccommands.h,ipv6calcoptions.c,ipv6calcoptions_common.h}: catch DB disable options even if support is not compiled in
ipv6calcweb/ipv6calcweb.cgi[.in],ipv6calcweb/test_ipv6calcweb.sh: implement test for Anti-DoS protection, minor adjustments
lib/libeui64.c: fix syntax checker
ipv6calc/ipv6calc.c,lib/ipv6calctypes.h: add support for new extract actions of MAC/EUI64 from IPv6 address
20180901/PB
databases: update
20180827/PB
ipv6calcweb/ipv6calcweb.cgi[.in]: implement lightweight Anti-DoS protection
20180502/PB
tools/DBIP-update.sh[.in]: keep downloaded file in case of error
tools/DBIP-generate-db.pl: remove special escaping, no longer necessary
20180203/PB
ipv6calc/ipv6calc.c: replace sprintf with snprintf
configure[.in]: disable errors related to format-truncation
databases/lib/libipv6calc_db_wrapper_DBIP.c: replace strncpy with snprintf
20170701/PB
minor update regarding database update information, pack database infos into RPM
20171002/PB
tools/DBIP-update.sh[.in]: add option for URL to download "full" database
20170918/PB
extend configure to add extra library link flags also to mod_ipv6calc build
20170701/PB
minor update regarding database update information, pack database infos into RPM
20170625/PB
mod_ipv6calc/test_mod_ipv6calc.sh: add fallback path for ps binary
databases: update
tag version 1.0.0
20170622/PB
various: cosmetics and fix help/version option handling
20170621/PB
doc/*: update
ipv6calc/ipv6calc.c, ipv6loganon/ipv6loganon.c, ipv6logconv/ipv6logconv.c, ipv6logstats/ipv6logstats.c: improve option handling
20170618/PB
databases/lib/libipv6calc_db_wrapper_IP2Location.c: add fallback for library version display < 8.0.4
20170617/PB
external-fallback/IP2Location: update to version 8.0.4
databases/lib/libipv6calc_db_wrapper.c: improve the limiter of a binary search
autogen-support.sh: add GeoIP 1.6.10 1.6.11, IP2Location 8.0.4
20170616/PB
databases/lib/libipv6calc_db_wrapper.c: detect loops in binary search earlier then reaching the limit
20170614/PB
databases/lib/libipv6calc_db_wrapper_External.c: fix caching wrong pointers of subdbs
20170613/PB
databases/lib/libipv6calc_db_wrapper.c: fix potential endless lookups in binary search in case database has holes
20170607/PB
databases: update
20170228/PB
ipv6calc/showinfo.h: increase output version to 11
20170227/PB
various files: bugfixes
tools/DBIP-generate-db.pl: add support for isp/location version of DBIP.com
20170226/PB
various files: add LISP support in External database
IP2Location: add enhancements for upcoming 8.0.4
20170225/PB
various files: add LISP support in BuiltIn database
ipv6calcweb/ipv6calcweb.cgi[.in]: add URL support for LISP and Longitude/Latitude (Openstreetmap)
20170219/PB
tools/DBIP-generate-db.pl: add support for full version of DBIP.com
databases/lib/libipv6calc_db_wrapper_DBIP.[ch]: add support for full version of DBIP.com
databases/lib/libipv6calc_db_wrapper.c, lib/ipv6calchelp.c, lib/ipv6calccommands.h, lib/ipv6calcoptions_common.h: add support for DBIP.com DB selection options
20170205/PB
databases/lib/libipv6calc_db_wrapper.c: add support for LISP
internal: rename 'scope' to 'typeinfo'
internal: switch from ipv*addr_gettype ipv*addr_settype
test scripts: various cosmetics and add LISP tests
lib/libipv6addr.[ch]: add support for anonymization of LISP addresses
lib/libipv6calc.h: add LISP registry
20170127/PB
lib/libipv4addr.[ch]: implement support for LISP-IPv4
lib/libipv6addr.[ch]: extend filter structure for typeinfo2
20170124/PB
lib/libipv6addr.[ch]: implement support for LISP-IPv6
ipv6calc/showinfo.c: add typeinfo2 also on human readable output
20161231/PB
lib/Makefile.in,databases/lib/Makefile.in: skip build of shared library if not selected by configure option (https://github.com/pbiering/ipv6calc/issues/3)
20161228/PB
configure[.in]: add conditional support for -Wextra (clang)
various *.c/*.h: fixes regarding -Wextra
TODO: update
contrib/ipv6calc.spec[.in]: add support for git commit hash
tag version 0.99.2
20161224/PB
databases: update
databases/cc-assignment/create-cc-to-registry-list.pl: perl syntax fix
databases/registries/Makefile: fix distclean
20161218/PB
ipv6calc/ipv6calc.c: remove unnecessary parenthesis to fulfill -Wparentheses-equality
configure[.in]: add conditional support for -Wparentheses-equality (seen on FreeBSD 12)
README.BUILDING-IP2LOCATION: updates
databases: update
autogen.sh: add option '--clang'
autogen-support.sh: add additional versions of GeoIP and IP2Location
databases/lib/libipv6calc_db_wrapper_IP2Location.c: remove unnecessary parenthesis to fulfill -Wparentheses-equality
20160907/PB
README,doc/ipv6calc.*: replace CVS with GitHub URL
doc/ldp.dsl: original copy from TLDP
databases/lib/libipv6calc_db_wrapper_IP2Location.c: add support for version 8
lib/ipv6calchelp.c: add support for IP2Location API version feature (new in version 8)
TODO: update
README: updates
contrib/ipv6calc.spec: fix typos
20161004/PB
ipv6calc: support (<|<=|>=|>) option in address filter strings
ipv6calc: support =(lt|le|ge|gt)= as an alternative option in address filter strings
20161003/PB
ipv6calc: add option --test_lt|gt|le|ge <IP address>
20160929/PB
ipv6calc: add option --test_prefix <PREFIX>
20160902/PB
databases/lib/libipv6calc_db_wrapper_IP2Location.c, lib/ipv6calchelp.c: display IP2Location library version if provided by library
20160309/ESR
tools/ipv6calc-update-registries.sh: be more quiet in case called by cron
20160307/ESR
man/*.8: cleaned-up, lift cleanly to XML-DocBook and HTML
20160204/PB
man/ipv6logstats.8: cosmetic fixes
contrib/ipv6calc.spec[.in]: add post/postun, minor fixes
20160203/PB
use -Wno-unused-const-variable if available
20150905/PB
databases: update, fix ieee parser ignoring "
tag version 0.99.1
20150823/PB
ipv6calc: autoselect IPv4 output on action 'conv6to4' if undefined
ipv6calc: add new action 'convnat64'
20150818/PB
databases: update
20150802/PB
databases: update
20150712/PB
databases/lib/libipv6calc_db_wrapper.c: implement last use cache for cc_index, as_num32, registry
20150614/PB
databases/lib/libipv6calc_db_wrapper_IP2Location.c: some bugfixes regarding commercial DB file handling
20150527/PB
ipv6calc: add action --6rd_extract_ipv4
20150526/PB
ipv6calc: add option --6rd_prefixlength <num> to specify a length of the 6RD prefix
ipv6calc: --6rd_relay_prefix is now optional
201505xx/PB
databases/lib/libipv6calc_db_wrapper.c: implementation of database priority selector
20150513/PB
mod_ipv6calc: new
20150508/PB
add internal library version checks for future usage
lib/libipv6calc.c: fix bug in IPv4 address autodetection (e.g. 253.134.12.143/0)
introduce new defines regarding program and API versions major/minor/bugfix
20150505/PB
add support for IPv4/IPv6 address/mask filtering for option -E
20150504/PB
display on -vv whether MD5 or GETOPT are bundled
20150503/PB
fix missing prefix informational DB output on ipv6logstats
add used DB info in row mode on ipv6logstats
20150502/PB
add option: --db-ip2location-lite-to-sample-autoswitch-max-delta-months <MONTHS>
add option: --db-ip2location-comm-to-lite-switch-min-delta-months <MONTHS>
add option: --db-ip2location-only-type <TYPE>
add option: --db-ip2location-allow-softlinks
internal databases: updates
tag version 0.99.0
20150429/PB
add filter for token match and empty value on machine readable output
20150423/PB
add extension for IP2Location LITE disclaimer
improve quoting of machine readable ipv6calc output
add additional options for controlling quoting and filter machine readable output
add all database fields to non-machinereadable output
20150417/PB
internal databases: updates
20150416/PB
external-fallback/IP2Location: update to 7.0.1
20150415/PB
autogen-support.sh: add IP2Location 7.0.1
IP2Location: add support for 7.0.1
20150414/PB
autogen-support.sh: add GeoIP 1.6.2 1.6.3 1.6.4 1.6.5
20150409/PB
fallback compatibility for EOL IP2Location 4.x/6.x libraries (incompatible database layout for IPv6)
ipv6calcweb.cgi: add additional IP2Location output (version 10)
20150406/PB
IP2Location: add support for LITE databases and improve db autodetection
ipv6calc action filter: add support for CountryCode and ASN filter
20150301/PB
spec file: rebase with fedora-scm spec
fix VERSION (still containing rc4)
retag version 0.98.0
20150220/PB
doc/*: update
databases: update
tag version 0.98.0
20150218/PB
spec file: align with fedora-scm spec
tools/*: remove now by autoconf generated scripts
20150215/PB
tools/ipv6calc-db-update.sh: new for dedicated database update capability
tools/ipv6calc-create-registry-list-ipv4.pl: migration from database dir
tools/ipv6calc-create-registry-list-ipv6.pl: migration from database dir
tools/ipv6calc-registries-check-run-create.sh: migration from database dir
tools/ipv6calc-update-registries.sh: migration from database dir
databases: update
20150213/PB
ipv6calcweb/ipv6calcweb.cgi[.in]: add support for EXTERNAL db directory
ipv6calcweb/ipv6calcweb.conf: add default ACL restriction to localhost
20150211/PB
databases: update
20150123/PB
databases/lib/libipv6calc_db_wrapper_GeoIP|IP2Location.c: add some missing dlerror calls
20141209/PB
databases: update
databases/registries/update-registries.sh: add dst directory option, some review
databases/ipv4-assignment/create-registry-list.pl: add src/dst directory option, some review
databases/ipv6-assignment/create-registry-list.pl: add src/dst directory option, some review
databases/tools/ipv6calc-db-update.sh: new
20141127/PB
lib/ipv6calcoptions.c: replace improper use of the MAXINTARRAY macro
configure[.in]: add -Wsizeof-array-argument to CFLAGS if supported
20141024/PB
recognize RFC6666 addresses
databases: update
ipv6calc/showinfo.c: add EXTERNAL db information
ipv6calcweb/ipv6calcweb.cgi[.in]: support EXTERNAL db information
20141011/PB
switch in DBIP and External db info from hash to btree (improves db compatibility)
20141008/PB
some fixes
20141007/PB
adjust DBIP generation tool for new db format: DBIP-generate-db.p
20141005/PB
lib/libipaddr.[ch]: new generic library introduced to simplify code
20141003/PB
autogen-support.sh: add GeoIP 1.6.1 1.6.2, IP2Location 6.0.3
20140927/PB
ipv6calcweb/ipv6calcweb.cgi[.in]: minor bugfix, use background colors for optional database subcolumn mode
20140926/PB
ipv6calcweb/ipv6calcweb.conf: extend with
ipv6calcweb/ipv6calcweb.cgi[.in]: implement optional database subcolumn mode
20140924/PB
databases: update
implement "External" database lookups (superseeding BuiltIn databases for IP->Registry lookups)
20140913/PB
libipv6addr.c: suppress ASN / country code lookup for IPV6_NEW_ADDR_6BONE
showinfo.c: add IPV6_COUNTRYCODE_SOURCE, IPV4_COUNTRYCODE_SOURCE
databases: update
20140909/PB
more abstract implementation of BerkeleyDB and BuiltIn db lookups
20140901/PB
[databases/]lib/Makefile[.in]: support different options for so library on OSX
20140831/PB
add DBIP update tools: DBIP-generate-db.pl, DBIP-update.sh
implement also output of DBIP_REGION
add support for DBIP to ipv6calcweb.cgi
20140830/PB
implement IPv6 city code lookup for DBIP, add DBIP output to DBIP_COUNTRY_SHORT, DBIP_CITY, DBIP_DATABASE_INFO
20140829/PB
implement IPv6 country code lookup for DBIP
20140828/PB
further DBIP support
proper detection of options with missing arguments
implement IPv4 country code lookup for DBIP
20140827/PB
start implementation of db-ip.com (DBIP) support
20140826/PB
implement for output type 'hex' prefix/suffix/uppercase print
improve online help
20140802/PB
tag version 0.97.4
20140731/PB
add new output item on showinfo -i: IPV6CALC_CAPABILITIES
databases: update
20140729/PB
add external-fallback headers for GeoIP (1.4.8) and IP2Location (6.0.2) and add following config options:
--with-ip2location-headers-fallback, --with-geoip-headers-fallback (only usable with dynamic load option)
20140723/PB
man/*: major review of man pages
20140722/PB
harmonize online help of binaries
20140721/PB
lib/libipv6addr.c: extend countrycode retrievement for included client IPv4 addresses
ipv6calc/ipv6logconv/ipv6logstats/ipv6loganon: extend online help for -v
20140720/PB
ipv6calc/ipv6calchelp_local.c
databases/lib/libipv6calc_db_wrapper_IP2Location.h
databases/lib/libipv6calc_db_wrapper_GeoIP.c
databases/lib/libipv6calc_db_wrapper.h
databases/lib/libipv6calc_db_wrapper.c
reorg feature string handling
rename feature string DB_IPV{4,6} to DB_IPV{4,6}_REG
20140719/PB
configure[.in]: fix broken IP2Location dynamic library support
autogen.sh: add ldd check for dynamic library support
20140718/PB
lib/libeui64.c,lib/libipv4addr.c,lib/libipv6addr.c,lib/libmac.c,lib/librfc1924.c,lib/librfc2874.c: align parser error messages
ipv6calc/test_ipv6calc.sh: check for proper exit code on invalid input tests
20140716/PB
ipv6calc/showinfo: display CC/ASN only for global unicast addresses
lib/librfc2874.c: bugfix in snprintf
lib/libipv6addr.c: bugfix in libipv6addr_cc_index_by_addr
20140714/PB
databases: update
tag version 0.97.3
20140705/PB
configure[.in]: add option --disable-compiler-warning-to-error
20140704/PB
several Makefile[.in]: add support for @CFLAGS_EXTRA@ defined by configure
configure[.in]: add check for compiler supporting -Werror=format-security
autogen.sh: remove support of -W (now handled automatically by configure)
20140625/PB
autogen-support.sh: add support for GeoIP 1.5.2/1.6.0
20140624/PB
autogen-all-variants.sh: improve disabling GeoIP/IP2Location if system wide no libraries are available
20140623/PB
autogen-support.sh/autogen-all-variants.sh: skip default 'make test' on GeoIP/IP2Location cross version checks
20140622/PB
databases/lib/libipv6calc_db_wrapper_GeoIP.c: improve detection of maximum database types
autogen-support.sh/autogen-all-variants.sh: add support for GeoIP/IP2Location cross version checks
20140621/PB
autogen-support.sh/autogen-all-variants.sh: minor adjustments
20140620/PB
autogen-support.sh: add download and extract feature for GeoIP/IP2Location
20140619/PB
autogen-support.sh: new, centralize support for autogen.sh and autogen-all-variants.sh
autogen-all-variants.sh/autogen.sh: improvements for regression tests
20140617/PB
configure[.in]: improve IP2Location include/library definition support
several Makefile[.in]: fixes regarding include/library definition support
autogen-all-variants.sh: extend for GeoIP/IP2Location version based regression tests
20140616/PB
configure[.in]: improve GeoIP include/library definition support
20140611/PB
configure[.in]: apply suggested changes from AGB to fix improper use of AC_ARG_ENABLE
20140523/PB
ipv6logstats/ipv6logstats.c: skip cc/asn retrievement in case of simple and column mode (major speed up)
ipv6logstats/ipv6logstats.c: fix missing ALL in column mode (column 1), add option -N|--column-numbers
ipv6logstats/example_gnuplot.cmd: fix to run with newer gnuplot versions, extend with registries and IID pictures
tag version 0.97.2
20140520/PB
databases/lib/libipv6calc_db_wrapper_GeoIP.c: fix 2x improper GeoIP_delete call which causes trouble inside GeoIP library in case of a huge amount of calls
ipv6logstats,ipv6loganon,ipv6logconv: add new test for processing huge amount of addresses
tag version 0.97.1
20140518/PB
databases: update
tag version 0.97.0
20140511/PB
(many files): replace NI_MAXHOST used in various functions by size_t option
20140503/PB
libipv4addr.c: improve registry retrievement for anonymized IPv4 addresses
20140426/PB
Add missing support for machinereadable output for IPv6 addresses (format flag allowed, but was not supported)
ipv6logstats: add support for AFRINIC, change major output version to 4
ipv6logconv: add support of anonymized addresses
ipv6logstats: improve support of anonymized addresses
ipv6logstats: add output version column in column format
20140425/PB
Introduce new functions for countrycode,AS and registry lookup covering also anonymized addresses
20140423/PB
Add dedicated support for 6bone address anonymization
20140422/PB
Small bugfix in ipv6calc test scripts
20140331/PB
RFC1886 printout (reverse nibbles): mask prefix only in case of no printsuffix,printstart,printend
20140225/PB
databases/ipv4-assignment: change from aggregated ip/networt to first-last structure, saving some space & getting rid of use of 'aggregate'
20140223/PB
apply patch from gentoo regading order of LIBS in Makefile[.in]
20140213/PB
prepend /sbin to ldconfig call
tag version 0.96.0
20140211/PB
databases: update
20140209/PB
add tool for checking database lookup code against raw database information
databases: update and fix of IPv4 data prep step before aggregation (found during db lookup tests)
ipv6calc: add input type "asn" for testing ASN database lookups
20140205/PB
change lookup code for IPv4 registry assignment to binary sort, fix bug in binary sort for AS lookup
20140204/PB
builtin IPv4/IPv6 databases: replace registry string by define, change related lookup code (saves space)
databases: update
20140203/PB
minor improvements in Makefiles, configure checks now for openssl/md5.h
replace old debug code with macros in lib
20140202/PB
move IEEE database from libieee to databases/BuiltIn
apply some compilation compatibility fixes submitted by Nikoli
move IPv4/IPv6 registriy database from libipv4addr.c/libipv6addr.c to databases/BuiltIn
improve error catching in Makefiles
add options to force bundled md5 or getopt (otherwise it depends on autodetection)
configure: --enable-bundled-md5 --enable-bundled-getopt
20140201/PB
add support for building with shared libraries:
configure: --enable-shared
autogen.sh: -S
20140115/PB
databases: update
ipv6calcweb/ipv6calcweb.cgi.in: add new outputformat "textkeyvalue"
20131201/PB
databases/lib/libipv6calc_db_wrapper.c: fix snprintf usage (missing format string)
20131117/PB
databases: update
tag version 0.95.0
major changes were applied, but not listed here in detail, for overview see file: CHANGES
20131015/PB
databases: update and add support for changed ARIN format
20130920/PB
review and enhance option handling
20130903/PB
databases/lib: finish implementation of IP2Location wrapper incl. dynamic load support
20130828/PB
databases/lib: start implementation of IP2Location wrapper (dynamic load still missing)
20130820/PB
further review
20130815/PB
further improvements and review
20130811/PB
commit IPv6 prefix and IPv4 address anonymization
20130708/PB
recognize RFC 6598 addresses, extend test cases
20130707/PB
ipv6logstats: further enhance output by country code / AS Number / proto statistics
20130702/PB
migrate displaying verbose features into lib
20130701/PB
ipv6logstats: enhance output by country code / AS Number / proto statistics
databases/lib: major extensions of wrapper
20130622/PB
databases/lib: start implementation of dynamic load of GeoIP library by adding a wrapper layer
20130513/PB
ipv6calcweb/ipv6calcweb.cgi.in: improve colored output for some fields
tag version 0.94.1
20130512/PB
several *.c: replace strncpy/strcpy by snprintf (implicit fix of some improper/missing \0 termination)
several *.c: fixes according to splint
20130510/PB
ipv6calc/test_ipv6calc.sh: fix 2 typos (issue reported by PV)
20130413/PB
fix code or add pragmas to avoid warnings
tag version 0.94.0
20130412/PB
lib/libmac.c/lib/libipv6calc.c: support Cisco format xxxx.xxxx.xxxx
lib/libipv6calc.c: support Check Point IPsec debug log format of IPv4 addresses if first octet is < 16: xxxxxx (7 hex chars)
ipv6calc/test_scenarios.sh: add related test scenarios
20130410/PB
databases: update
lib/libipv6addr.[hc]: add support for reliable anonymization of IAB/OUI36 based EUI-48/64 based IPv6 addresses
lib/libieee.[hc]: add support for mapping of IAB/OUI36
ipv6calc/showinfo.c, ipv6calc/test_scenarios.sh: changes related to anonymized of IAB/OUI36
20130409/PB
databases/ieee-oui36/*, lib/libieee.h, lib/libieee.c: add support for OUI36
databases/tools/create_ieee_headerfile.pl: replace databases/ieee-iab/create_ieee_iab_headerfile.pl
Makefile[.in]: add support for databases/ieee-oui36
lib/libipv6calc.c: add detection for EUI-64
lib/libeui64.h, lib/libeui64.c: add support for parsing EUI-64
ipv6calc/showinfo.[hc], ipv6calc/ipv6calc.c: add support for EUI-64
ipv6calc/test_showinfo.sh, ipv6calc/test_scenarios.sh: add support for EUI-64 tests
20130408/PB
databases: update
databases/ieee-iab/create_ieee_iab_headerfile.pl: fixed for current supplied txt format
databases/ieee-oui/create_ieee_oui_headerfile.pl: fixed for current supplied txt format
20130407/PB
lib/libipv6addr.[hc]: support Microsoft 6to4 IID (includes IPv4 address) anonymization
ipv6calc/showinfo.c: minor bugfix + support of printing Microsoft 6to4 IID information
20130330/PB
lib/libipv6calc.h, lib/ipv6calctypes.h: minor reorg
lib/libipv6calc.c, lib/ipv6calcoptions.h, lib/ipv6calccommands.h: add support for anonymization sets
lib/libipv6addr.[ch]: switch anonymization to use sets instead of dedicated values
lib/ipv6calchelp.[ch]: add help for anonymization
ipv6loganon/test_ipv6loganon.sh: add anonymization options test cases
ipv6loganon/ipv6loganon.c, ipv6loganon/ipv6loganonoptions.h: add additional anonymization options
ipv6loganon/ipv6loganonhelp.c: update help for anonymization
lib/libmac.[ch]: add compatible function names (alignment)
ipv6calc/test_scenarios.sh, ipv6calc/test_ipv6calc.sh: test additional anonymization cases
20130326/PB
lib/libipv6addr.[ch]: store/retrieve global/local flag for anonymized EUI & ISATAP
lib/libmac.[ch], ipv6calc/ipv6calc.c: implement MAC address anonymization
ipv6calc/ipv6calc.c: improve anonymization depending on various formats
lib/libipv6addr.[ch]: fix reliable anonymization
ipv6loganon/test_ipv6loganon.sh: fix testcases
ipv6calc/ipv6calc.c: don't normalize input in filter mode
20130324/PB
lib/libipv6addr.[ch]: add support for ORCHID anonymization, fix OUI storage in anonymized IID
ipv6calc/showinfo.c: restructure display of anonymized information
ipv6loganon/test_ipv6loganon.sh: add some testcases
lib/librfc1884.c: fix for anonmized IIDs
20130319/PB
lib/libipv6addr.h: fix duplicate merge
lib/libipv6addr.c: proper handling of prefix anonymization/masking
lib/ipv6calchelp.[ch]: implement online help for actions
ipv6loganon/ipv6loganonhelp.c: fix online help
ipv6calc/ipv6calc.c: fix online help and debug option value parser
20130317/PB
bin/ipv6logconv.c: dedicated token for privacy & Teredo IID
ipv6calcweb/ipv6calcweb.cgi[.in]: show date/time of generated output
lib/libipv6addr.[ch]: support reliable prefix anonymization
20130226/PB
lib/libipv6addr.[ch]: switch ISATAP anonymization to new method, extend ISATAP recognition
ipv6calc/showinfo.c: improve ISATAP information
lib/librfc1884.c: print included IPv4 address in proper notation
ipv6loganon/test_ipv6loganon.sh,ipv6calc/test_scenarios.sh: adjust test scenarios
20130225/PB
lib/libipv6addr.[ch]: simplified checksum verification for anonymized IID, skip anonymization for already anonymized addresses
ipv6calc/ipv6calc.c: change forgotten default for mask_iid to 0
20130224/PB
lib/libipv6addr.[ch]: introduce new format for anonymized IID
ipv6calc/showinfo.c: extend display for anonymized IIDs
ipv6loganon/ipv6loganon.c, ipv6calc/ipv6calc.c: change default of
anonymization presets: mask_iid is now disabled by default and
replaced by new anoymized IID
ipv6loganon/test_ipv6loganon.sh, ipv6calc/test_ipv6calc.sh, ipv6calc/test_scenarios.sh: adjusted for new anonymization
ipv6calc/ipv6calc.c, ipv6loganon/ipv6loganon.c, lib/ipv6calcoptions.h,
lib/ipv6calccommands.h: replace --no-mask-iid by --mask-iid option
20130224/PB
ipv6calcweb/ipv6calcweb.cgi[.in]: improved display of proxy information
20130223/PB
ipv6calcweb/ipv6calcweb.cgi[.in]: display now information of all passed proxies
20121221/PB
ipv6calcweb/ipv6calcweb.cgi: display X-Via header, if given, display also address information of first proxy, if given
lib/libipv6addr.c: fix type info for teredo address
ipv6calc/showinfo.c: improve debug output
20121216/PB
ipv6calc/ipv6calc.c: accept also debug value in hexadecimal notation
ipv6calc/test_scenarios.sh: extend with testscenarios for detection of already anonymized addresses
lib/libipv6addr.c lib/libipv6addr.h lib/librfc3041.h: use special value for anonymization also of static defined IID, introduce new type flag 'anonymized'
ipv6calcweb/ipv6calcweb.cgi[.in]: display also X-Forward-For header, if given
lib/librfc1884.c ipv6calc/test_ipv6calc.sh: fix a long outstanding bug not compressing only one block of '0'
ipv6loganon/test_ipv6loganon.sh: fix examples according to special value for static defined IID
20121215/PB
databases: update
20121105/PB
databases: update
databases/ipv4-assignment/create-registry-list.pl: fix long undetected bug regarding calculation of IP mask (not easy detectable on 32-bit systems)
20121014/PB
ipv6calc/showinfo: add anonymized IPv4/IPv6 addresses on machinereadable output
lib/libipv4addr: add ipv4_copy function
ipv6calcweb.cgi: support anoymized IPv4/IPv6 addresses
20121012/PB
databases: update
README.BUILDING-GeoIP: new
README.BUILDING-IP2LOCATION: minor update
lib/libipv6addr.c: minor fix to avoid compiler warning
man/ipv6loganon.8: update
spec: - change requirements for ip2location to Mandrake Linux compatible names
- change location of "ipv6calc" from bin to %{_bindir}
tools/GeoIP-update.sh: new
tools/IP2Location-update.sh: new
20120509/PB
lib/libipv6addr.c lib/librfc3041.h: anoymize a privacy extension IID to a special value and recognize this also
ipv6logstats: add output related to IID type
20120505/PB
databases: update
20120424/PB
lib/libieee.c: remove QEMU prefix handling
databases/ieee-oui/create_ieee_oui_headerfile.pl: extend with information about MAC prefixes used by Virtual Machines
20120423/PB
ipv6calcweb.cgi: allow spaces around input in form mode
20120422/PB
lib/libieee.c: detect standard QEMU MAC prefix
lib/libipv6addr.c: blacklist expanded EUI-48 from privacy extension
ipv6calcweb.cgi: cell background for OUI is now yellow, for EUI64_TYPE=local-privacy green
20120419/PB
lib/*: extend filter handling, implement address token, improve privacy detection
databases: update
20120401/PB
ipv6calc/showinfo: finalze autodetection for privacy IIDs
20120325/PB
ipv6calc: improve autodetection (for IID), improve genprivacyiid
20120322/PB
ipv6calc/ipv6calc: add suppport for --print-iid-var
lib/*: some improvements
20120321/PB
lib/*: extend filter handling, implement address token, improve privacy detection
20120320/PB
lib/*: extend filter handling, implement negate
20120319/PB
databases/*: cosmetic fix for suppressing unused-variable during compilation
lib/*: review filter tokens
databases: update
20120318/PB
lib/*: extend for action 'filter'
ipv6calc/ipv6calc.c: implement action (-A) 'filter' with expression '-E', currently only supporting IPv6 addresses
lib/libipv4addr.*: implement gettype with proper values
20120306/PB
lib/libipv6addr.*: adjust calc of IID privacy detection
ipv6logstats/*: add option -w FILE to write IID privacy statistics, fix gnuplot example
20120304/PB
lib/libipv6addr.[ch]: extend IID privacy detection
ipv6logstats/*: extend for IID privacy detection
20120303/PB
lib/libipv6addr.[ch]: add IID privacy detection, fix productive IPv6 address detection
*/Makefile.in: add -lm for linking math (req. for IID privacy detection)
20120205/PB
lib/libipv6addr.c lib/libipv4addr.c: extend RFC info with section
ipv6calcweb.cgi: add support for RFC URLs
COPYING: update FSF address
databases: update
tag version 0.93.1
20120204/PB
ipv6loganon/ipv6loganon.c: don't cache unmodified lines
lib/libipv6addr.c: extend detection for reserved addresses
ipv6calc/showinfo.c: use function from lib/libipv6addr.c for retrieving IPv6 registry string
lib/libipv4addr.c: minor review
20120121/PB
ipv6calcweb.cgi: some improvements
databases: update
lib/libipv4addr.c: extend detection for reserved addresses (RFC5735)
ipv6calc/test_showinfo.sh,test_scenarios.sh: extend for testing reserved IPv4 addresses
tag version 0.93.0
20120120/PB
ipv6calcweb.cgi: fix taint problem for external environment
20120110/PB
ipv6calc/test_ipv6calc.sh: split good testscenarios into dedicated file test_scenarios.sh
ipv6calcweb/test_ipv6calcweb_form.sh: new for testing form mode
ipv6calcweb/test_ipv6calcweb.sh: improve error handling by output check
lib/ipv6calctypes.h: support machinereadable for FORMAT_ipv6literal
lib/libipv6calc.c: minor bugfix
ipv6calc/test_showinfo.sh: add FORMAT_ipv6literal tests
ipv6calc/test_ipv6calc.sh: split some test scenarios
ipv6calc/test_scenarios: new file
ipv6calcweb.cgi: minor improvements
20120102/PB
ipv6calcweb.cgi: additional check on unescaped input
20120101/PB
ipv6calcweb.cgi: minor review
ipv6calc.spec: create subpackage for ipv6calcweb
VERSION[.in]: new for improve scripting of build process
databases
- update
20111231/PB
ipv6calc/showinfo.c: fix show show_types output
ipv6calcweb.cgi: improve form mode, implement some Anti-DoS code, some review
20111219/PB
ipv6calcweb.cgi: add support for form mode and configuration via SetEnv
20111127/PB
lib/*: support scope IDs on IPv6 addresses (also on literal format)
20111126/PB
lib/* ipv6calc/ipv6calc.c: support input/output format "ipv6literal"
lib/libmac.c, lib/libipv6calc.c: support MAC format xxxxxxxxxxxx (seen on some network devices)
20111105/PB
lib/libmac.c, lib/libipv6calc.c: support MAC format xxxxxx-xxxxxx (seen on HP switches)
20111104/PB
ipv6calc/ipv6calc.c: autodetect -A geneui64 in case of -O eui64 and autodetected -I mac (only in non-pipe mode)
20111103/PB
ipv6loganon/ipv6loganon.c, ipv6logconv/ipv6logconv.c:
- using sprintf for LRU cache in more secure way (credits to Luca Bruno)
20111102/PB
ipv6calc/ipv6calc.c: force -O eui64 to request either -I mac or -A geneui64
20111029/PB
update doc, add ldp.dsl and adjust generate script
20111026/PB
update documentation and INSTALLING
20111009/PB
configure.in
- Exclude use of GeoIP_lib_version also for GeoIP 1.4.5 IPv6 support
ipv6calc/ipv6calc.c
- display GeoIP IPv6 compat mode, if enabled
20111008/PB
configure.in, ipv6calc/showinfo.c
- Extend for GeoIP 1.4.5 IPv6 support (which has reduced function set)
Makefile.in (all)
- introduce "make test-minimal" to skip GeoIP/IP2Location tests on RPM build systems
ipv6calc.spec.in
- replace 'make test' by 'make test-minimal'
ipv6calc/showinfo
- increase output version to 5, adding IPV6CALC_FEATURES in machine readable output
ipv6calcweb/ipv6calcweb.cgi.in
- fix broken ARIN whois URL
- show information from IPV6CALC_FEATURES
- claim about missing IP2Location or GeoIP database files, if feature is enabled
tag version 0.92.0
20111008/PB
databases
- update
ipv6calc
- support option "-v -v" to show extended version information
database generation programs
- retrieve and store database status (last update) into related header file
tag version 0.91.0
20111006/PB
configure.in
- checking GeoIP library for IPv6 support
ipv6calc/ipv6calc.c, ipv6calc/showinfo.c, lib/ipv6calchelp.c, ipv6calc/test_showinfo.sh
- skip IPv6 related GeoIP parts, if support is missing in GeoIP library
20110916/PB
6rd extension: change options to support stdin for IPv4 addresses
minor code review
extend online help for action types
20110915/PB
Makefile: catch exit code on sub tests
syntax fix "octett" -> "octet"
ipv6calc, ipv6calccommands.h, ipv6calcoptions.h, ipv6calctypes.h,
librfc5569.c, librfc5569.h, Makefile.in
- add 6rd extension from Raphaël Assénat and add test case
database
- update
20110610/PB
database
- update
tag version 0.90.1
20110601/PB
add configure options for disabling compiled-in databases:
--disable-db-ieee
--disable-db-ipv4
--disable-db-ipv6
20110526/PB
database
-update
minor fixes
tag version 0.90.0
20110515/PB
ipv6calc
- disable accept of 'printstart' & 'printend' option for output type 'ipv6addr' (not suppported at all at the moment)
- add option 'forceprefix <num>'
- add option 'f|flush' for pipe mode
- implement pipe mode (autodetected)
- GeoIP option '--db-geoip-default|-G' enables now IPv4 and IPv6 default database, if file locations are compiled in
- new options for specifying GeoIP file locations: '--db-geoip-ipv4' and '--db-geoip-ipv6'
- new option '--db-ip2location-default|-L' for enabling IPv4 or IPv6 default database, if file locations are compiled in
- extend test cases
BUILD
--with-geoip-default-file is replaced by --with-geoip-ipv4-default-file
- new options for specifying IP2Location default file locations
--with-ip2location-ipv4-default-file
--with-ip2location-ipv6-default-file
registry databases
- update
20110512/PB
ipv6loganon:
- add support for option -f (flush)
- some bugfixes
ipv6calc, ipv6calcweb.cgi
- implement support for GeoIP IPv6 database
ipv6calcweb.cgi
- skip not-useful entries for IP2LOCATION in case of unsupported by database
update information for IP2Location 4.0.2
20110511/PB
ipv6loganon:
- add support for option -w (write) and -a (append) output to a given file
- IPv6 address output is now in compressed format
20110505/PB
lib/librfc1884.c
- cosmetic improvement of debug information
lib/ipv6calchelp.c
- add space between token and ":"
- fix --out -h not showing explanation
update-registries.sh
- add workaround for buggy encoding information in XML
databases
- update
tag version 0.82.1
20110504/PB
ipv6calc/ipv6calc.c
- add some debug code
- improve selection of format switch for revipv4
lib/libipv4addr.c lib/libmac.c
- clear 'valid' flag also if structure is cleared
20110329/PB
ipv6calc/test_ipv6calc.sh, ipv6calc/showinfo.c, lib/libipv6addr.[h,c]
- add support for RFC 6052 (NAT64)
databases:
- update
tag version 0.82.0
20110305/PB
ipv6calc/test_ipv6calc.sh:
- add test cases for RFC 5952
doc
- add URL to openSUSE, minor cleanup
20110227/PB
databases:
- change from txt to xml for IANA data
- update
ipv6calc/test_ipv6calc.sh:
-add good/bad testcases for explicit and autodetection input
- improve catch of errors
ipv6calc/showinfo.c:
- fix buggy fprintf output devices
ipv6calc/ipv6calc.c:
- add support for output format FORMAT_mac
- extend auto-output detection for input format FORMAT_mac, FORMAT_bitstring, FORMAT_base85
- add dedicated error message if auto-input detection doesn't work
lib/librfc1886.c:
- fix librfc1886_formatcheck for proper work with autodetection
lib/librfc1884.c:
- fix debug messages
lib/libmac.[ch]:
- add function macaddrstruct_to_string
lib/libipv6calc.c:
- improve autodetection
lib/libipv6addr.c, lib/libipv4addr.c:
- improve format check
lib/ipv6calctypes.h:
- add new format type for non-working autodetection
20100921/PB
update databases
lib/librfc1886.c: take care of prefix length before printing nibbles
(bugfix, but breaking old behavior, if prefix length is used)
tag version 0.80.0
20100520/PB
configure.in: add value for copyright year, update version number
some header files: replace hardcoded copyright year with value
lib/librfc1884.c: minor bugfix
From http://patch-tracker.debian.org/package/ipv6calc/0.73.0-3
ipv6calc/showinfo.c: fix typo regarding Teredo addresses (not affecting -m)
lib/ipv6calchelp.c: fix segfault
*/Makefile.in: fixes
20100427/PB
lib/librfc1884.c: bugfix regarding uncompressing an address
ipv6calc/test_ipv6calc.c: add some testcases
20090808/PB
ipv6calc/ipv6calc.c
- add auto-output format detection for revnibble
- do not print resultstring, if empty
ipv6calc/test_ipv6calc.sh
- add input validation tests
lib/ipv6calchelp.[ch]
- support machine readable output for input types
lib/libifinet6.c
lib/librfc2874.c
- cosmetic fixes of error messages
lib/libipv4addr.c
lib/libipv6addr.c
lib/librfc1886.c
- improve input validation
- cosmetic fixes of error messages
20090811/PB
update databases
ipv6calc/ipv6calc.c
- add support for '-m' for '--out|action -?'
lib/ipv6calchelp.[ch]
- support machine readable output for output/action types
tag version 0.73.0
20090808/PB
ipv6calc/ipv6calc.c
- add auto-output format detection for revnibble
- do not print resultstring, if empty
- add support for '-m' for '--in -?'
ipv6calc/test_ipv6calc.sh
- add input validation tests
lib/ipv6calchelp.[ch]
- support machine readable output for input types
lib/libifinet6.c
lib/librfc2874.c
- cosmetic fixes of error messages
lib/libipv4addr.c
lib/libipv6addr.c
lib/librfc1886.c
- improve input validation
- cosmetic fixes of error messages
20090620/PB
databases/registries/update-registries.sh
- fix IANA ipv6-unicast-address-assignments weblink problem
20090611/PB
update databases
add /usr/bin/ipv6calc to binary list of ipv6calcweb.cgi
tag version 0.72.2
20090111/PB
update databases
tag version 0.72.1
20090106/PV
various Makefile.in and Makefile
- rename $(root) into $(DESTDIR) to respect GNU coding standards
- fixed datarootdir warning
20081231/PB
ipv6calc/ipv6calc.c
- print token GeoIP, IP2Location, if supported
update databases
20081231/PV
configure.in
- apply fix for GeoIP option
various Makefile.in and Makefile
- adjust/switch to Makefile.in and improvements (use of @CC@,
remove CFLAGS, LDFLAGS, fix @ENABLE_BUNDLED_GETOPT@)
20081119/PB
databases/registries/update-registries.sh
- create registry subdir if not existing
- fix IANA ipv4-address-space weblink problem
databases/ieee-iab/create_ieee_iab_headerfile.pl
- remove '"' from names to avoid problems in generated header file
databases/ieee-oui/Makefile
- adjust remote filename on webserver
ipv6calc/ipv6calc.c
- do not show warning messages for missing GeoIP/IP2Location support
if option "-q" is used (good for ipv6calcweb.cgi)
Makefile[.in]
- move "make test" from "make install" to dedicated "make ..."
- remove "make installonly"
Several files
- minor cleanup
tag version 0.72.0
20070811/PB
lib/libipv6addr.{c,h}
- detect link-local-teredo addresses
20070705/PB
ipv6loganon/test_ipv6loganon.sh
- add ORCHID test scenario
lib/libipv6addr.{c,h}
- fix octal printout
- add hex printout
- support ORCHID in anonymize
lib/libipv4addr.{c,h}
- add octal & hex printout
ipv6calc/showinfo.c
- print warning message in IP2Location longitude/latitude if 0
- do not print GeoIP/IP2Location information on non-global IPv6 addresses
- fix output on ISATAP addresses (stderr->stdout)
ipv6calc/ipv6calc.c
- support octal output for IPv4 and hex output for IPv4 and IPv6
20070704/PB
lib/libipv6addr.{c,h}
ipv6calc/showinfo.c
- add support for ORCHID address type
20070605/PB
ipv6calcweb/ipv6calcweb.cgi.in
- fix built-in list for GeoCityLite
ipv6calc/showinfo.c
- do not show "GeoIP|IP2Location returned no record" in quiet mode
20070601/PB
update databases
update doc files
minor fixes in test scripts
tag version 0.71.0
20070426/PB
lib/libipv6addr.{c,h} lib/ipv6calcoptions.h lib/ipv6calccommands.h
ipv6loganon/ipv6loganon*
ipv6calc/ipv6calc.c
- add support for anonymizing IPv6 prefix flexible (mask-ipv6)
- add new preset options for anonmiyzing (careful,paranoid)
20070402/PB
ipv6calc/showinfo.c
- skip displaying of IPV4_SOURCE if no data is given
- fix month of IP2Location database
- separate IP2Location information for IPv4 and IPv6 (increase output version to 4)
ipv6calcweb/ipv6calcweb.cgi.in
- fix database options according to changes before releasing 0.70.0
- if server address is skipped, do not retrieve information at all
- use built-in list for detecting binary and database files on various locations
20070401/PB
update databases
tag version 0.70.0
20070303/PB
autogen.sh
- add support for more options, see -? for more
ipv6calc/showinfo.[h,c]
- revert to pre 20070215 release, IP2Location (2.1.3) was fixed now
ipv6calc/ipv6calc.h
- adjust copyright year
databases/registries/update-registries.sh
- remove unconditional exit code 0
databases/registries/update-registries.sh databases/ipv{4,6}-assignment/create-registry-list.pl
- change from %Y%m%d to -latest
databases/ipv6-assignment/create-registry-list.pl
- reenable all registries
databases/registries/Makefile
- support "lacnic" on distclean
databases/ipv4-assignment/Makefile
- cleanup
20070215/PB
ipv6calc/showinfo.[h,c]
- move prototypes in case of use of IP2Location (2.1.2) because of a strange compilation warning
ipv6calc/Makefile.in
- reorder CFLAGS according to patch from NT
20070214/PB
contrib/ipv6calc.spec[.in] ipv6calc/Makefile[.in]
- adjustments according to remove of static GeoIP/IP2Location support
20070214/NT
databases/GeoIP databases/IP2Location
- remove support of static (built-in) support
20070207/PB
ipv6calc/ipv6calc.c lib/ipv6calctypes.h
- add support for action anonymize
20070205/PB
lib/libipv{4,6}addr.{c,h}
- migrate IPv4/IPv6 address anonymization code into
ipv6loganon to libraries
20070202/NT
ipv6loganon/ipv6loganonhelp.c
- spelling fixes
man/ipv6loganon.8
- contribution
20070201/PB
database update
ipv6loganon/*
- minor improvements, add README
20070131/PB
ipv6calc/showinfo.c
- fix bug by exchange TEREDO SERVER<->CLIENT tokens
- code improvements (triggered by splint)
ipv6loganon/*
- improve ipv6loganon
lib/*.c
- code improvements (triggered by splint)
20070130/PB
ipv6loganon/*
- initial creation
20070116/ESR
man/ipv6calc.8
- code fixes
20061028/NT+PB
GeoIP support
- add new configure options
--enable-geoip-system: use system GeoIP library
--enable-geoip-default-file: specify default database file
Getopts support
- configure detects now the presence of system getopts library
20061021/PB
IP2Location support
- update to API 2.1.0 (which supports IPv6 now)
GeoIP support
- update to API 1.4.0
configure.in Makefile.in
- add support for global version numbers of APIs
ipv6calc/showinfo.c ipv6calc/ipv6calc.c
- add support for 2 different database files for IP2Location
- change options
-p <file> => --db-ip2location-ipv4 <file>
-g <file> => --db-geoip <file>
- new option
--db-ip2location-ipv6 <file>
update databases
20060828/PB
ipv6calcweb/ipv6calcweb.cgi.in
- remove non-ascii chars on GEOIP_DATABASE_INFO
update databases
tag version 0.61.0
20060807/PB
ipv6calc/showinfo.c
- make code for printing GeoIP and IP2Location universal for IPv4 and IPv6
- fix missing printout of footer in case of IPv6 address is given
ipv6calcweb/ipv6calcweb.cgi.in
- toggle background for lines with embedded IPv4 address
20060806/PB
<several files>
- add support for GeoIP (GeoIP-1.3.17)
LICENSE
- updates according to changes
update databases
20060710/PB
<several files>
- change internal version number handling from dedicated file(s) to configure.in
update databases
tag version 0.60.1
20060707/NT
ipv6calc/test_ipv6calc.sh
- catch result proper
configure.in
- define AC_C_BIGENDIAN for proper support of big-endian arch
- improve version definition, remove acconfig.h (no longer needed)
config.h.in
- regenerated during autoheader
md5/Makefile
md5/md5.c
- fix code for proper support of big-endian arch
autogen.sh
- add call to autoheader
20060625/PB
update databases
tag version 0.60.0
Makefile[.in]
- remove autom4te.cache also in subdirectories
20060612/PB
databases/IP2Location/C-IP2Location-1.1.0/libIP2Location/IP2Location.c
- fix bug in original code according to retrieve date from database
config.h.in configure.in
- add support for SUPPORT_IP2LOCATION in config.h
lib/ipv6calchelp.c
- add comment for option -p
ipv6calc/ipv6calc.c
- add internal flag for IP2Location support
lib/ipv6calctypes.h ipv6calc/showinfo.c
- print embedded IPv4 addresses explicitly in embedded format []
this solves the issue if more than one IPv4 address is included in IPv6 address
lib/libipv6addr.c
- support new Teredo prefix (RFC 4380)
lib/libipv4addr.c
- exclude some RFC1918/RFC3330 addresses from registry lookup, report reserved(reason)
instead
lib/libipv6addr.h
- lower case "teredo"
lib/ipv6calctypes.h
- add new (internal used) format "printembedded"
lib/Makefile
- fix elements in $(OBJS), minor review
ipv6calcweb/ipv6calcweb.cgi
- add support for variables with embedded IPv4 address
- keep sort order of ipv6calc -m output
- fix whois URL of ARIN,APNIC,LACNIC
- remove whois URL for 6bone addresses, no longer valid
- add IP2Location information in footer (if used)
- add required output version for check
ipv6calc/showinfo.h
- define output version
ipv6calc/showinfo.c
- support embedded IPv4 addresses in machine readable output
ipv6calc/ipv6calc.c
- missing IP2Location database is now only a soft error
- add flag whether IP2Location database is given
man/ipv6logconv.8
- fix small problem with hyphens (thanks to Niko Tyni)
20060610/PB
ipv6calc/showinfo.c/print_ipv4addr
- check for result != of IP2Location before using (prevents segfault)
20060608/PB
ipv6calcweb/ipv6calcweb.cgi
- add support for format=<format> in QUERY_STRING
20060607/PB
ipv6calcweb/ipv6calcweb.cgi
- add support for IP2Location according to showinfo.c
contrib/ipv6calc.spec[.in]
- add support for rebuild option --with-ip2location
LICENSE
- updates according to changes
Makefile.in
configure.in
ipv6calc/Makefile.in
- make IP2Location support switchable (--enable-ip2location)
ipv6calc/ipv6calc.c
lib/ipv6calcoptions.h
- fix wrong named option (-f instead of -p)
lib/librfc1924.c
- replace conversion code with clean reimplementation
created by Niko Tyni because of unknown license issue
of the old piece of code
update databases
20060317/PB
databases/ipv6-assignment/create-registry-list.pl
databases/ipv4-assignment/create-registry-list.pl
databases/ipv6-assignment/dbipv6addr_assignment.h
databases/ipv4-assignment/dbipv4addr_assignment.h
lib/libipv6addr.h
lib/libipv4addr.h
- store also prefix length in lookup table
update databases
20060316/PB
lib/libipv4addr.c
- fix wrong use of () in ipv4addr_setword
20060306/PB
Makefile.in
ipv6calc/Makefile.in
ipv6calc/ipv6calc.c
ipv6calc/showinfo.c
- add support for IP2Location
lib/ipv6calcoptions.h
- add new option: -p <path to IP2Location database>
20060213/PB
ipv6calc/Makefile.in
- replace "make" by "${MAKE}" (forgotten in 20051119)
20060212/PB
update databases
databases/ieee-oui/create_ieee_oui_headerfile.pl
- replace " with ' in entries
Makefile.in
- remove also autom4te.cache on distclean
contrib/ipv6calc.spec[.in]
- remove CVS version line to avoid problems
tag version 0.51
20060126/PB
lib/ipv6calchelp.c
lib/ipv6calctypes.h
ipv6calc/ipv6calc.c
ipv6calc/ipv6calc.h
- fix help for {upper|lower}case option inconsistency
- add new shortcut options:
--in|-I --out|-O --action|-A
--printcompressed|-C --printuncompressed|-U --printfulluncompressed|-F
- update copyright range
update databases
20051119/PB
various make files
- replace "make" by "${MAKE}"
- add definitions for prefix and exec_prefix
update databases
20051026/PB
restructure registry database directory
- process now registry files 2 days ago to prevent problems short after local day switches
add support for new registry AFRINIC
extend IPv6 registry data from 32 to 64 bits, adapt related function in lib/libipv6addr
20051021/PB
lib/libipv6addr
- fix bug for unique local unicast detection
ipv6calc/showinfo
- minor review
ipv6calcweb.cgi
- updates according to changes of showinfo.c
20051020/PB
lib/libipv6addr
ipv6calc/showinfo
ipv6logconv
ipv6logstats
- add support for Teredo addresses
20050916/PB
various make files
- add missing entries to fullfil NetBSD's make
20050915/PB
various c files
- fix snprintf size parameter (credits to
Radek Vokál for pointing this out)
lib/libipv6addr.c#ipv6addr_copy
- fix bug which causes stack overflow (credits to
Radek Vokál for finding the bug)
several Makefiles
- add compiler switch -O2, reason for segfault was found
- remove also static on clean
ipv6logconv:
- add support for unique local unicast
update databases
tag version 0.50
20050914/PB
databases/ipv4-assignment
- fix update check script
Update databases
spec file fix
Tag version 0.49
20050725/PB
several Makefiles
- remove compiler switch -O2, this causes segfaults on
Fedora Core 4 using gcc-4.0.0-8
lib/libipv6addr
ipv6calc/showinfo
- add support for Unique Local IPv6 Unicast Addresses
20050719/PB
ipv6logstats, ipv6logconf
- remove not really needed uid check in test step
md5/md5.c
- fix for proper support of big endian machines
ipv6calc/test_ipv6calc.sh
- fix proper error reporting
Further prototyping fixes
lib/libipv6addr
- replace hardcoded IPv6 assignement by dynamic one
Update databases
20050714/PB
Update databases
lib/libipv6addr
- IPv6 TLA update
20050711/PB
lib/librfc2874.c
lib/libipv6calc.c
- Fix prototyping to avoid warnings
md5/Makefile
getopt/Makefile
- Add CC definition
20050628/PB
ipv6calc:
- replace hardcoded $(root)/bin with $(root)@bindir@ (suggested by Andrew Walrond)
20050214/PB
ipv6logconv:
- fix online help
20050212/PB
Update databases
ipv6logconv:
- implement a lookup cache for speed-up (around 20%)
lib/libipv4addr
databases/ipv4-assignment/dbipv4addr_assignment.h
- add a hint table for speed-up IPv4 registry lookups (around 10 times!)
20041121/PB
Update databases
Tag version 0.48
20041101/PB
General:
- add missing directories to Makefile
- fix typo in man page
20041030/PB
General:
- replace md5 function from openssl with a copy of coreutils (licence issue)
- add support for IEEE/iab.txt database
Update databases
- minor fixes in scripting
20040830/PB
ipv6calc:
- add support for recognizing 6to4 addresses generated by
Microsoft OS
ipv6logconv:
- add support for recognizing 6to4 addresses generated by
Microsoft OS
- add support for ISATAP addresses
Update databases
- fix URL of RIPE ARIN, APNIC, LACNIC and add support for compressed files
20031122/PB
ipv6logstats:
- add option "-q|--quiet" for be more quiet
- minor fixes
ipv6calc.spec.in
- review, also install examples now
Some cleanups
tag version 0.47
20031121/PB
IPv4 address database update
Some redesign on Makefile usage, move some Makefile to Makefile.in
- minor redesign in Makefile.in
- take now use of "bindir" and "mandir" in configure run
Update ipv6calc.spec.in
ipv6calcweb.cgi:
- renamed to ipv6calcweb.cgi
- version numbering will now be done using autoconf
ipv6logconv:
- add option "-q|--quiet" for be more quiet
20031026/PB
add contributed man pages
20030907/PB
untag version 0.46
ipv6calcweb.cgi:
- replace deprecated hash reference code with proper one
- add forgotten lacnic support
- allow ":" in SERVER_NAME to allow IPv6 addresses here also
tag version 0.46
20030906/PB
update databases
tag version 0.46
20030815/PB
enable option "printfulluncompressed" on output format octal
add example for output format octal
20030722/PB
enable "printprefix", "printsuffix" for normal IPv6 addresses (autoswitch to uncompressed format)
prefix length of 6to4 addresses changed from 16 to 48 for proper support of format "printprefix"
20030717/PB
add IPv6 LACNIC range
20030628/PB
minor adjustments to "ipv6logstats", add a gri example
20030623/PB
lib/librfc1886.c/librfc1886_addr_to_nibblestring:
don't print trailing "." on middle part end
20030615/PB
add support for new registry LACNIC (in IPv4)
add new program "ipv6logstats" to create historic address distribution statistics of webservers
for use e.g. with gnuplot (add an example cmd script also)
remove autodetection code for EUI-64 (can misinterpret a proper IPv6 address)
fix some bugs in autodection
20030404/PB
add new output format "octal" as requested from Lionel Elie Mamane <lionel at mamane dot lu>
to create proper input for tinydns
20030202/PB:
add new input type "ipv4hex" (hexadecimal IPv4 address)
add new input type "ipv4revhex" (reverse hexadecimal IPv4 address)
add support of spaces as delimiter of MAC/EUI-48 addresses
(above support was added to convert information got by 'martian source' logging)
20021112/PB:
fix not proper handling of option "-q|--quiet" in some cases
enhance help options (-h|--help now also valid) on --out|action|in
ipv6logconf: "make test" can be now also executed by root (su to nobody)
tag version 0.45
20021104/PB:
minor cosmetics in IEEE/OUI database
20021104/PB:
update IPv6 address allocation for 2001::/16
update IPv4 databases
remove user/group on "make install" to enable non-root RPM build
update text on ipv6calcweb.cgi
minor reviews
tag version 0.44
20020830/PB:
add support of dashes on MAC/EUI-48 addresses
showinfo prints now type of EUI-48 addresses
20020817/PB:
fix configure.in, learnt now how to proper use AC_CHECK_LIB and AC_CHECK_HEADERS
credits to Arkadiusz Miskiewicz!
20020730/PB:
fix not proper autodetection code for MAC addresses
tag version 0.43
20020717/PB:
update URL to OUI database, cosmetic OUI fixes, update databases
tag version 0.42
20020511/PB:
bugfix not showing OUI on showinfo "-i"
update CIDR and OUI data
20020421/PB:
review inttypes definitions, create new header file
minor fixes to suppress compiler warnings
tag version 0.40rc5
tag version 0.40
20020420/PB:
fix defines for FreeBSD and OpenBSD
minor fixes
20020410/PB:
tag version 0.40rc4
20020410/PB:
new format feature: printmirrored for reverse dot separated format
minor fixes
20020409/PB:
add new feature: printing IPv4 address in reverse PTR/DNS format
minor help extension
20020408/PB:
fix completly broken online help
add some autodetection
printprefix|suffix now works also for fulluncompressed
some cleanups
tag version 0.40rc3
20020407/PB:
minor cosmetic fixes, import forgotten ipv6logconv changes
tag version 0.40rc2
20020405/PB:
fix some database dependencies
fix NetBSD has inttypes.h instead of stdint.h
change back to not splint'ed librfc1924.c because of a self made not easy to find bug :-(
some minor fixes
tag version 0.40rc1
20020403/PB:
more splint'ing, some type review
20020401/PB:
more splint'ing, some type review
20020331/PB:
more splint'ing
extend ipv6logconv
20020325/PB:
ipv6calcweg.cgi: extension for new showinfo extension
20020324/PB:
fix alignment bugs in libipv4addr.c for word/dword access
libip4addr.c: add support for registry information
finish IPv4 registry detection code
20020323/PB:
new feature: prefix+mac -> IPv6 address
20020320/PB:
showinfo: add new info: registry, fix a bug in output of non machinereadable
some snprintf fixes
20020318/PB:
move files to dedicated subdirectories
add program information on ipv6calc -m
enhance ipv6calcweb.cgi
begin to replace "sprintf" with "snprintf" (for security reasons)
-> release 0.40pre7
20020317/PB:
ipv6calc: fix not working showtypes
new: ipv6calcweb.cgi: Perl wrapper program for web interface
replace all "strtok" to "strtok_r" because of problems due calls in subfunctions (thanks to manpage...)
remove "-ansi" from compiling options
ipv6logconv: add output format "any", fills address, referer and user with proper information
some code lint
20020316/PB:
new: ipv6logconv is able to convert addresses of webserver logs into special domain names
new: analog example for creating stats from converted logfiles
some fixes and enhancements
20020311/PB:
new: add vendor database for global EUI-64/48 identifiers
new: libieee to display an OUI, if available
showinfo: machinereadable now printout one info per line (switchable later)
minor fixes
tag release 0.40pre5
20020306/PB:
enhance help, adapt format to 80 chars per line
bugfix in showinfo.c relating to display EUI-64 id
began some code audit using splint
20020303/PB:
migrate eui64 to privacy into new style
more cleanup
extend test script
tag release 0.40pre2
implement auto detection for input
showinfo now understands IPv4 address extraction of autoconfigured link local addresses
check format options against matrix
understand now input of revnibble (limited support) and bitstring labels
tag release 0.40pre3
20020302/PB:
major work of redesign is done, test script runs well, unused files removed
tag release 0.40pre1
20020301/PB:
start redesign
20020227/PB:
libipv6addr.c: fixed a bug in ipv6addr_setoctett.c regarding num limit (oops..)
ipv6calc.c: move structure definitions to...
libmac.h: add related structure definition ipv6calc.c
libipv6addr.h: add related structure definition from ipv6calc.c
libipv4addr.*: new for handling IPv4 addresses
ipv4_to_6to4addr.*: new for handling conversion IPv4 -> IPv6to4
librfc3056.*: library for conversion IPv4 -> IPv6to4
libipv6calc.c: fix array index bug of compat[] (oops..)
tag release 0.39
20020226/PB:
add original getopt tarball into samplecode, fill related READMEs
tag release 0.38
20020224/PB:
move nibble string function to librfc1886
minor fixes
restore original samplecode files and remove CVS id to prevent CVS changes
add original getopt code to samplecode
tag release 0.37
20020224/PB:
minor Makefile fixes
fix getopt Makefile
minor cosmetic fix in test script
cosmetic cleanups
some code cleanup and minor redesign, some optimizing
fixes stupid help call bugs
format options can be used now in more functions
add support of "printstart" and "printend" in "ip6int", "bitstring"
extend "showinfo", add "machine_readable" for easier postprocessing
20020223/PB:
complete limited support of bistring labels
change examples to 6bone dummy address (3ffe:ffff:...)
add a trailling dot on ip6.[int|arpa] output
migrate getopt patch for OpenBSD submitted by Vladimir Kotal <vlada at openbsd dot cz>
minor Makefile fixes
tag release 0.37pre1
20020219/PB:
fix a minor bug
tag release 0.36
20020218/PB:
fix bug relating to ipv6calc.h (changes now in ipv6calc.h.in)
start preparation for implementing bitstring conversions
tag release 0.35
20020218/PB:
add new options: --addr_to_ip6arpa|-a
does the same like --addr_to_ip6int|-r, but ends with "ip6.arpa" instead of "ip6.int"
addr_to_ip6int now understands "--uppercase|--lowercase"
tag release 0.35
20020127/PB:
tag release 0.34
20020124/PB:
use now "-lcrypto" instead of full defined lib name
20020121/PB:
update "COPYING" to current GPLv2, add "LICENSE" with some comments to make Debian people happy
add both in spec file
20020120/PB:
showinfo now understands "solicited-node link-local multicast", "ISATAP", SLA on 6bone addresses
input now understands also "ISATAP" addresses
20011227/PB:
Make tarball ready to use
20011218/PB:
Change version numbering to autoconf/configure
Extend "showinfo" a little bit
20011009/PB: release 0.30
20011009/PB:
Fix missing scope initialization "base85_to_ipv6addr"
bug found by Greg Daley <greg.daley # eng.monash.edu.au>
changed:
libipv6addr.c/ipv6addr_clear
librfc1924.c/base85_to_ipv6addrstruct
20011007/PB:
Push source into local CVS system
0.28: Peter Bieringer <pb@bieringer.de>
Refixing compiling on BSD
Add a forgotten include in "eui64_to_privacy.c"
0.27: Peter Bieringer <pb@bieringer.de>
Migrate files used from Linux kernel for address type resolution to libipv6addr.*
add some extended tests (still not catch all)
"--showinfo" now rudimentary works
0.26: Peter Bieringer <pb@bieringer.de>
Create wrapper functions to be independend of byte order storage in
structure "in6_addr"
"--eui64_to_privacy" now calculate expected results
Begin of splitting "ipv6calc.h" into several smaller header files
Some code cleanup
0.25: Peter Bieringer <pb@bieringer.de>
Restructure central address structure to use "in6_addr" struct
Some code cleanup
0.24: Peter Bieringer <pb@bieringer.de>
Add option "--eui64_to_privacy" to calculate pseudo random suffices
(experimental, result is not verified)
Add option "--showinfo"
(experimental, not finnished)
Add option "-d|--debug value"
Partially new debug code
0.23: Peter Bieringer <pb@bieringer.de>
Fix permissions of doc files in spec file
0.22: Peter Bieringer <pb@bieringer.de>
ANSI compiling cleanup
Cleanup special types to ANSI types
0.21: Peter Bieringer <pb@bieringer.de>
Fix typo (strings.h -> string.h) at ifinet6_to_compressed.c
0.20: Peter Bieringer <pb@bieringer.de>
Activate "--printsuffix" + "--printprefix" for "--addr_to_uncompressed"
Change format of "--mac_to_eui64" to described one (now without prefix)
0.19: Peter Bieringer <pb@bieringer.de>
Extend "TODO" list
Print also info on "-?"
Fixes in spec file, see changelog at the end of that file
Add "COPYING" and "INSTALLING"
Add "installonly" on "Makefile" to support changes in spec file
0.18: Peter Bieringer <pb@bieringer.de>
Add "make test" after "make" in spec file to stop build process, if
compiling do not result in working code
Add samplecode directory
0.17: Peter Bieringer <pb@bieringer.de>
Fix "addr_to_ip6int" (sprintf)
Minor reviews
0.16: Peter Bieringer <pb@bieringer.de>
Review "Makefile" to make it usable on BSD systems
Minor reviews to enable a clean make on BSD systems
0.15: Peter Bieringer <pb@bieringer.de>
Create TODO
Some review
New option: mac_to_eui64
0.14: Peter Bieringer <pb@bieringer.de>
Review CREDITS
0.13: Peter Bieringer <pb@bieringer.de>
Add base85 support
Add compatv4/mapped support
Split away some RFC depended libaries
Rename internal used functions
Rename options (old ones still work)
Change IPv6 address compression method from getaddrinfo to
native calculation (hopefully bugless)
Some review
0.12: Peter Bieringer <pb@bieringer.de>
Add some format checks
0.11: Peter Bieringer <pb@bieringer.de>
Add code for successful compiling under BSD, credits to Hubert Feyrer <hubertf@netbsd.org>
Cosmetic cleanups
0.10: Peter Bieringer <pb@bieringer.de>
redesigned to use a central libary for most of the functions
moved option handling to getopts
add option --maskprefix, --masksuffix for [full]uncompressed format
0.09: Peter Bieringer <pb@bieringer.de>
fix in 0.07 (addr2uncompaddr) won't work, refix now
0.08: Peter Bieringer <pb@bieringer.de>
fix Makefile and spec-file for RedHat 7.0.91
0.07: Peter Bieringer <pb@bieringer.de>
fix addr2uncompaddr, now ::/prefixlength is well converted
0.06: Peter Bieringer <pb@bieringer.de>
fix glibc-2.2.2 compilation problems, credits to Pekka Savola <pekkas@netcore.fi> in
addr2if_inet6.c, ipv6calc.c
0.05: Peter Bieringer <pb@bieringer.de>
if_inet62addr added, printhelp_function moved into related source file
0.04: Peter Bieringer <pb@bieringer.de>
addr2if_inet6 will now display scope value in hex
(use some sources of kernel files to get scope rather than writing my own)
cosmetic cleanups
0.03: Peter Bieringer <pb@bieringer.de>
Splitt away each function in a seperate file
Working: addr2compaddr, addr2uncompaddr, addr2fulluncompaddr, addr2if_inet6
addr2ip6_int
0.02: Peter Bieringer <pb@bieringer.de>
Never published release, "addr2compaddr" is working
0.01: Peter Bieringer <pb@bieringer.de>
Initial start
|