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
|
2007-07-10 13:37 farooq-i-azam
* doc/ipgrab.texi (1.23): Modified info page
2007-07-10 13:33 farooq-i-azam
* doc/ipgrab.8 (1.3): Modified man page
2007-07-10 13:31 farooq-i-azam
* TODO (1.18): [no log message]
2007-07-10 13:30 farooq-i-azam
* README (1.5): Modified README
2007-07-10 13:28 farooq-i-azam
* DEVELOPER-HOWTO (1.2): Modified DEVELOPER-HOWTO
2007-07-08 14:09 farooq-i-azam
* doc/ipgrab.texi (1.22): Updated info page.
2007-07-08 13:59 farooq-i-azam
* ChangeLog (1.13): Updated ChangeLog
2007-07-08 13:16 farooq-i-azam
* DEVELOPER-HOWTO (1.1): Adding a Developer How To for educationla
purposes and to facilitate new developers.
2007-07-03 18:34 farooq-i-azam
* doc/ipgrab.texi (1.21): Update info page.
2007-07-03 18:31 farooq-i-azam
* doc/ipgrab.8 (1.2): Updated man page.
2007-07-03 18:24 farooq-i-azam
* TODO (1.17): A bit updated TODO file. It needs further updation.
2007-07-03 18:16 farooq-i-azam
* README (1.4): Updated README file.
2007-07-03 18:15 farooq-i-azam
* INSTALL (1.3): Updated INSTALL file.
2007-07-02 12:35 farooq-i-azam
* src/Makefile.in (1.51): Makefile.in generated by automake 1.9.6.
2007-07-02 11:09 farooq-i-azam
* autom4te.cache/: traces.0 (1.2), traces.1 (1.1): [no log message]
2007-07-02 11:06 farooq-i-azam
* autom4te.cache/: output.0 (1.2), output.1 (1.1), requests (1.2):
[no log message]
2007-07-02 10:33 farooq-i-azam
* doc/Makefile.in (1.9): Makefile.in generated by automake 1.9.6
2007-07-02 10:09 farooq-i-azam
* doc/Makefile.am (1.3): Updated makefile.am to install man pages
as well.
2007-07-02 10:03 farooq-i-azam
* doc/ipgrab.8 (1.1): Copying man page to doc folder.
2007-07-02 09:52 farooq-i-azam
* ipgrab.8 (1.2): The man page should be in the doc folder along
with info page. Therefore, removed it from the root folder.
2007-06-26 08:36 farooq-i-azam
* AUTHORS (1.7): [no log message]
2007-06-26 08:31 farooq-i-azam
* Makefile.in (1.14): New Makefile.in generagted by GNU Automake
version 1.9.6.
2007-06-26 07:53 farooq-i-azam
* configure (1.29): New configure script generated by GNU Autoconf
2.61 for ipgrab 0.9.10.
2007-06-26 07:49 farooq-i-azam
* aclocal.m4 (1.10): New aclocal.m4 generated by aclocal version
1.9.6
2007-06-26 07:44 farooq-i-azam
* configure.ac (1.2): Version information is changed to 0.9.10
2007-06-25 13:09 farooq-i-azam
* src/file.c (1.5): Fixed a bug so that filter strings now also
work when reading packets from file.
2007-06-25 13:08 farooq-i-azam
* src/l2tp.c (1.11): Fix of a very minor problem.
2007-06-25 13:06 farooq-i-azam
* src/ripng.h (1.6): Fixed bug related to byte order.
2007-06-25 13:04 farooq-i-azam
* src/rip.h (1.6): Fixed bugs related to byte order.
2007-06-25 13:03 farooq-i-azam
* src/isakmp.c (1.11): Fix of a minor problem.
2007-06-25 13:00 farooq-i-azam
* src/dhcp.h (1.8): Corrected header definition of dhcp in struct
dhcp_header.
2007-06-25 12:57 farooq-i-azam
* src/dhcp.c (1.22): Fixed minor problems and more options in the
headr are being decoded now.
2007-06-25 12:53 farooq-i-azam
* src/netbios_ns.c (1.9): Fixed a bug related to the displaying of
flags. These are now being correctly displayed.
2007-06-25 12:47 farooq-i-azam
* src/radius.c (1.5): Fixed some bugs w.r.t value returned by
dump_radius_attribute() and length of values being displayed.
2007-06-25 12:38 farooq-i-azam
* src/ah.h (1.5): Changed struct ah_header so that it now correctly
conforms to little endian and big endian byte orders.
2007-06-25 12:25 farooq-i-azam
* src/icmpv6.c (1.18): Fixed a minor bug.
2007-06-25 12:23 farooq-i-azam
* src/icmp.c (1.18): Fixed bugs related to byte order and displayed
fields under dump_icmp_mask().
2007-06-25 12:20 farooq-i-azam
* src/rsvp.c (1.4): Added some code so as something is displayed in
the minimal mode as well.
2007-06-25 12:07 farooq-i-azam
* src/rtcp.c (1.4): Fixed problems related to byte order.
2007-06-25 12:06 farooq-i-azam
* src/ipx.c (1.14): Source and destination IPX addresses are now
displayed correctly using 4 bytes.
2007-06-25 11:52 farooq-i-azam
* src/ccp.c (1.2): Added some code to decode CCP_CODE_RESETREQ and
CCP_CODE_RESETREP options.
2007-06-25 11:50 farooq-i-azam
* src/ipcp.c (1.7): IPCP_OPTION_MOBILEIPV4 is also being parsed
now.
2007-06-25 11:47 farooq-i-azam
* src/lcp.c (1.11): LCP_CODE_PORTREJ and LCP_CODE_TIMEREMAINING are
now being parsed.
2007-06-25 11:46 farooq-i-azam
* src/ipv6.c (1.15): A small change with respect to use of
hexadecimal instead of decimal numbers.
2007-06-25 11:42 farooq-i-azam
* src/state.c (1.2): Fixed a minor problem related to port sizes.
2007-06-25 11:41 farooq-i-azam
* src/arp.c (1.21): Fixed some minor problems.
2007-06-25 11:36 farooq-i-azam
* src/llc.c (1.6): Fixed minor bugs related to byte order.
2007-06-25 10:47 farooq-i-azam
* src/ipgrab.c (1.22): Fixed a fix so that filter strings also work
when reading packets from file. Similary when ipgrab is now run
without having proper permissions, it does not crash and displays
an error message instead.
2007-06-25 10:44 farooq-i-azam
* src/datalink.c (1.26): Made some minor changes so as timestamp is
printed in human readable format.
2007-06-25 10:19 farooq-i-azam
* src/dynports.c (1.8): fixed a minor problem
2007-06-25 10:17 farooq-i-azam
* src/hexbuffer.c (1.6): cleaned variable int col which is not
needed and made hexbuffer_flush() consistent with
utilities.c:dump_hex_and_text()
2007-06-25 10:14 farooq-i-azam
* src/utilities.c (1.13): cleaned some code in dump_hex_and_text()
2007-06-25 10:12 farooq-i-azam
* src/display.c (1.34): Fixed display_minimal(), added DISP_BIN in
display_minimal and fixed display_header_banner_ts() to correctly
display timestamps in human readable format.
2007-06-25 10:07 farooq-i-azam
* src/parse_cl.c (1.12): Fixed a minor problem with allocation and
freeing of memory
2007-06-25 10:01 farooq-i-azam
* src/error.c (1.4): Cleaned a line of code
2006-11-21 10:11 farooq-i-azam
* Makefile.in (1.13), README (1.3), acconfig.h (1.5), acinclude.m4
(1.5), aclocal.m4 (1.9), config.guess (1.3), config.h.in (1.1),
config.in (1.12), config.sub (1.3), configure (1.28),
configure.ac (1.1), configure.in (1.29), depcomp (1.1),
install-sh (1.2), missing (1.2), mkinstalldirs (1.2),
autom4te.cache/output.0 (1.1), autom4te.cache/requests (1.1),
autom4te.cache/traces.0 (1.1), doc/Makefile.in (1.8),
tools/pmm/AUTHORS (1.2), tools/pmm/COPYING (1.2),
tools/pmm/ChangeLog (1.3), tools/pmm/INSTALL (1.2),
tools/pmm/Makefile.am (1.4), tools/pmm/Makefile.in (1.4),
tools/pmm/NEWS (1.2), tools/pmm/README (1.2),
tools/pmm/acconfig.h (1.2), tools/pmm/acinclude.m4 (1.2),
tools/pmm/aclocal.m4 (1.3), tools/pmm/config.h (1.3),
tools/pmm/config.in (1.3), tools/pmm/configure (1.4),
tools/pmm/configure.in (1.4), tools/pmm/error.c (1.2),
tools/pmm/error.h (1.2), tools/pmm/field.cc (1.3),
tools/pmm/field.h (1.3), tools/pmm/global.h (1.2),
tools/pmm/main.c (1.5), tools/pmm/main.cc (1.2),
tools/pmm/protocol.cc (1.3), tools/pmm/protocol.h (1.3),
tools/pmm/read_xml.c (1.3), tools/pmm/read_xml.h (1.3),
tools/pmm/utilities.c (1.3), tools/pmm/utilities.h (1.3),
tools/pmm/value.cc (1.3), tools/pmm/value.h (1.3),
tools/pmm/xml.cc (1.2), tools/pmm/xml.h (1.2): Towards
ipgrab-0.9.10
2006-11-21 10:02 farooq-i-azam
* tools/pmm/protocols/mobileip.xml (1.3): Towards ipgrab-0.9.10
2006-11-21 08:59 farooq-i-azam
* src/protocols.h (1.15): protocols.h not required at present.
2006-11-21 08:54 farooq-i-azam
* src/test.c (1.2): Removing test.c which is a test file
2006-11-21 07:47 farooq-i-azam
* src/: Makefile.am (1.49), Makefile.in (1.50), dhcp.c (1.21),
dhcp.h (1.7), display.c (1.33), display.h (1.23), esp.c (1.7),
ftpctrl.c (1.5), global.h (1.7), icmpv6.c (1.17), icmpv6.h (1.8),
igmp.c (1.13), igmp.h (1.5), ip.c (1.27), ip_services.c (1.14),
ip_services.h (1.12), ipgrab.c (1.21), ipx.h (1.6), mobileip.c
(1.12), ns_labels.h (1.6), ppp.c (1.15), radius.h (1.3),
radius_3gpp2.c (1.4), ripng.c (1.10), ripng.h (1.5), ssh.c (1.8),
strmap.c (1.6), tcp.c (1.26), test.c (1.1), utilities.c (1.12),
utilities.h (1.9): Test File
2002-08-01 13:31 mborella
* src/ipgrab.c (1.20): Fixed segfault in cleanup_pcap().
2002-08-01 13:27 mborella
* Makefile.in (1.12), aclocal.m4 (1.8), config.in (1.11), configure
(1.27), configure.in (1.28), doc/Makefile.in (1.7),
src/Makefile.in (1.49), src/display.c (1.32), src/strmap.c (1.5):
Added a few bug fixes resulting from valgrind runs.
2002-04-03 18:48 mborella
* config.in (1.10), configure (1.26), configure.in (1.27),
src/utilities.c (1.11), src/utilities.h (1.8): Added autoconf
check for strlcpy and strlcat, fixed strlcpy and strlcat checks
in code to be separate.
2002-04-03 18:43 mborella
* src/: display.c (1.31), ftpctrl.c (1.4), ns_labels.h (1.5),
utilities.c (1.10), utilities.h (1.7): Added strlcpy() and
strlcat() local functions, replaced strncpy() calls.
2002-03-22 20:12 mborella
* src/esp.c (1.6): Fixed bug in ESP sequence number displays.
2002-03-08 13:57 mborella
* src/: bgp.c (1.5), ipx.h (1.5): More fixes to BGP.
2002-03-05 23:23 mborella
* src/bgp.c (1.4): More fixes to BGP
2002-03-05 20:32 mborella
* src/bgp.c (1.3): More updates to BGP
2002-03-01 23:17 mborella
* src/bgp.c (1.2): Interim checkin of BGP
2002-03-01 14:36 mborella
* src/: Makefile.am (1.48), Makefile.in (1.48), bgp.c (1.1), bgp.h
(1.1), ip.c (1.26), ip_services.c (1.13), ip_services.h (1.11),
tcp.c (1.25): Added atttrbiute support to IP and TCP, initial BGP
support
2002-02-27 16:16 mborella
* src/: dhcp.c (1.20), display.c (1.30), display.h (1.22): Used
display_minimal_attribute() throughout most of DHCP.
2002-02-27 15:08 mborella
* src/: dhcp.c (1.19), display.c (1.29): Added dump_hexbytes()
usage in dhcp.c
2002-02-27 14:42 mborella
* src/: icmpv6.c (1.16), ssh.c (1.7), utilities.c (1.9),
utilities.h (1.6): Fixed a few more things with ICMPv6, added
dump_hexbytes() to utilities.
2002-02-27 14:11 mborella
* src/: display.c (1.28), display.h (1.21), icmpv6.c (1.15),
ipgrab.c (1.19): Fixes to ICMPv6 so that options are handled
properly. Added the name of the file being written to as part of
output, fixed how IPv6 addresses are displayed.
2002-02-25 18:10 mborella
* src/: dhcp.c (1.18), icmpv6.c (1.14), icmpv6.h (1.7), ripng.c
(1.9), ripng.h (1.4): A number of fixes to ICMPv6, RIPv6 and one
to DHCP
2002-02-25 16:18 mborella
* src/dhcp.c (1.17): More fixes for DHCP
2002-02-25 16:07 mborella
* src/: dhcp.c (1.16), dhcp.h (1.6): Fixed a number of display
issues with DHCP.
2002-02-21 20:27 mborella
* src/: igmp.c (1.12), igmp.h (1.4): Fixes to IGMP, addition of
DVMRP support.
2002-02-19 18:13 mborella
* src/: mobileip.c (1.11), radius.h (1.2), radius_3gpp2.c (1.3):
Cleaned up Mobile IP extensions and 3GPP2 RADIUS attributes
2002-01-04 21:43 mborella
* ChangeLog (1.12, release0-9-8): Updated Changelog
2002-01-04 17:24 mborella
* doc/ipgrab.texi (1.20), src/datalink.c (1.25) (utags:
release0-9-8): Fixed compilation error with libpcap 0.4 due to
change in data structure.
2002-01-03 18:12 mborella
* configure (1.25, release0-9-8), configure.in (1.26,
release0-9-8), doc/ipgrab.texi (1.19), src/radius.c (1.4,
release0-9-8): Documentation update.
2002-01-03 17:41 mborella
* configure (1.24): Removed unnecessary libraries from linking.
2002-01-03 00:04 mborella
* src/: ah.c (1.10, release0-9-8), datalink.c (1.24), dhcp.c (1.15,
release0-9-8), display.c (1.27, release0-9-8), dns.c (1.21,
release0-9-8), error.c (1.3, release0-9-8), file.c (1.4,
release0-9-8), icmp.c (1.17, release0-9-8), icmpv6.c (1.13,
release0-9-8), igmp.c (1.11, release0-9-8), ip.c (1.25,
release0-9-8), ipv6.c (1.14, release0-9-8), ipx.c (1.13,
release0-9-8), ipxrip.c (1.8, release0-9-8), netbios_ns.c (1.8,
release0-9-8), ospf.c (1.14, release0-9-8), rip.c (1.14,
release0-9-8), ripng.c (1.8, release0-9-8), slp.c (1.5,
release0-9-8), tcp.c (1.24, release0-9-8): Changed all instances
of sprintf() to snprintf()
2002-01-02 19:31 mborella
* src/file.c (1.3): Changes to properly detect PCAP files on big
endian machines.
2002-01-02 18:16 mborella
* ChangeLog (1.11), config.in (1.9, release0-9-8), configure.in
(1.25), doc/ipgrab.texi (1.18), src/dynports.c (1.7,
release0-9-8), src/utilities.c (1.8, release0-9-8): Changes to
cleanly compile on FreeBSD 4.3
2001-12-07 23:11 mborella
* src/file.c (1.2): Added second libpcap signature so that we can
support newer libpcap trace files.
2001-11-29 00:20 mborella
* src/radius_3gpp2.c (1.2, release0-9-8): More changes to 3GPP2
RADIUS.
2001-11-21 22:03 mborella
* src/: Makefile.am (1.47, release0-9-8), Makefile.in (1.47,
release0-9-8), radius.c (1.3), radius_3gpp2.c (1.1),
radius_3gpp2.h (1.1, release0-9-8): Broke out 3GPP2 RADIUS
section into separate file, added more parameters
2001-11-21 18:04 mborella
* src/: Makefile.am (1.46), Makefile.in (1.46), iana.c (1.1,
release0-9-8), iana.h (1.1, release0-9-8), radius.c (1.2),
utilities.c (1.7): Added support for IANA vendor types, enhanced
RADIUS decoding.
2001-11-16 00:10 mborella
* src/: Makefile.am (1.45), Makefile.in (1.45), ip_services.c
(1.12, release0-9-8), ip_services.h (1.10, release0-9-8),
radius.c (1.1), radius.h (1.1, release0-9-8): Added basic RADIUS
support.
2001-11-15 20:15 mborella
* src/: ftpctrl.c (1.3), local.h (1.6) (utags: release0-9-8): Fixed
reply code determination in FTP control packets.
2001-11-15 19:28 mborella
* src/ipgrab.c (1.18, release0-9-8): Fixed support for the -v
option. It prints the version number then terminates the program
now.
2001-11-15 00:22 mborella
* src/: Makefile.am (1.44), Makefile.in (1.44), datalink.c (1.23),
display.c (1.26), gre.c (1.12, release0-9-8), ip.c (1.24),
ip_services.c (1.11), ip_services.h (1.9), nntp.c (1.1,
release0-9-8), nntp.h (1.1, release0-9-8), payload.c (1.9,
release0-9-8), ppp.c (1.14, release0-9-8), udp.c (1.19,
release0-9-8), utilities.c (1.6), utilities.h (1.5,
release0-9-8): Added NNTP support, fixed a couple of minimal mode
errors with respect to payload displaying and lumping packets
together.
2001-11-02 23:59 mborella
* src/rtcp.c (1.3, release0-9-8): Major fixes to RTCP
2001-11-02 19:45 mborella
* ChangeLog (1.10), config.guess (1.2, release0-9-8), config.sub
(1.2, release0-9-8), configure (1.23), configure.in (1.24),
ipgrab.gp (1.9, release0-9-8), doc/ipgrab.texi (1.17): Updated
config.guess and config.sub
2001-11-02 00:23 mborella
* src/: Makefile.am (1.43), Makefile.in (1.43), datalink.c (1.22),
datalink.h (1.3, release0-9-8), ethertypes.c (1.6, release0-9-8),
file.c (1.1), file.h (1.1, release0-9-8), gre.c (1.11),
ip_protocols.c (1.18, release0-9-8), ipgrab.c (1.17), ppp.c
(1.13), ppp.h (1.8, release0-9-8): Added support for reading Sun
Snoop file format. In the process, completely re-architected the
read-from-file process to make it more generic.
2001-10-19 15:24 mborella
* src/: arp.c (1.20, release0-9-8), dhcp.c (1.14), display.c
(1.25): Fixed several files to compile with gcc-3.0
2001-10-12 21:45 mborella
* src/: l2tp.c (1.10, release0-9-8), tcp.c (1.23), udp.c (1.18):
Fixed L2TP lock up and ordering of port numbers.
2001-10-11 23:02 mborella
* src/rtcp.c (1.2): Added some more RTCP functionality.
2001-10-11 22:03 mborella
* src/: Makefile.am (1.42), Makefile.in (1.42), dynports.c (1.6),
ip_services.h (1.8), rtcp.c (1.1), rtcp.h (1.1, release0-9-8):
Added basic RTCP support.
2001-10-11 20:43 mborella
* src/: dynports.c (1.5), dynports.h (1.3, release0-9-8), ipv6.c
(1.13), ipv6.h (1.9, release0-9-8), ospf.c (1.13), rtp.c (1.7,
release0-9-8), rtp.h (1.5, release0-9-8): Fixed RTP support.
2001-10-09 23:20 mborella
* src/: Makefile.am (1.41), Makefile.in (1.41), datalink.c (1.21),
display.c (1.24), display.h (1.20, release0-9-8), dynports.c
(1.4), dynports.h (1.2), ftpctrl.c (1.2), ip.c (1.23),
ip_services.c (1.10), ip_services.h (1.7), local.h (1.5),
packet_manip.c (1.16, release0-9-8), packet_manip.h (1.11,
release0-9-8), state.c (1.1, release0-9-8), state.h (1.1,
release0-9-8), tcp.c (1.22), tftp.c (1.1, release0-9-8), tftp.h
(1.1, release0-9-8), udp.c (1.17): Added support for TFTP, in the
process enhanced the dynamic port mapping functionality.
2001-10-07 19:17 mborella
* src/: Makefile.am (1.40), Makefile.in (1.40), dynports.c (1.3),
ftpctrl.c (1.1), ftpctrl.h (1.1, release0-9-8), ip_services.c
(1.9), ip_services.h (1.6), packet_manip.h (1.10), parse_cl.c
(1.11, release0-9-8), parse_cl.h (1.11, release0-9-8), ppp.h
(1.7) (utags: v0-9-6): Added support for FTP control sessions.
2001-10-02 22:29 mborella
* src/: mppc.c (1.1), mppc.h (1.1) (utags: release0-9-8, v0-9-6):
Added MPPC module.
2001-10-02 22:28 mborella
* src/: Makefile.am (1.39), Makefile.in (1.39), ppp.c (1.12,
v0-9-6): [no log message]
2001-10-02 21:36 mborella
* src/: Makefile.am (1.38), Makefile.in (1.38), ccp.c (1.1,
release0-9-8, v0-9-6), ccp.h (1.1, release0-9-8, v0-9-6),
parse_cl.c (1.10), parse_cl.h (1.10), ppp.c (1.11), ppp.h (1.6):
Added CCP module.
2001-10-02 20:31 mborella
* ChangeLog (1.9), Makefile.in (1.11, release0-9-8), aclocal.m4
(1.7, release0-9-8), config.in (1.8), configure (1.22),
configure.in (1.23), doc/Makefile.in (1.6, release0-9-8),
doc/ipgrab.texi (1.16) (utags: v0-9-6): [no log message]
2001-10-02 18:37 mborella
* src/: Makefile.am (1.37), Makefile.in (1.37), cbcp.c (1.1,
release0-9-8, v0-9-6), cbcp.h (1.1, release0-9-8, v0-9-6), chap.c
(1.8, release0-9-8, v0-9-6), lcp.c (1.10, release0-9-8, v0-9-6),
ppp.c (1.10), ppp.h (1.5), pptp.c (1.12, release0-9-8, v0-9-6):
Added cbcp.h and cbcp.c for the Callback Control Protocol
2001-09-10 15:47 mborella
* src/ipgrab.c (1.16, v0-9-6): Fixed an unnecessary memory
allocation.
2001-09-07 22:50 mborella
* ipgrab.gp (1.8), src/packet_manip.c (1.15), src/padding.c (1.2,
release0-9-8), src/payload.c (1.8), src/utilities.c (1.5),
src/utilities.h (1.4) (utags: v0-9-6): Generalized the
get_packet_bytes() functions and the displaying of padding and
payload.
2001-09-07 22:17 mborella
* src/: padding.c (1.1), padding.h (1.1, release0-9-8, v0-9-6):
Module for displaying padding.
2001-09-07 22:16 mborella
* src/datalink.c (1.20, v0-9-6): Disabled payloads and padding
display in minimal mode
2001-09-07 20:59 mborella
* src/: Makefile.am (1.36), Makefile.in (1.36), arp.c (1.19,
v0-9-6), datalink.c (1.19), dhcp.c (1.13, v0-9-6), icmp.c (1.16,
v0-9-6), icmpv6.c (1.12, v0-9-6), ip.c (1.22, v0-9-6), mobileip.c
(1.10, release0-9-8, v0-9-6), ospf.c (1.12, v0-9-6),
packet_manip.c (1.14), packet_manip.h (1.9), parse_cl.c (1.9),
parse_cl.h (1.9), payload.c (1.7), snmp.c (1.10, release0-9-8,
v0-9-6), ssh.c (1.6, release0-9-8, v0-9-6), tcp.c (1.21, v0-9-6):
Developed a more generic way of handling padding in packets, by
adding an "apparent end" to packets. The apparent end is where a
protocol says that a packet ends, but the real end is where the
capture library says that the packet ends. The difference
between the two is the padding
2001-09-07 19:27 mborella
* src/: datalink.c (1.18), stats.c (1.2, release0-9-8, v0-9-6),
stats.h (1.2, release0-9-8, v0-9-6): Fixed problem with stats
counting headers encapsulated in ICMP.
2001-09-04 22:34 mborella
* tools/pmm/: main.cc (1.1), xml.cc (1.1), xml.h (1.1) (utags:
release0-9-8, v0-9-6): Initial check in
2001-09-04 22:33 mborella
* tools/pmm/: Makefile.am (1.3), Makefile.in (1.3), aclocal.m4
(1.2), configure (1.3), configure.in (1.3), field.cc (1.2),
field.h (1.2), protocol.cc (1.2), protocol.h (1.2), value.cc
(1.2), value.h (1.2), protocols/mobileip.xml (1.2) (utags:
release0-9-8, v0-9-6): Checkpoint checkin of modified pmm code
2001-07-24 22:13 mborella
* tools/pmm/: data.c (1.5), data.h (1.5): Removed C data routines.
2001-07-24 22:11 mborella
* tools/pmm/: data.c (1.4), data.h (1.4), field.cc (1.1), field.h
(1.1), main.c (1.4, release0-9-8, v0-9-6), protocol.cc (1.1),
protocol.h (1.1), utilities.c (1.2, release0-9-8, v0-9-6),
utilities.h (1.2, release0-9-8, v0-9-6), value.cc (1.1), value.h
(1.1): Initial checkin of C++ code.
2001-06-20 22:48 mborella
* tools/pmm/: data.c (1.3), data.h (1.3), main.c (1.3): Added
traverse and reading functions to the data module.
2001-06-20 20:07 mborella
* tools/pmm/: ChangeLog (1.2, release0-9-8, v0-9-6), Makefile.am
(1.2), Makefile.in (1.2), config.h (1.2, release0-9-8, v0-9-6),
config.in (1.2, release0-9-8, v0-9-6), configure (1.2),
configure.in (1.2), data.c (1.2), data.h (1.2), error.c (1.1,
release0-9-8, v0-9-6), error.h (1.1, release0-9-8, v0-9-6),
main.c (1.2), read_xml.c (1.2, release0-9-8, v0-9-6), read_xml.h
(1.2, release0-9-8, v0-9-6), utilities.c (1.1), utilities.h
(1.1): Added error and utility modules. Made the data module
more "object oriented"
2001-06-20 17:31 mborella
* tools/pmm/protocols/mobileip.xml (1.1): Added mobile XML schema.
2001-06-15 18:52 mborella
* tools/pmm/: AUTHORS (1.1, release0-9-8, v0-9-6), COPYING (1.1,
release0-9-8, v0-9-6), ChangeLog (1.1), INSTALL (1.1,
release0-9-8, v0-9-6), Makefile.am (1.1), Makefile.in (1.1), NEWS
(1.1, release0-9-8, v0-9-6), README (1.1, release0-9-8, v0-9-6),
acconfig.h (1.1, release0-9-8, v0-9-6), acinclude.m4 (1.1,
release0-9-8, v0-9-6), aclocal.m4 (1.1), config.h (1.1),
config.in (1.1), configure (1.1), configure.in (1.1), data.c
(1.1), data.h (1.1), global.h (1.1, release0-9-8, v0-9-6), main.c
(1.1), read_xml.c (1.1), read_xml.h (1.1): Initial check-in of
the bulk of the PMM code.
2001-05-28 20:39 mborella
* ChangeLog (1.8), configure (1.21), configure.in (1.22), ipgrab.gp
(1.7), doc/ipgrab.texi (1.15): Final commit for 0.9.4
2001-05-28 20:09 mborella
* src/: Makefile.am (1.35), Makefile.in (1.35), payload.c (1.6):
Marked the payload module as an application protocol so that it
doesn't print junk when -a is used.
2001-05-28 19:51 mborella
* src/: ip.c (1.21), layers.c (1.3, release0-9-8, v0-9-6),
packet_manip.c (1.13), packet_manip.h (1.8), parse_cl.c (1.8),
parse_cl.h (1.8): Added -a option for suppressing the display of
app layer data. IP module now sets the end of the packet to be
the end as given by the length of the IP packet. This helps with
tinygrams.
2001-05-28 19:24 mborella
* src/: Makefile.am (1.34), Makefile.in (1.34), ah.c (1.9, v0-9-6),
arp.c (1.18), chap.c (1.7), dhcp.c (1.12), display.c (1.23,
v0-9-6), display.h (1.19, v0-9-6), dns.c (1.20, v0-9-6), esp.c
(1.5, release0-9-8, v0-9-6), ethernet.c (1.18, release0-9-8,
v0-9-6), gre.c (1.10, v0-9-6), hexbuffer.c (1.5, release0-9-8,
v0-9-6), http.c (1.6, release0-9-8, v0-9-6), icmp.c (1.15),
icmpv6.c (1.11), igmp.c (1.10, v0-9-6), ip.c (1.20), ipcp.c (1.6,
release0-9-8, v0-9-6), ipgrab.c (1.15), ipv6.c (1.12, v0-9-6),
ipx.c (1.12, v0-9-6), ipxrip.c (1.7, v0-9-6), isakmp.c (1.10,
release0-9-8, v0-9-6), l2tp.c (1.9, v0-9-6), layers.c (1.2),
layers.h (1.2, release0-9-8, v0-9-6), lcp.c (1.9), llc.c (1.5,
release0-9-8, v0-9-6), local.h (1.4, v0-9-6), loopback.c (1.5,
release0-9-8, v0-9-6), mobileip.c (1.9), netbios_ns.c (1.7,
v0-9-6), ospf.c (1.11), packet_manip.c (1.12), ppp.c (1.9),
pppoe.c (1.5, release0-9-8, v0-9-6), pptp.c (1.11), raw.c (1.5,
release0-9-8, v0-9-6), rip.c (1.13, v0-9-6), ripng.c (1.7,
v0-9-6), rsvp.c (1.3, release0-9-8, v0-9-6), rtp.c (1.6, v0-9-6),
sdp.c (1.8, release0-9-8, v0-9-6), sip.c (1.9, release0-9-8,
v0-9-6), slip.c (1.5, release0-9-8, v0-9-6), slp.c (1.4, v0-9-6),
snmp.c (1.9), spx.c (1.6, release0-9-8, v0-9-6), ssh.c (1.5),
tcp.c (1.20), udp.c (1.16, v0-9-6): Implemented a number of
changes: 1) The big one: Made determination of protocol layer
transparent to the user of the displaying API. As long
at each protocol module tells the (new) layering module which
layer it is, the display functions will figure out whether or
not to print something. 2) Modified TCP's header length display
to include # of bytes 3) Fixed HTTP displaying to wrap headers
and to use the hexbuffer properly. 4) Fixed hexbuffer to work
properly when lines are being read.
2001-05-28 16:56 mborella
* src/: layers.c (1.1), layers.h (1.1): Added layer tracking
module.
2001-05-28 16:47 mborella
* src/template.c (1.2, release0-9-8, v0-9-6): Updated template.c to
reflect newer practices.
2001-05-18 22:07 mborella
* doc/ipgrab.texi (1.14): Documentation update.
2001-05-18 22:04 mborella
* TODO (1.16, release0-9-8, v0-9-6), configure (1.20), configure.in
(1.21), doc/ipgrab.texi (1.13): Final commit for 0.9.3
2001-05-18 21:54 mborella
* src/: arp.c (1.17), display.c (1.22), sdp.c (1.7), sdp.h (1.4,
release0-9-8, v0-9-6), sip.c (1.8): Fixed displaying issues with
SIP in minimal mode, as well as SIP interaction with SDP. SDP
now requires a length.
2001-05-18 18:04 mborella
* src/arp.c (1.16): Fixed display of excess padding packets with
media lengths that are too long.
2001-05-18 15:30 mborella
* src/: display.c (1.21), display.h (1.18), hexbuffer.c (1.4),
packet_manip.c (1.11), sdp.c (1.6), sip.c (1.7), tcp.c (1.19):
Fixed a number of issues: get_packet_line() was not returning
positive values, TCP options were being shown in -t mode, added
multiline string support, added hexbuffer support to SIP and SDP.
2001-05-17 17:58 mborella
* src/arp.c (1.15): Fixed seg fault in arp.c cause by larger than
expected padding.
2001-05-16 19:33 mborella
* ChangeLog (1.7), doc/ipgrab.texi (1.12): Final checkin for 0.9.2.
Documentation update.
2001-05-16 17:53 mborella
* src/rtp.c (1.5): Modified RTP to work with APIs.
2001-04-27 02:51 mborella
* acinclude.m4 (1.4, release0-9-8, v0-9-6), aclocal.m4 (1.6),
configure (1.19), configure.in (1.20): Fixed configurator so that
warnings appear when headers are not found
2001-04-26 23:49 mborella
* ChangeLog (1.6), configure (1.18), configure.in (1.19), ipgrab.gp
(1.6), doc/ipgrab.texi (1.11), src/dynports.c (1.2), src/gre.c
(1.9), src/mobileip.c (1.8), src/payload.c (1.5), src/rtp.c
(1.4): Added some minimal support to Mobile IP, fixed payload
implementation to use API, added support for most protocols to
dynports.c
2001-04-02 23:18 mborella
* src/: Makefile.am (1.33), Makefile.in (1.33), dynports.c (1.1),
dynports.h (1.1, v0-9-6), ip_services.c (1.8), ipgrab.c (1.14),
mobileip.c (1.7), parse_cl.c (1.7), parse_cl.h (1.7), rtp.c
(1.3), rtp.h (1.4, v0-9-6): Added dynamic port mapping, added
mobile IP registration update and registration acknowledgement.
2001-04-02 18:06 mborella
* src/Makefile.in (1.32): Fixed Makefile bad edit from last checkin
2001-04-02 18:04 mborella
* src/: Makefile.in (1.31), datalink.c (1.17): Added packet
numbering (counting) to minimal mode
2001-04-02 17:41 mborella
* src/: stats.c (1.1), stats.h (1.1): Added packet stats module for
packet counting
2001-04-02 17:41 mborella
* src/: Makefile.am (1.32), Makefile.in (1.30), ah.c (1.8), arp.c
(1.14), datalink.c (1.16), esp.c (1.4), gre.c (1.8), icmp.c
(1.14), icmpv6.c (1.10), igmp.c (1.9), ip.c (1.19), ipgrab.c
(1.13), ipv6.c (1.11), ipx.c (1.11), local.h (1.3), ospf.c
(1.10), rsvp.c (1.2), tcp.c (1.18), udp.c (1.15): Added packet
counting feature that displays counts of different packet types
2001-03-30 22:49 mborella
* ChangeLog (1.5), ipgrab.gp (1.5), doc/ipgrab.texi (1.10): General
update.
2001-03-30 15:36 mborella
* src/: datalink.c (1.15), ipgrab.c (1.12), parse_cl.c (1.6),
parse_cl.h (1.6): Added -w option for writing to packets to a
file.
2001-03-30 14:06 mborella
* src/mobileip.c (1.6): Added Mobile IP mobile/home authentication
option.
2001-03-28 19:50 mborella
* src/mobileip.c (1.5): Added critical vendor sepcific extension to
mobile ip.
2001-03-28 18:34 mborella
* src/: ethertypes.c (1.5, v0-9-6), ethertypes.h (1.5,
release0-9-8, v0-9-6), mobileip.c (1.4): Added mobile ip session
specific extension.
2001-03-28 00:43 mborella
* src/: ethertypes.c (1.4), ethertypes.h (1.4), gre.c (1.7), gre.h
(1.3, release0-9-8, v0-9-6): Finally fixed GRE issues so that old
and new versions seem to work ok.
2001-03-27 20:45 mborella
* AUTHORS (1.6, release0-9-8, v0-9-6), ChangeLog (1.4), ipgrab.gp
(1.4), doc/ipgrab.texi (1.9), src/ah.c (1.7), src/datalink.c
(1.14), src/gre.c (1.6), src/icmpv6.c (1.9), src/ip_services.c
(1.7), src/ip_services.h (1.5), src/ipv6.c (1.10), src/isakmp.c
(1.9), src/mobileip.c (1.3), src/ospf.c (1.9), src/payload.c
(1.4), src/pppoe.c (1.4), src/rip.c (1.12), src/ripng.c (1.6),
src/snmp.c (1.8), src/spx.c (1.5), src/tcp.c (1.17), src/udp.c
(1.14): Added CDMA2000 A11 support (incomplete). Fix problems
with separators.
2001-03-26 20:55 mborella
* src/: Makefile.am (1.31), Makefile.in (1.29), ip_protocols.c
(1.17, v0-9-6), ip_protocols.h (1.11, release0-9-8, v0-9-6),
rsvp.c (1.1), rsvp.h (1.1, release0-9-8, v0-9-6): Added RSVP
module which decodes the RSVP common header.
2001-03-26 17:00 mborella
* src/: open_pcap.c (1.4, release0-9-8, v0-9-6), parse_cl.c (1.5),
parse_cl.h (1.5): Added -r option. Allows packets to be read
from file given on command line rather than an interface. The
file is in the raw form, such as from tcpdump -w.
2001-01-20 00:49 mborella
* src/mobileip.c (1.2): Updates to Mobile IP
2001-01-20 00:30 mborella
* src/: Makefile.am (1.30), Makefile.in (1.28), dns.c (1.19), gre.c
(1.5), gre.h (1.2), icmp.c (1.13), icmp.h (1.6, release0-9-8,
v0-9-6), ip_services.c (1.6), ip_services.h (1.4), mobileip.c
(1.1), mobileip.h (1.1, release0-9-8, v0-9-6): Fixes to GRE v0,
added basic mobile IP support.
2001-01-17 01:22 mborella
* src/ip.c (1.18): Fixed the displaying of IP frags in both verbose
and minimal modes.
2001-01-17 00:29 mborella
* src/arp.c (1.13): Fixed ARP to display padding on Ethernet runts.
2001-01-05 19:12 mborella
* src/: chap.c (1.6), ipcp.c (1.5), lcp.c (1.8): More detailed
option output in minimal mode for LCP, CHAP, and IPCP.
2000-11-07 19:47 mborella
* configure (1.17), configure.in (1.18), doc/ipgrab.texi (1.8):
CHanged version to 0.9.
2000-11-07 19:46 mborella
* src/: Makefile.in (1.27), chap.c (1.5), ipcp.c (1.4), ipgrab.c
(1.11), isakmp.c (1.8), l2tp.c (1.8), lcp.c (1.7), ssh.c (1.4):
Fixed a few potential memory leaks.
2000-10-30 23:46 mborella
* ChangeLog (1.3), doc/ipgrab.texi (1.7): Documentation update.
2000-10-30 22:06 mborella
* src/: Makefile.am (1.29), Makefile.in (1.26), getopt.c (1.4,
release0-9-8, v0-9-6), getopt.h (1.4, release0-9-8, v0-9-6),
getopt_internal.c (1.3), parse_cl.c (1.4), parse_cl.h (1.4):
Fixed command line parsing routines and made make dist work.
2000-10-17 20:45 mborella
* src/isakmp.c (1.7): Added ISAKMP transform types and parsing.
2000-10-17 16:35 mborella
* src/: chap.c (1.4), datalink.c (1.13), display.c (1.20), error.h
(1.3, release0-9-8, v0-9-6), ipcp.c (1.3), ipgrab.c (1.10),
isakmp.c (1.6), l2tp.c (1.7), lcp.c (1.6), ssh.c (1.3),
utilities.c (1.4), utilities.h (1.3): Added my_malloc() and
my_free() routines to utilities.c for safer memory management.
Changed all modules that dynamically allocate memory to use these
routines.
2000-10-12 19:27 mborella
* src/: isakmp.c (1.5), isakmp.h (1.5, release0-9-8, v0-9-6): Added
a few basic payloads to ISAKMP.
2000-10-12 18:16 mborella
* src/: getopt.c (1.3), getopt.h (1.3): Fixed warning on freebsd
build of getopt.h and getopt.c
2000-10-12 17:03 mborella
* AUTHORS (1.5), Makefile.in (1.10), config.in (1.7), configure
(1.16), configure.in (1.17), ipgrab.gp (1.3), doc/Makefile.in
(1.5), src/Makefile.in (1.25), src/datalink.c (1.12),
src/ethernet.c (1.17), src/getopt.c (1.2), src/getopt.h (1.2),
src/getopt_internal.c (1.2), src/loopback.c (1.4), src/parse_cl.c
(1.3), src/parse_cl.h (1.3), src/raw.c (1.4), src/slip.c (1.4),
src/tcp.c (1.16): Updated getopt.h from the C library and added
conditional compilation clauses so that the non-library getopt()
functions that we include only compile if getopt_long() is not
detected.
2000-10-12 16:20 mborella
* src/pppoe.c (1.3): Yes more minor changes to PPPOE - added
hexbuffer support.
2000-10-12 16:14 mborella
* src/pppoe.c (1.2): Minor modifications to PPPOE
2000-10-12 16:05 mborella
* src/: Makefile.am (1.28), Makefile.in (1.24), datalink.c (1.11),
display.c (1.19), display.h (1.17), ethertypes.c (1.3),
ethertypes.h (1.3), pppoe.c (1.1), pppoe.h (1.1, release0-9-8,
v0-9-6), ssh.c (1.2): Added PPPOE module.
2000-10-11 19:31 mborella
* src/: Makefile.am (1.27), Makefile.in (1.23), ip_services.c
(1.5), ip_services.h (1.3), ssh.c (1.1), ssh.h (1.1,
release0-9-8, v0-9-6), utilities.c (1.3): Added SSH module, which
doesn't do much right now due to SSH's statefullness. I may be
able to figure more out later.
2000-10-10 20:33 mborella
* src/l2tp.c (1.6): Finished L2TP module (for now)
2000-10-09 20:58 mborella
* src/l2tp.c (1.5): More features added to L2TP parser.
2000-10-09 19:30 mborella
* configure (1.15), configure.in (1.16), src/ip_services.c (1.4),
src/l2tp.c (1.4), src/l2tp.h (1.4, release0-9-8, v0-9-6):
Significant upgrade to l2tp.
2000-10-02 22:37 mborella
* src/: arp.c (1.12), icmp.c (1.12), igmp.c (1.8): Added more
separators.
2000-10-02 22:33 mborella
* src/: chap.c (1.3), ethernet.c (1.16), ip.c (1.17), ipcp.c (1.2),
ipx.c (1.10), lcp.c (1.5), llc.c (1.4), netbios_ns.c (1.6), ppp.c
(1.8), pptp.c (1.10), slp.c (1.3), tcp.c (1.15), udp.c (1.13):
Added a separator "|" to most of the protocols' minimal modes.
2000-09-29 00:27 mborella
* src/: ip_services.c (1.3), ip_services.h (1.2), isakmp.c (1.4),
isakmp.h (1.4): Started working on basic ISAKMP support. Base
header is now decoded.
2000-09-28 00:45 mborella
* src/: Makefile.am (1.26), Makefile.in (1.22), ipcp.c (1.1),
ipcp.h (1.1, release0-9-8, v0-9-6), ppp.c (1.7), ppp.h (1.4):
Added initial IPCP support. Fixed bug in interpretation of
compressed PPP.
2000-09-27 23:16 mborella
* src/: display.c (1.18), display.h (1.16), gre.c (1.4), lcp.c
(1.4), pptp.c (1.9), pptp.h (1.5, release0-9-8, v0-9-6): Added a
new display method for multiline hex output. Minor fixes to LCP
and added three new methods to PPTP.
2000-09-27 19:27 mborella
* TODO (1.15), configure (1.14), configure.in (1.15),
doc/ipgrab.texi (1.6), src/ah.c (1.6, release-0_9-pre7),
src/arp.c (1.11, release-0_9-pre7), src/datalink.c (1.10,
release-0_9-pre7), src/dhcp.c (1.11, release-0_9-pre7),
src/display.c (1.17, release-0_9-pre7), src/display.h (1.15,
release-0_9-pre7), src/dns.c (1.18, release-0_9-pre7),
src/ethernet.c (1.15, release-0_9-pre7), src/http.c (1.5,
release-0_9-pre7), src/icmp.c (1.11, release-0_9-pre7),
src/icmpv6.c (1.8, release-0_9-pre7), src/igmp.c (1.7,
release-0_9-pre7), src/ipgrab.c (1.9, release-0_9-pre7),
src/ipv6.c (1.9, release-0_9-pre7), src/ipx.c (1.9,
release-0_9-pre7), src/ipxrip.c (1.6, release-0_9-pre7),
src/loopback.c (1.3, release-0_9-pre7), src/ospf.c (1.8,
release-0_9-pre7), src/packet_manip.h (1.7, release-0_9-pre7),
src/raw.c (1.3, release-0_9-pre7), src/rip.c (1.11,
release-0_9-pre7), src/ripng.c (1.5, release-0_9-pre7),
src/slip.c (1.3, release-0_9-pre7), src/spx.c (1.4,
release-0_9-pre7), src/utilities.c (1.2, release-0_9-pre7),
src/utilities.h (1.2, release-0_9-pre7): Well, well, lots of
changes and new protocols supported.
Changed string displaying routines so that they make sure a
string is actually printable before they display it.
Got rid of old way of displaying integers: DISP_2DEC, etc.
2000-09-05 21:31 mborella
* TODO (1.14): Latest misc updates
2000-09-01 22:31 mborella
* src/datalink.c (1.9): Added PPP knowledge to datalink shim.
2000-09-01 22:28 mborella
* src/ppp.c (1.6, release-0_9-pre7): Added CCP knowledge to PPP.
2000-09-01 22:23 mborella
* src/: chap.c (1.2, release-0_9-pre7), ppp.c (1.5), ppp.h (1.3,
release-0_9-pre7): CHAP is now complete (or so I hope)
2000-09-01 21:31 mborella
* src/: Makefile.am (1.25, release-0_9-pre7), Makefile.in (1.21,
release-0_9-pre7), chap.c (1.1), chap.h (1.1, release0-9-8,
v0-9-6, release-0_9-pre7), ipgrab.c (1.8), lcp.c (1.3,
release-0_9-pre7), local.h (1.2, release-0_9-pre7), ppp.c (1.4),
utilities.c (1.1), utilities.h (1.1): New modules for CHAP
decoding and utilities are now borken out in their own module.
Lots of additions to LCP support.
2000-08-31 22:56 mborella
* src/: lcp.c (1.2), ppp.c (1.3), pptp.c (1.8, release-0_9-pre7):
Further progress on LCP. Options initially supported.
2000-08-31 21:54 mborella
* src/: Makefile.am (1.24), Makefile.in (1.20), lcp.c (1.1), lcp.h
(1.1, release0-9-8, v0-9-6, release-0_9-pre7), ppp.c (1.2), ppp.h
(1.2): Added initial LCP support
2000-08-31 21:13 mborella
* src/: Makefile.am (1.23), Makefile.in (1.19), ethertypes.c (1.2,
release-0_9-pre7), ethertypes.h (1.2, release-0_9-pre7), gre.c
(1.3, release-0_9-pre7), ppp.c (1.1), ppp.h (1.1): Implemented
initial PPP support.
2000-08-31 20:29 mborella
* src/: ethertypes.c (1.1), ethertypes.h (1.1): New ethertypes
module
2000-08-31 20:28 mborella
* src/: Makefile.am (1.22), Makefile.in (1.18), arp.c (1.10),
display.c (1.16), display.h (1.14), ethernet.c (1.14), ethernet.h
(1.5, release0-9-8, v0-9-6, release-0_9-pre7), gre.c (1.2): Added
new module for calculating ether types, finished GREv1 support.
Added new display method, display_strmap_hex().
2000-08-31 17:52 mborella
* src/: Makefile.am (1.21), Makefile.in (1.17), gre.c (1.1), gre.h
(1.1, release-0_9-pre7), ip_protocols.c (1.16, release-0_9-pre7),
ip_protocols.h (1.10, release-0_9-pre7), pptp.c (1.7): Added the
beginnings of GRE support.
2000-08-30 22:35 mborella
* src/: pptp.c (1.6), pptp.h (1.4, release-0_9-pre7): Added more
PPTP support.
2000-08-30 20:23 mborella
* TODO (1.13), src/ah.c (1.5), src/ah.h (1.4, release0-9-8, v0-9-6,
release-0_9-pre7), src/arp.c (1.9), src/arp.h (1.3, release0-9-8,
v0-9-6, release-0_9-pre7), src/dhcp.c (1.10), src/dhcp.h (1.5,
release0-9-8, v0-9-6, release-0_9-pre7), src/display.c (1.15),
src/display.h (1.13), src/dns.c (1.17), src/dns.h (1.9,
release0-9-8, v0-9-6, release-0_9-pre7), src/ethernet.h (1.4),
src/global.h (1.6, release0-9-8, v0-9-6, release-0_9-pre7),
src/hexbuffer.h (1.3, release0-9-8, v0-9-6, release-0_9-pre7),
src/http.c (1.4), src/http.h (1.3, release0-9-8, v0-9-6,
release-0_9-pre7), src/icmp.c (1.10), src/icmp.h (1.5,
release-0_9-pre7), src/icmpv6.c (1.7), src/icmpv6.h (1.6,
release0-9-8, v0-9-6, release-0_9-pre7), src/igmp.c (1.6),
src/igmp.h (1.3, release0-9-8, v0-9-6, release-0_9-pre7),
src/ip.c (1.16, release-0_9-pre7), src/ip.h (1.7, release0-9-8,
v0-9-6, release-0_9-pre7), src/ipgsnmp.h (1.2, release0-9-8,
v0-9-6, release-0_9-pre7), src/ipv6.c (1.8), src/ipv6.h (1.8,
v0-9-6, release-0_9-pre7), src/ipx.c (1.8), src/ipx.h (1.4,
release0-9-8, v0-9-6, release-0_9-pre7), src/ipxrip.c (1.5),
src/ipxrip.h (1.3, release0-9-8, v0-9-6, release-0_9-pre7),
src/isakmp.h (1.3, release-0_9-pre7), src/l2tp.h (1.3,
release-0_9-pre7), src/llc.h (1.4, release0-9-8, v0-9-6,
release-0_9-pre7), src/local.h (1.1), src/loopback.h (1.3,
release0-9-8, v0-9-6, release-0_9-pre7), src/mgcp.c (1.6,
release0-9-8, v0-9-6, release-0_9-pre7), src/mgcp.h (1.4,
release0-9-8, v0-9-6, release-0_9-pre7), src/netbios_ns.h (1.5,
release0-9-8, v0-9-6, release-0_9-pre7), src/ns_labels.h (1.4,
release0-9-8, v0-9-6, release-0_9-pre7), src/open_pcap.c (1.3,
release-0_9-pre7), src/ospf.h (1.5, release0-9-8, v0-9-6,
release-0_9-pre7), src/packet_manip.c (1.10, release-0_9-pre7),
src/payload.h (1.3, release0-9-8, v0-9-6, release-0_9-pre7),
src/pptp.c (1.5), src/pptp.h (1.3), src/raw.h (1.3, release0-9-8,
v0-9-6, release-0_9-pre7), src/rip.h (1.5, release0-9-8, v0-9-6,
release-0_9-pre7), src/ripng.h (1.3, release0-9-8, v0-9-6,
release-0_9-pre7), src/rtp.h (1.3, release-0_9-pre7), src/sdp.c
(1.5, release-0_9-pre7), src/sdp.h (1.3, release-0_9-pre7),
src/sip.h (1.4, release0-9-8, v0-9-6, release-0_9-pre7),
src/slip.h (1.3, release0-9-8, v0-9-6, release-0_9-pre7),
src/slp.h (1.3, release0-9-8, v0-9-6, release-0_9-pre7),
src/snmp.c (1.7, release-0_9-pre7), src/spx.h (1.3, release0-9-8,
v0-9-6, release-0_9-pre7), src/strmap.c (1.4, release0-9-8,
v0-9-6, release-0_9-pre7), src/tcp.c (1.14, release-0_9-pre7),
src/tcp.h (1.6, release0-9-8, v0-9-6, release-0_9-pre7),
src/template.h (1.2, release0-9-8, v0-9-6, release-0_9-pre7),
src/udp.c (1.12, release-0_9-pre7), src/udp.h (1.5, release0-9-8,
v0-9-6, release-0_9-pre7): Worked header file dependencies by
breaking out library headers vs. ipgrab headers into global.h
and local.h respectively.
Added new display method, display_strmap(). Will slowly convert
to this method where appropriate.
2000-08-30 14:45 mborella
* Makefile.in (1.9), TODO (1.12), configure (1.13), doc/Makefile.in
(1.4), src/Makefile.in (1.16), src/ip_services.c (1.2,
release-0_9-pre7), src/pptp.c (1.4): Minor changes for PPTP
support.
2000-08-29 22:19 mborella
* src/: Makefile.am (1.20), Makefile.in (1.15), debug.c (1.3):
Removed debug.c
2000-08-29 21:59 mborella
* doc/Makefile.in (1.3), doc/ipgrab.texi (1.5), src/Makefile.am
(1.19), src/Makefile.in (1.14), src/ah.c (1.4), src/ah.h (1.3),
src/arp.c (1.8), src/arp.h (1.2), src/datalink.c (1.8),
src/datalink.h (1.2, v0-9-6, release-0_9-pre7), src/debug.c
(1.2), src/dhcp.c (1.9), src/dhcp.h (1.4), src/display.c (1.14),
src/display.h (1.12), src/dns.c (1.16), src/dns.h (1.8),
src/error.c (1.2, v0-9-6, release-0_9-pre7), src/error.h (1.2,
release-0_9-pre7), src/esp.c (1.3, release-0_9-pre7), src/esp.h
(1.2, release0-9-8, v0-9-6, release-0_9-pre7), src/ethernet.c
(1.13), src/global.h (1.5), src/hexbuffer.c (1.3,
release-0_9-pre7), src/hexbuffer.h (1.2), src/http.c (1.3),
src/http.h (1.2), src/icmp.c (1.9), src/icmp.h (1.4),
src/icmpv6.c (1.6), src/icmpv6.h (1.5), src/igmp.c (1.5),
src/igmp.h (1.2), src/ip.c (1.15), src/ip.h (1.6),
src/ip_protocols.c (1.15), src/ip_protocols.h (1.9),
src/ip_services.c (1.1), src/ip_services.h (1.1,
release-0_9-pre7), src/ipgrab.c (1.7), src/ipgrab.h (1.2,
release0-9-8, v0-9-6, release-0_9-pre7), src/ipv6.c (1.7),
src/ipv6.h (1.7), src/ipx.c (1.7), src/ipx.h (1.3), src/ipxrip.c
(1.4), src/ipxrip.h (1.2), src/isakmp.c (1.3, release-0_9-pre7),
src/isakmp.h (1.2), src/l2tp.c (1.3, release-0_9-pre7),
src/l2tp.h (1.2), src/llc.c (1.3, release-0_9-pre7), src/llc.h
(1.3), src/loopback.c (1.2), src/loopback.h (1.2), src/mgcp.c
(1.5), src/mgcp.h (1.3), src/netbios_ns.c (1.5,
release-0_9-pre7), src/netbios_ns.h (1.4), src/ns_labels.c (1.3,
release0-9-8, v0-9-6, release-0_9-pre7), src/ns_labels.h (1.3),
src/open_pcap.c (1.2), src/open_pcap.h (1.2, release0-9-8,
v0-9-6, release-0_9-pre7), src/ospf.c (1.7), src/ospf.h (1.4),
src/packet_manip.c (1.9), src/packet_manip.h (1.6), src/payload.c
(1.3, release-0_9-pre7), src/payload.h (1.2), src/pptp.c (1.3),
src/raw.c (1.2), src/raw.h (1.2), src/rip.c (1.10), src/rip.h
(1.4), src/ripng.c (1.4), src/ripng.h (1.2), src/rsip.c (1.2,
release0-9-8, v0-9-6, release-0_9-pre7), src/rtp.c (1.2,
release-0_9-pre7), src/rtp.h (1.2), src/sdp.c (1.4), src/sdp.h
(1.2), src/sip.c (1.6, release-0_9-pre7), src/sip.h (1.3),
src/slip.c (1.2), src/slip.h (1.2), src/slp.c (1.2,
release-0_9-pre7), src/slp.h (1.2), src/snmp.c (1.6), src/spx.c
(1.3), src/spx.h (1.2), src/strmap.c (1.3), src/strmap.h (1.3,
release0-9-8, v0-9-6, release-0_9-pre7), src/tcp.c (1.13),
src/tcp.h (1.5), src/template.c (1.1, release-0_9-pre7),
src/template.h (1.1), src/udp.c (1.11), src/udp.h (1.4): 1) Added
GPL statement to each source file. 2) Worked a little more on
the documentation. 3) Made the header file dependencies more
intelligent. 4) Broke ip_services.c modules out of
ip_protocols.c 5) Added a few more headers to configure.in. 6)
All system-dependent header file stuff is in global.h 7) Probably
a few more things I'm forgetting.
2000-08-29 21:58 mborella
* Makefile.in (1.8), TODO (1.11), config.in (1.6), configure
(1.12), configure.in (1.14): Wow, lots of changes though most are
cosmetic:
1) Added GPL statement to each source file. 2) Worked a little
more on the documentation. 3) Made the header file dependencies
more intelligent. 4) Broke ip_services.c modules out of
ip_protocols.c 5) Added a few more headers to configure.in. 6)
All system-dependent header file stuff is in global.h 7) Probably
a few more things I'm forgetting.
2000-08-21 20:55 mborella
* AUTHORS (1.4), TODO (1.10), configure (1.11), configure.in
(1.13), ipgrab.gp (1.2), src/mgcp.c (1.4): Minor fix to mgcp so
that it will compile.
2000-08-18 17:00 mborella
* src/: dns.c (1.15), ethernet.c (1.12), ip.c (1.14), ipx.c (1.6),
netbios_ns.c (1.4), netbios_ns.h (1.3), tcp.c (1.12), udp.c
(1.10): Fixed netbios ns so that it works fairly well. I think
its reasonably solid. Along the way fixed monir but nasty bugs
in the name service routines.
2000-08-17 20:12 mborella
* src/: Makefile.in (1.13), dns.c (1.14), netbios_ns.c (1.3),
ns_labels.c (1.2), ns_labels.h (1.2), protocols.h (1.14,
release0-9-8, v0-9-6, release-0_9-pre7): Eliminated a rasther
nasty stack-frame overwrite bug in the ns_labels.c module. And
there was much rejoicing.
2000-08-17 18:57 mborella
* src/: Makefile.am (1.18), dns_labels.c (1.2), dns_labels.h (1.2),
netbios_ns.c (1.2), netbios_ns.h (1.2), ns_labels.c (1.1),
ns_labels.h (1.1): Further work on netbios ns, generalized DNS /
NETBIOS NS label parsing to the ns_labels.c module.
2000-08-17 00:54 mborella
* src/: Makefile.am (1.17), Makefile.in (1.12), dns.c (1.13),
ethernet.c (1.11), ethernet.h (1.3), icmp.c (1.8), icmp.h (1.3),
ip.c (1.13), ip.h (1.5), ip_protocols.c (1.14), ipx.c (1.5),
ipx.h (1.2), llc.c (1.2), llc.h (1.2), mgcp.c (1.3), mgcp.h
(1.2), netbios_ns.c (1.1), netbios_ns.h (1.1), pptp.c (1.2),
pptp.h (1.2), protocols.h (1.13), strmap.c (1.2), tcp.c (1.11),
tcp.h (1.4), udp.c (1.9), udp.h (1.3): Basic NETBIOS NS support,
fixed a bug in map2str, linked in MGCP, but didn't quite get it
working (DOH!)
2000-08-16 21:14 mborella
* src/: arp.c (1.7), dhcp.c (1.8), dhcp.h (1.3), dns.c (1.12),
dns.h (1.7), ethernet.c (1.10), hexbuffer.c (1.2), ip.c (1.12),
ip.h (1.4), ipv6.c (1.6), ipv6.h (1.6), packet_manip.c (1.8),
tcp.c (1.10), tcp.h (1.3), udp.c (1.8), udp.h (1.2): Added hex
buffer support to more modules, fixed minor DHCP bugs.
2000-08-16 20:26 mborella
* src/: Makefile.am (1.16), Makefile.in (1.11), datalink.c (1.7),
display.c (1.13), display.h (1.11), ethernet.c (1.9), global.h
(1.4), hexbuffer.c (1.1), hexbuffer.h (1.1), ipgrab.c (1.6),
packet_manip.c (1.7), parse_cl.c (1.2, release-0_9-pre7),
parse_cl.h (1.2, release-0_9-pre7): Added basic hexbuffer
support. Tested with Ethernet, will add to other protocols.
2000-08-11 23:45 mborella
* src/: Makefile.am (1.15), Makefile.in (1.10), ethernet.c (1.8),
llc.c (1.1), llc.h (1.1), protocols.h (1.12): Added basic LLC
support. Still mostly broken...
2000-08-11 18:18 mborella
* src/: Makefile.am (1.14), Makefile.in (1.9), ip_protocols.h
(1.8), pptp.c (1.1), pptp.h (1.1), protocols.h (1.11): Initial
framework for PPTP.
2000-07-26 20:23 mborella
* src/: dhcp.c (1.7), dhcp.h (1.2), icmp.c (1.7), snmp.c (1.5):
Fixed all obvious DHCP bugs, including a segfault and a few
unknown options. Also fixed SNMP minimal mode and ICMP minimal
mode (the latter was ok, but I added the sequence number to all
ping output)
2000-07-26 18:51 mborella
* configure (1.10), configure.in (1.12), src/esp.c (1.2), src/rip.c
(1.9), src/ripng.c (1.3): Changed RIP and RIPng to print only the
number of routes seen in minimal mode, not the routes themselves.
Major fix to ESP - it was still in 0.8.x mode...seesh!
2000-06-29 19:04 mborella
* src/: Makefile.am (1.13), Makefile.in (1.8), display.c (1.12),
display.h (1.10), global.h (1.3), http.c (1.2), ospf.c (1.6),
packet_manip.c (1.6), protocols.h (1.10), rip.c (1.8), ripng.c
(1.2), sdp.h (1.1), sip.c (1.5), snmp.c (1.4): Added -Wall and
-Wstrict-prototypes to CFLAGS, which nailed a bunch of missing
include files. Many fixes later, we're compiling cleanly again.
2000-06-19 23:10 mborella
* src/: ripng.c (1.1), ripng.h (1.1): Adding RIPng support.
2000-06-19 23:09 mborella
* src/: display.h (1.9), packet_manip.h (1.5), strmap.h (1.2):
Added an include for global.h in a few files that need it.
2000-06-19 19:52 mborella
* configure (1.9), configure.in (1.11) (utags: release-0_9-pre4):
Fixed version number.
2000-06-19 19:47 mborella
* TODO (1.9), src/display.c (1.11), src/slp.c (1.1), src/slp.h
(1.1), src/udp.c (1.7) (utags: release-0_9-pre4): Fixed SLP
support, v1 seems to be working ok, v2 is not tested. Also fixed
bug in displaying routine for DISP_DEC.
2000-06-19 16:48 mborella
* src/: tcp.c (1.9, release-0_9-pre4), udp.c (1.6): Modified TCP
and UDP to use new decimal displaying API.
2000-06-19 16:41 mborella
* TODO (1.8), src/Makefile.am (1.12, release-0_9-pre4),
src/Makefile.in (1.7, release-0_9-pre4), src/display.c (1.10),
src/display.h (1.8, release-0_9-pre4), src/ip.c (1.11,
release-0_9-pre4), src/ip.h (1.3, release-0_9-pre4),
src/ip_protocols.c (1.13, release-0_9-pre4), src/ip_protocols.h
(1.7, release-0_9-pre4), src/protocols.h (1.9, release-0_9-pre4):
Made a new API display type: DISP_DEC, which replaces all decimal
type displaying functions. Required overcoming the usual hairy
byte ordering issues, and I'm hoping it isn't going to screw
anything up.
2000-06-19 15:32 mborella
* src/: arp.c (1.6), dhcp.c (1.6), dns.c (1.11), icmp.c (1.6),
icmpv6.c (1.5), igmp.c (1.4), ospf.c (1.5), rip.c (1.7) (utags:
release-0_9-pre4): Modified all files to use new address display
API (not that it makes a bit of difference to the user...) Also
tested RIPng and it seems to work ok.
2000-06-16 23:03 mborella
* TODO (1.7), src/Makefile.am (1.11), src/Makefile.in (1.6),
src/display.c (1.9), src/display.h (1.7), src/ip.c (1.10),
src/ipv6.c (1.5, release-0_9-pre4): Added special printing
functions for ipv4 and ipv6 addresses.
2000-06-16 22:28 mborella
* TODO (1.6), src/Makefile.am (1.10), src/Makefile.in (1.5),
src/arp.c (1.5), src/dhcp.c (1.5), src/icmpv6.c (1.4), src/igmp.c
(1.3), src/ip_protocols.c (1.12), src/ip_protocols.h (1.6),
src/protocols.h (1.8), src/snmp.c (1.3, release-0_9-pre4): Added
preliminary RIPng support that probably doesn't work, prettied up
ARP and IGMP, fixed SNMP so that it compiles on Freebsd.
2000-06-07 23:10 mborella
* TODO (1.5), src/icmpv6.c (1.3), src/icmpv6.h (1.4,
release-0_9-pre4): Added slightly better ICMPv6 support. Still
needs work though.
2000-06-07 15:31 mborella
* TODO (1.4), src/dns.c (1.10), src/dns.h (1.6, release-0_9-pre4):
Added IPv6 support to DNS.
2000-06-06 22:33 mborella
* Makefile.in (1.7, release-0_9-pre4), acconfig.h (1.4,
release0-9-8, v0-9-6, release-0_9-pre4), acinclude.m4 (1.3,
release-0_9-pre4), aclocal.m4 (1.5, release-0_9-pre4), config.in
(1.5, release-0_9-pre4), configure (1.8), configure.in (1.10),
src/ip_protocols.c (1.11): Made IPv6 encapsulation work (doh!)
and wrote a generic m4 macro for finding headers that may be in a
number of directories.
2000-06-05 18:52 mborella
* TODO (1.3), src/ospf.c (1.4), src/ospf.h (1.3, release-0_9-pre4):
Added support for OSPF hello header.
2000-06-01 19:28 mborella
* src/: arp.c (1.4), icmp.c (1.5) (utags: release-0_9-pre3): Added
minimal mode announcements to arp and icmp
2000-06-01 19:12 mborella
* TODO (1.2), src/icmpv6.h (1.3), src/ipx.c (1.4,
release-0_9-pre4), src/spx.c (1.2, release-0_9-pre4) (utags:
release-0_9-pre3): Added minimal mode to SPX (not complete),
added a little more support for ICMPv6 (also not complete)
2000-06-01 18:36 mborella
* Makefile.am (1.3, release0-9-8, v0-9-6, release-0_9-pre4,
release-0_9-pre3), Makefile.in (1.6, release-0_9-pre3), TODO
(1.1), doc/ipgrab.texi (1.4, release-0_9-pre4, release-0_9-pre3),
src/arp.c (1.3), src/dhcp.c (1.4, release-0_9-pre3), src/dns.c
(1.9, release-0_9-pre3), src/ethernet.c (1.7, release-0_9-pre4,
release-0_9-pre3), src/icmp.c (1.4), src/icmpv6.c (1.2,
release-0_9-pre3), src/icmpv6.h (1.2), src/igmp.c (1.2,
release-0_9-pre3), src/ip.c (1.9, release-0_9-pre3),
src/ip_protocols.c (1.10, release-0_9-pre3), src/ipv6.c (1.4,
release-0_9-pre3), src/ipx.c (1.3), src/ipxrip.c (1.3,
release-0_9-pre4, release-0_9-pre3), src/ospf.c (1.3,
release-0_9-pre3), src/rip.c (1.6, release-0_9-pre3), src/tcp.c
(1.8, release-0_9-pre3): Made sure that all string maps are
properly terminated, added TODO file, minor improvments to
ICMPv6.
2000-05-31 00:07 mborella
* src/: Makefile.am (1.9, release-0_9-pre3), Makefile.in (1.4,
release-0_9-pre3), icmpv6.c (1.1), icmpv6.h (1.1), ip_protocols.c
(1.9), ipv6.c (1.3), ipv6.h (1.5, release-0_9-pre4,
release-0_9-pre3), protocols.h (1.7, release-0_9-pre3): Added
very basic framework for ICMPv6 support. Nothing useful yet.
2000-05-30 23:10 mborella
* Makefile.in (1.5), acconfig.h (1.3, release-0_9-pre3),
acinclude.m4 (1.2, release-0_9-pre3), aclocal.m4 (1.4,
release-0_9-pre3), config.in (1.4, release-0_9-pre3), configure
(1.7, release-0_9-pre3), configure.in (1.9, release-0_9-pre3),
doc/Makefile.in (1.2, release-0_9-pre4, release-0_9-pre3),
src/Makefile.in (1.3), src/snmp.c (1.2, release-0_9-pre3): SNMP
now integrated more cleanly...I hope.
2000-05-30 22:15 mborella
* doc/ipgrab.texi (1.3), src/ip.c (1.8): Minor documentation
additions.
2000-05-30 21:37 mborella
* src/: ip.c (1.7), rip.c (1.5), tcp.c (1.7), udp.c (1.5,
release-0_9-pre3): Added dump of protocol to minimal mode.
2000-05-30 10:55 gwiley
* src/: Makefile.am (1.8), Makefile.in (1.2), ip_protocols.c (1.8),
ip_protocols.h (1.5, release-0_9-pre3), ipgsnmp.h (1.1,
release-0_9-pre4, release-0_9-pre3), protocols.h (1.6), snmp.c
(1.1): added hooks for snmp v1, v2c header dump, pdu support is
incomplete
2000-05-30 10:53 gwiley
* INSTALL (1.2, release0-9-8, v0-9-6, release-0_9-pre4,
release-0_9-pre3), README (1.2, release0-9-8, v0-9-6,
release-0_9-pre4, release-0_9-pre3), configure.in (1.8): added
notes about support for SNMP via UCD libsnmp, added
--with-snmphdr
2000-05-29 14:29 gwiley
* configure.in (1.7): added a test to allow user to specify the
pcap headers directory
2000-05-25 19:02 mborella
* src/: rip.c (1.4), rip.h (1.3, release-0_9-pre4,
release-0_9-pre3): Fixed RIP module to differentiate between RIP
v1 and v2.
2000-05-21 22:21 mborella
* Makefile.in (1.4), doc/Makefile.in (1.1), src/Makefile.in (1.1):
Added makefil.in's finally.
2000-05-21 22:20 mborella
* src/: dns.c (1.8), ip_protocols.c (1.7), rip.c (1.3), rip.h
(1.2): Fixed RIP.
2000-05-21 20:44 mborella
* src/: dns.c (1.7), dns.h (1.5, release-0_9-pre3): Finally got DNS
working. Not perfect or complete but reasonably good.
2000-05-21 19:39 mborella
* src/: Makefile.am (1.7), dns.c (1.6), dns.h (1.4), dns_labels.c
(1.1, release-0_9-pre4, release-0_9-pre3), dns_labels.h (1.1,
release-0_9-pre4, release-0_9-pre3), packet_manip.c (1.5,
release-0_9-pre4, release-0_9-pre3), packet_manip.h (1.4,
release-0_9-pre4, release-0_9-pre3): Added API for DNS label
manipulation. What a mess. Added to the packet manip API as
well, so that a place in a packet can be "marked" and the
distance from that mark can be computed.
2000-05-21 16:20 mborella
* src/: ospf.c (1.2), ospf.h (1.2, release-0_9-pre3): Tentative
OSPF support. Completely untested.
2000-05-21 15:27 mborella
* acinclude.m4 (1.1): Added acinclude for our custom m4 scripts.
2000-05-21 15:26 mborella
* aclocal.m4 (1.3), configure (1.6), configure.in (1.6),
doc/ipgrab.texi (1.2), src/Makefile.am (1.6), src/datalink.c
(1.6, release-0_9-pre4, release-0_9-pre3), src/icmp.h (1.2,
release-0_9-pre4, release-0_9-pre3), src/ip_protocols.c (1.6),
src/ip_protocols.h (1.4), src/ipgrab.c (1.5, release-0_9-pre4,
release-0_9-pre3), src/ospf.c (1.1), src/ospf.h (1.1),
src/protocols.h (1.5): Added OSPF shim. Doesn't actually work
yet. Also added autoconf hack that will look in several places
for pcap.h. Finally, added a few new IP protocols.
2000-05-13 00:57 mborella
* src/: display.c (1.8, release-0_9-pre3), dns.c (1.5), dns.h
(1.3): Fixed DNS crashes by disabling anything besides the basic
header until I get a chance to fix it. Minimal mode does nothing
so far. Also fixed a real ugly crash in the main display routine
due to the length of a label being too long.
2000-05-12 22:02 mborella
* src/: ipv6.c (1.2), ipv6.h (1.4): Fixed naasty IPv6 byteorder
problems.
2000-05-12 21:56 mborella
* src/: ah.c (1.3, release-0_9-pre4, release-0_9-pre3), ipgrab.c
(1.4), ipv6.h (1.3): Got rid of more build and dependency
problems...
2000-05-11 22:18 mborella
* src/: addrtoname.c (1.2), addrtoname.h (1.2): Fixed weird removal
errors.
2000-05-11 22:08 mborella
* doc/Makefile.am (1.2, release0-9-8, v0-9-6, release-0_9-pre4,
release-0_9-pre3): Makefile now cleans up some documentation.
2000-05-11 21:54 mborella
* doc/: mdate-sh (1.1), texinfo.tex (1.1) (utags: release-0_9-pre2,
release-0_9-pre3, release-0_9-pre4, release0-9-8, v0-9-6): Added
some more documentation files.
2000-05-11 21:52 mborella
* src/ipv6.h (1.2, release-0_9-pre2): Trying to figure out what's
wrong with these files - each of them always claims to be
modified...
2000-05-11 21:47 mborella
* src/: http.c (1.1), http.h (1.1) (utags: release-0_9-pre2,
release-0_9-pre3, release-0_9-pre4): Added HTTP support.
2000-05-11 21:33 mborella
* configure (1.5), configure.in (1.5), src/Makefile.am (1.5),
src/icmp.c (1.3), src/igmp.c (1.1), src/igmp.h (1.1,
release-0_9-pre4, release-0_9-pre3), src/ip.c (1.6), src/ip.h
(1.2, release-0_9-pre3), src/ip_protocols.c (1.5),
src/ip_protocols.h (1.3), src/protocols.h (1.4) (utags:
release-0_9-pre1, release-0_9-pre2): Lots of changes. Added IGMP
support. Fixed IP options. Added some more port mappings.
2000-05-10 20:37 mborella
* acconfig.h (1.2, release-0_9-pre2, release-0_9-pre1), config.in
(1.3, release-0_9-pre2, release-0_9-pre1), configure (1.4),
configure.in (1.4), src/Makefile.am (1.4), src/dns.c (1.4,
release-0_9-pre2, release-0_9-pre1), src/ip.c (1.5),
src/ip_protocols.c (1.4), src/packet_manip.c (1.4,
release-0_9-pre2, release-0_9-pre1), src/packet_manip.h (1.3,
release-0_9-pre2, release-0_9-pre1), src/protocols.h (1.3),
src/sdp.c (1.3, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1), src/sip.c (1.4,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), src/tcp.c (1.6, release-0_9-pre2,
release-0_9-pre1): Added HTTP support...hooohaaa! Also managed to
create a very nasty little memory overwrite bug, which
necessitated the creation of debug mode from configure.in.
2000-05-10 18:26 mborella
* src/: datalink.c (1.5, release-0_9-pre2, release-0_9-pre1),
display.c (1.7, release-0_9-pre2, release-0_9-pre1), display.h
(1.6, release-0_9-pre3, release-0_9-pre2, release-0_9-pre1),
tcp.c (1.5), tcp.h (1.2, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1): Added TCP option support,
cleaned up minimal mode, added TCP window advert to minimal mode,
added timestamp to all lines in minimal mode.
2000-05-09 22:49 mborella
* Makefile.am (1.2, release-0_9-pre2, release-0_9-pre1), configure
(1.3), configure.in (1.3), doc/Makefile.am (1.1,
release-0_9-pre2, release-0_9-pre1), doc/ipgrab.texi (1.1,
release-0_9-pre2, release-0_9-pre1), src/dhcp.c (1.3,
release-0_9-pre2, release-0_9-pre1), src/dns.c (1.3), src/dns.h
(1.2, release-0_9-pre2, release-0_9-pre1), src/ip_protocols.c
(1.3): Added documentation files. Enabled DHCP and DNS output.
Trying to fix DHCP output.
2000-05-09 19:41 mborella
* src/: display.c (1.6), display.h (1.5), icmp.c (1.2), tcp.c
(1.4): Fixed minimal mode for ICMP, fixed IPv6 header printing,
added the minimal string display mode.
2000-05-09 17:43 mborella
* src/: ethernet.c (1.6), ethernet.h (1.2, release-0_9-pre4,
release-0_9-pre3) (utags: release-0_9-pre1, release-0_9-pre2):
Made some fixes to minimal mode ethernet, so that the ethernet
type field is always displayed. However, the results are
weird...
2000-05-09 17:16 mborella
* src/: arp.c (1.2, release-0_9-pre2, release-0_9-pre1), datalink.c
(1.4), display.c (1.5), ip.c (1.4), ipx.c (1.2, release-0_9-pre2,
release-0_9-pre1), ipxrip.c (1.2, release-0_9-pre2,
release-0_9-pre1): Fixed new minimal more for IPX, IPX RIP and
ARP.
2000-05-09 00:21 mborella
* src/: dhcp.c (1.2), dns.c (1.2), ethernet.c (1.5), l2tp.c (1.2,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), payload.c (1.2, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), rip.c
(1.2, release-0_9-pre2, release-0_9-pre1), tcp.c (1.3), udp.c
(1.4, release-0_9-pre2, release-0_9-pre1): Got rid of some
warnings on FreeBSD compile.
2000-05-08 23:37 mborella
* AUTHORS (1.3, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1): Added Stuart.
2000-05-08 23:36 mborella
* src/: Makefile.am (1.3), ah.c (1.2, release-0_9-pre2,
release-0_9-pre1), ah.h (1.2, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1), display.c (1.4), display.h
(1.4), ipgrab.c (1.3, release-0_9-pre2, release-0_9-pre1),
isakmp.c (1.2, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1): Got rid of addrtoname.c
module. Functionality is now taken care of in our own way.
2000-05-08 22:55 mborella
* src/: Makefile.am (1.2), display.c (1.3), display.h (1.3),
ethernet.c (1.4), ip.c (1.3), ipv6.c (1.1, release-0_9-pre2,
release-0_9-pre1), ipv6.h (1.1, release-0_9-pre1), protocols.h
(1.2): Basic support for IPv6.
2000-05-08 22:06 mborella
* src/datalink.c (1.3): Replaced malloc.h with stdlib.h.
2000-05-08 21:18 mborella
* src/: datalink.c (1.2), display.c (1.2), display.h (1.2),
ethernet.c (1.3), ip.c (1.2), tcp.c (1.2), udp.c (1.3): Made
"minimal mode" into a one-line tcpdump-like mode.
2000-05-04 22:47 mborella
* src/: ip_protocols.c (1.2), ip_protocols.h (1.2), packet_manip.c
(1.3), sip.c (1.3), udp.c (1.2): Fixed SIP. Added application
function mapping based on port number.
2000-05-04 21:49 mborella
* src/: packet_manip.c (1.2), packet_manip.h (1.2), sdp.c (1.2),
sip.c (1.2), sip.h (1.2, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1): Minor fix in packet API. I
think I've got SIP up to date, but it may be broken...
2000-05-04 20:41 mborella
* ipgrab.gp (1.1, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1), src/Makefile.am (1.1): Added
a couple of essential files that had previosly been omitted.
2000-05-04 20:22 mborella
* Makefile.in (1.3), src/ethernet.c (1.2), src/global.h (1.2,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), src/ipgrab.c (1.2), src/mgcp.c (1.2,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), src/utils.c (1.2): Fixed a handful of
configuration issues. Unfortuantely, the move to automake broke
a couple of things. It won't build right now until I re-write
sip, sdp and mgcp.
2000-05-04 20:11 mborella
* Makefile.in (1.2), acconfig.h (1.1), aclocal.m4 (1.2,
release-0_9-pre2, release-0_9-pre1), config.in (1.2), configure
(1.2), configure.in (1.2): More configuration fixes.
2000-05-04 19:39 mborella
* AUTHORS (1.2), CHANGELOG (1.2), ChangeLog (1.2, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1),
Makefile.am (1.1): Puttered with configuration files.
2000-05-04 19:33 mborella
* AUTHORS (1.1), COPYING (1.1, release0-9-8, v0-9-6,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), ChangeLog (1.1), INSTALL (1.1,
release-0_9-pre2, release-0_9-pre1), NEWS (1.1, release0-9-8,
v0-9-6, release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), aclocal.m4 (1.1), missing (1.1, release0-9-8,
v0-9-6, release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), mkinstalldirs (1.1, release0-9-8, v0-9-6,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1): Added a bund of files to the root directory to
help with automake switchover
2000-05-04 19:30 mborella
* Makefile.in (1.1), config.guess (1.1, v0-9-6, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), config.in
(1.1), config.sub (1.1, v0-9-6, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), configure
(1.1), configure.in (1.1), install-sh (1.1, release0-9-8, v0-9-6,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), ipgrab.8 (1.1, release0-9-8, v0-9-6,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1): Added files from build directoy to root
directory.
2000-05-04 19:29 mborella
* build/: Makefile.in (1.6), VERSION (1.2), config.guess (1.2),
config.h.in (1.3), config.sub (1.2), configure (1.4),
configure.in (1.4), install-sh (1.2), ipgrab.8 (1.2): Moved files
from build directory to root directory.
2000-05-04 19:22 mborella
* main/: addrtoname.c (1.2), addrtoname.h (1.2), datalink.c (1.3),
datalink.h (1.2), debug.c (1.2), display.c (1.9), display.h
(1.9), error.c (1.2), error.h (1.2), getopt.c (1.2), getopt.h
(1.2), getopt_internal.c (1.2), global.h (1.6), ipgrab.c (1.4),
ipgrab.gp (1.2), ipgrab.h (1.2), open_pcap.c (1.3), open_pcap.h
(1.3), packet_manip.c (1.4), packet_manip.h (1.5), parse_cl.c
(1.2), parse_cl.h (1.2), strmap.c (1.2), strmap.h (1.2), utils.c
(1.2): Removed a bunch of files from main.
2000-05-04 19:21 mborella
* src/: addrtoname.c (1.1, release-0_9-pre2, release-0_9-pre1),
addrtoname.h (1.1, release-0_9-pre2, release-0_9-pre1),
datalink.c (1.1), datalink.h (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), debug.c
(1.1, release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), display.c (1.1), display.h (1.1), error.c
(1.1, release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), error.h (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), getopt.c
(1.1, release-0_9-pre7, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1), getopt.h (1.1,
release-0_9-pre7, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1), getopt_internal.c (1.1,
release-0_9-pre7, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1), global.h (1.1), ipgrab.c
(1.1), ipgrab.h (1.1, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1), open_pcap.c (1.1,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), open_pcap.h (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1),
packet_manip.c (1.1), packet_manip.h (1.1), parse_cl.c (1.1,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), parse_cl.h (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), strmap.c
(1.1, release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), strmap.h (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), utils.c
(1.1): Adding more files to src.
2000-05-04 19:16 mborella
* protocols/: arp.c (1.7), arp.h (1.6), dhcp.c (1.3), dhcp.h (1.3),
dns.c (1.3), dns.h (1.2), esp.c (1.3), esp.h (1.3), ethernet.c
(1.11), ethernet.h (1.6), icmp.c (1.6), icmp.h (1.6), ip.c (1.7),
ip.h (1.5), ip_protocols.c (1.5), ip_protocols.h (1.4), ipx.c
(1.4), ipx.h (1.5), ipxrip.c (1.4), ipxrip.h (1.4), isakmp.c
(1.4), isakmp.h (1.2), l2tp.c (1.4), l2tp.h (1.2), loopback.c
(1.4), loopback.h (1.3), mgcp.c (1.3), mgcp.h (1.2), payload.c
(1.3), payload.h (1.3), protocols.h (1.5), raw.c (1.4), raw.h
(1.3), rip.c (1.3), rip.h (1.2), rsip.c (1.3), rsip.h (1.2),
rtp.c (1.4), rtp.h (1.2), sdp.c (1.3), sip.c (1.3), sip.h (1.2),
slip.c (1.4), slip.h (1.3), spx.c (1.4), spx.h (1.4), tcp.c
(1.8), tcp.h (1.5), udp.c (1.6), udp.h (1.3): Removing more files
from protocols directory.
2000-05-04 19:12 mborella
* protocols/: ah.c (1.3), ah.h (1.3): Removing files from protocols
directory.
2000-05-04 19:11 mborella
* src/: ah.c (1.1), ah.h (1.1), arp.c (1.1), arp.h (1.1,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), dhcp.c (1.1), dhcp.h (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), dns.c
(1.1), dns.h (1.1), esp.c (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), esp.h
(1.1, release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), ethernet.c (1.1), ethernet.h (1.1), icmp.c
(1.1), icmp.h (1.1, release-0_9-pre2, release-0_9-pre1), ip.c
(1.1), ip.h (1.1), ip_protocols.c (1.1), ip_protocols.h (1.1),
ipx.c (1.1), ipx.h (1.1, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1), ipxrip.c (1.1), ipxrip.h
(1.1, release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), isakmp.c (1.1), isakmp.h (1.1,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), l2tp.c (1.1), l2tp.h (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), loopback.c
(1.1, release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), loopback.h (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), mgcp.c
(1.1), mgcp.h (1.1, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1), payload.c (1.1), payload.h
(1.1, release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), protocols.h (1.1), raw.c (1.1,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), raw.h (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), rip.c
(1.1), rip.h (1.1, release-0_9-pre2, release-0_9-pre1), rsip.c
(1.1, release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), rsip.h (1.1, release0-9-8, v0-9-6,
release-0_9-pre7, release-0_9-pre4, release-0_9-pre3,
release-0_9-pre2, release-0_9-pre1), rtp.c (1.1,
release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), rtp.h (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), sdp.c
(1.1), sip.c (1.1), sip.h (1.1), slip.c (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), slip.h
(1.1, release-0_9-pre4, release-0_9-pre3, release-0_9-pre2,
release-0_9-pre1), spx.c (1.1, release-0_9-pre2,
release-0_9-pre1), spx.h (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1), tcp.c
(1.1), tcp.h (1.1), udp.c (1.1), udp.h (1.1, release-0_9-pre4,
release-0_9-pre3, release-0_9-pre2, release-0_9-pre1): Moved a
bunch of source files to the src directory.
2000-05-04 18:57 mborella
* .ssh/known_hosts (1.2): Got rid of accidentally imported files.
2000-05-04 18:49 mborella
* protocols/: ipxrip.c (1.3), ipxrip.h (1.3): Fixed IPX RIP.
2000-05-04 18:21 mborella
* protocols/: spx.c (1.3), spx.h (1.3): Fixed SPX.
2000-05-04 00:25 mborella
* protocols/: ipx.c (1.3), ipx.h (1.4), ipxrip.c (1.2), ipxrip.h
(1.2), spx.c (1.2), spx.h (1.2): Updated IPX for new API. IPX
RIP and SPX are now slightly broken. You've been warned...
2000-05-03 23:45 mborella
* protocols/: ip.c (1.6), ip_protocols.c (1.4), ip_protocols.h
(1.3), tcp.c (1.7), tcp.h (1.4): Added display map for IP next
protocol field. Cleaned up TCP a little. Added more port
definitions to ip_protocols.
2000-05-03 22:51 mborella
* .cshrc (1.2), .login (1.2), .login_conf (1.2), .mail_aliases
(1.2), .mailrc (1.2), .profile (1.2), .rhosts (1.2), .shrc (1.2):
Delete a bunch of files that were accidentally imported.
2000-04-29 00:21 mborella
* protocols/: ethernet.c (1.10), ip_protocols.c (1.3), tcp.c (1.6),
udp.c (1.5): Port to string conversions work, but we're nowhere
near complete yet.
2000-04-28 23:43 mborella
* main/display.c (1.8), main/display.h (1.8), protocols/arp.c
(1.6), protocols/ethernet.c (1.9), protocols/ip_protocols.c
(1.2), protocols/ip_protocols.h (1.2): Fixed hex printing style.
Began implementing port to string map.
2000-04-27 15:48 dgrabelsky
* .cshrc (1.1), .login (1.1), .login_conf (1.1), .mail_aliases
(1.1), .mailrc (1.1), .profile (1.1), .rhosts (1.1), .shrc (1.1),
.ssh/known_hosts (1.1): Initial revision
2000-04-27 15:48 dgrabelsky
* .cshrc (1.1.1.1), .login (1.1.1.1), .login_conf (1.1.1.1),
.mail_aliases (1.1.1.1), .mailrc (1.1.1.1), .profile (1.1.1.1),
.rhosts (1.1.1.1), .shrc (1.1.1.1), .ssh/known_hosts (1.1.1.1)
(utags: start): [no log message]
2000-04-26 20:53 mborella
* protocols/: dhcp.c (1.2), dhcp.h (1.2), dns.c (1.2), isakmp.c
(1.3), l2tp.c (1.3), loopback.c (1.3), mgcp.c (1.2), raw.c (1.3),
rip.c (1.2), rsip.c (1.2), rtp.c (1.3), sdp.c (1.2), sip.c (1.2),
slip.c (1.3): Got rid of global packet end indicator. Fixed SIP
output with Cullen's patch, then went and broke it again (see
comments for details). Major mods to DHCP, made it work with the
new architecture.
2000-04-26 00:27 mborella
* main/: packet_manip.c (1.3), packet_manip.h (1.4): Added
functions to look at the head of the packet and to move the
pointer
2000-04-18 23:50 mborella
* protocols/: icmp.c (1.5), icmp.h (1.5): Fixed ICMP time exceeded
again.
2000-04-18 23:39 mborella
* protocols/: icmp.c (1.4), icmp.h (1.4): Fixed ICMP time exceeded
and mask request/reply.
2000-04-18 22:11 mborella
* main/display.c (1.7), protocols/icmp.c (1.3), protocols/icmp.h
(1.3): Fixed IP encapsulation in ICMP.
2000-04-18 19:52 mborella
* protocols/: ethernet.c (1.8), ip.c (1.5): Minor fixes for minimal
(-m) mode.
2000-04-18 19:25 mborella
* protocols/: isakmp.c (1.2), l2tp.c (1.2), rtp.c (1.2): Moved
extraction routines to global.h. Will do away with them soon.
2000-04-18 19:24 mborella
* build/config.h.in (1.2), build/configure (1.3),
build/configure.in (1.3), main/global.h (1.5), main/ipgrab.c
(1.3): Added packet filter stats reporting. Moved extraction
macros to global.h. Will do away with them soon.
2000-04-18 18:32 mborella
* main/datalink.c (1.2), main/packet_manip.h (1.3), protocols/arp.c
(1.5), protocols/arp.h (1.5), protocols/ethernet.c (1.7): Fixed
Ethernet timestamp. ARP now uses IANA string mechanism.
2000-04-18 17:16 mborella
* build/Makefile.in (1.5), main/global.h (1.4),
protocols/ethernet.c (1.6): Updates for IANA string printing.
2000-04-18 16:45 mborella
* main/: strmap.c (1.1), strmap.h (1.1): Added module for mapping
IANA numbers to strings in a generic fashion.
2000-04-17 23:24 mborella
* protocols/ip.h (1.4): Quick fix to ip.h.
2000-04-17 23:20 mborella
* main/display.c (1.6), main/display.h (1.7), protocols/arp.c
(1.4), protocols/ethernet.c (1.5), protocols/ethernet.h (1.5),
protocols/ip.c (1.4), protocols/ip.h (1.3): Minor fixes to
Ethernet, rudimentary support for IP options.
2000-04-17 20:54 mborella
* main/display.c (1.5), main/display.h (1.6), protocols/arp.c
(1.3), protocols/arp.h (1.4): Fixed ARP and cleaned it up.
2000-04-16 23:40 mborella
* protocols/protocols.h (1.4): Ooops, forgot this one! Minor
change, I think...
2000-04-16 23:37 mborella
* protocols/: ip_protocols.c (1.1), ip_protocols.h (1.1): New
files. Generic "next protcol" behavior for IP family, among
other things.
2000-04-16 23:30 mborella
* main/: datalink.c (1.1), datalink.h (1.1): New files. Generic
datalink target for libpcap callback.
2000-04-16 23:28 mborella
* build/Makefile.in (1.4), main/display.c (1.4), main/display.h
(1.5), main/global.h (1.3), main/ipgrab.c (1.2), main/open_pcap.c
(1.2), main/open_pcap.h (1.2), main/packet_manip.c (1.2),
main/packet_manip.h (1.2), protocols/ah.c (1.2), protocols/ah.h
(1.2), protocols/arp.c (1.2), protocols/arp.h (1.3),
protocols/esp.c (1.2), protocols/esp.h (1.2),
protocols/ethernet.c (1.4), protocols/ethernet.h (1.4),
protocols/icmp.c (1.2), protocols/icmp.h (1.2), protocols/ip.c
(1.3), protocols/ip.h (1.2), protocols/ipx.c (1.2),
protocols/ipx.h (1.3), protocols/loopback.c (1.2),
protocols/loopback.h (1.2), protocols/payload.c (1.2),
protocols/payload.h (1.2), protocols/protocols.h (1.3),
protocols/raw.c (1.2), protocols/raw.h (1.2), protocols/slip.c
(1.2), protocols/slip.h (1.2), protocols/tcp.c (1.5),
protocols/tcp.h (1.3), protocols/udp.c (1.4), protocols/udp.h
(1.2): This is a major update, maoving the base IP stack
protocols to the new generic reading and writing system. Some
stuff is still broken.
2000-04-13 20:19 mborella
* build/configure (1.2), build/configure.in (1.2), main/display.c
(1.3), main/display.h (1.4), protocols/ethernet.c (1.3),
protocols/ethernet.h (1.3), protocols/ipx.h (1.2),
protocols/tcp.c (1.4), protocols/tcp.h (1.2): Added more generic
display features, cleaned up more cruft.
2000-04-13 18:39 mborella
* main/display.c (1.2), main/display.h (1.3), main/global.h (1.2),
protocols/arp.h (1.2), protocols/ethernet.c (1.2),
protocols/protocols.h (1.2), protocols/tcp.c (1.3),
protocols/udp.c (1.3): Began to switch to generic display
mechanism. Removing cruft as well.
2000-04-13 18:30 mborella
* protocols/protocols.h (1.1): Generic include file for all
protocols
2000-04-13 16:43 mborella
* protocols/tcp.c (1.2): Added support to TCP for generic header
banners
2000-04-13 16:42 mborella
* build/Makefile.in (1.3), main/display.h (1.2),
protocols/ethernet.h (1.2), protocols/ip.c (1.2), protocols/udp.c
(1.2): Added support to some protocols for using generic header
banners
2000-04-13 16:32 mborella
* main/global.h (1.1): Added global include file -- eventually all
modules should include this
2000-04-13 16:22 mborella
* main/: display.c (1.1), display.h (1.1): Added files for generic
display formatting
2000-04-13 13:58 mborella
* main/packet_manip.h (1.1): Added packet_manip.h
2000-04-13 13:58 mborella
* main/packet_manip.c (1.1): Added packet_manip.c
2000-04-13 13:53 mborella
* build/Makefile.in (1.2): Added directive to create directory for
object code if not already made. Added packet_manip.c to list of
files to compile.
2000-04-11 17:26 mborella
* CHANGELOG (1.1.1.1), README (1.1.1.1, release-0_9-pre2,
release-0_9-pre1), build/Makefile.in (1.1.1.1), build/VERSION
(1.1.1.1), build/config.guess (1.1.1.1), build/config.h.in
(1.1.1.1), build/config.sub (1.1.1.1), build/configure (1.1.1.1),
build/configure.in (1.1.1.1), build/install-sh (1.1.1.1),
build/ipgrab.8 (1.1.1.1), main/addrtoname.c (1.1.1.1),
main/addrtoname.h (1.1.1.1), main/debug.c (1.1.1.1), main/error.c
(1.1.1.1), main/error.h (1.1.1.1), main/getopt.c (1.1.1.1),
main/getopt.h (1.1.1.1), main/getopt_internal.c (1.1.1.1),
main/ipgrab.c (1.1.1.1), main/ipgrab.gp (1.1.1.1), main/ipgrab.h
(1.1.1.1), main/open_pcap.c (1.1.1.1), main/open_pcap.h
(1.1.1.1), main/parse_cl.c (1.1.1.1), main/parse_cl.h (1.1.1.1),
main/utils.c (1.1.1.1), protocols/arp.c (1.1.1.1),
protocols/arp.h (1.1.1.1), protocols/dns.c (1.1.1.1),
protocols/dns.h (1.1.1.1), protocols/ethernet.c (1.1.1.1),
protocols/ethernet.h (1.1.1.1), protocols/icmp.c (1.1.1.1),
protocols/icmp.h (1.1.1.1), protocols/ip.c (1.1.1.1),
protocols/ip.h (1.1.1.1), protocols/ipx.c (1.1.1.1),
protocols/ipx.h (1.1.1.1), protocols/l2tp.c (1.1.1.1),
protocols/l2tp.h (1.1.1.1), protocols/spx.c (1.1.1.1),
protocols/spx.h (1.1.1.1), protocols/tcp.c (1.1.1.1),
protocols/tcp.h (1.1.1.1), protocols/udp.c (1.1.1.1),
protocols/udp.h (1.1.1.1), protocols/ah.c (1.1.1.1),
protocols/ah.h (1.1.1.1), protocols/dhcp.c (1.1.1.1),
protocols/dhcp.h (1.1.1.1), protocols/esp.c (1.1.1.1),
protocols/esp.h (1.1.1.1), protocols/ipxrip.c (1.1.1.1),
protocols/ipxrip.h (1.1.1.1), protocols/isakmp.c (1.1.1.1),
protocols/isakmp.h (1.1.1.1), protocols/loopback.c (1.1.1.1),
protocols/loopback.h (1.1.1.1), protocols/mgcp.c (1.1.1.1),
protocols/mgcp.h (1.1.1.1), protocols/payload.c (1.1.1.1),
protocols/payload.h (1.1.1.1), protocols/raw.c (1.1.1.1),
protocols/raw.h (1.1.1.1), protocols/rip.c (1.1.1.1),
protocols/rip.h (1.1.1.1), protocols/rsip.c (1.1.1.1),
protocols/rsip.h (1.1.1.1), protocols/rtp.c (1.1.1.1),
protocols/rtp.h (1.1.1.1), protocols/sdp.c (1.1.1.1),
protocols/sip.c (1.1.1.1), protocols/sip.h (1.1.1.1),
protocols/slip.c (1.1.1.1), protocols/slip.h (1.1.1.1) (utags:
start): Initial checkin of release 0.8.2 code.
2000-04-11 17:26 mborella
* CHANGELOG (1.1), README (1.1), build/Makefile.in (1.1),
build/VERSION (1.1), build/config.guess (1.1), build/config.h.in
(1.1), build/config.sub (1.1), build/configure (1.1),
build/configure.in (1.1), build/install-sh (1.1), build/ipgrab.8
(1.1), main/addrtoname.c (1.1), main/addrtoname.h (1.1),
main/debug.c (1.1), main/error.c (1.1), main/error.h (1.1),
main/getopt.c (1.1), main/getopt.h (1.1), main/getopt_internal.c
(1.1), main/ipgrab.c (1.1), main/ipgrab.gp (1.1), main/ipgrab.h
(1.1), main/open_pcap.c (1.1), main/open_pcap.h (1.1),
main/parse_cl.c (1.1), main/parse_cl.h (1.1), main/utils.c (1.1),
protocols/arp.c (1.1), protocols/arp.h (1.1), protocols/dns.c
(1.1), protocols/dns.h (1.1), protocols/ethernet.c (1.1),
protocols/ethernet.h (1.1), protocols/icmp.c (1.1),
protocols/icmp.h (1.1), protocols/ip.c (1.1), protocols/ip.h
(1.1), protocols/ipx.c (1.1), protocols/ipx.h (1.1),
protocols/l2tp.c (1.1), protocols/l2tp.h (1.1), protocols/spx.c
(1.1), protocols/spx.h (1.1), protocols/tcp.c (1.1),
protocols/tcp.h (1.1), protocols/udp.c (1.1), protocols/udp.h
(1.1), protocols/ah.c (1.1), protocols/ah.h (1.1),
protocols/dhcp.c (1.1), protocols/dhcp.h (1.1), protocols/esp.c
(1.1), protocols/esp.h (1.1), protocols/ipxrip.c (1.1),
protocols/ipxrip.h (1.1), protocols/isakmp.c (1.1),
protocols/isakmp.h (1.1), protocols/loopback.c (1.1),
protocols/loopback.h (1.1), protocols/mgcp.c (1.1),
protocols/mgcp.h (1.1), protocols/payload.c (1.1),
protocols/payload.h (1.1), protocols/raw.c (1.1), protocols/raw.h
(1.1), protocols/rip.c (1.1), protocols/rip.h (1.1),
protocols/rsip.c (1.1), protocols/rsip.h (1.1), protocols/rtp.c
(1.1), protocols/rtp.h (1.1), protocols/sdp.c (1.1),
protocols/sip.c (1.1), protocols/sip.h (1.1), protocols/slip.c
(1.1), protocols/slip.h (1.1): Initial revision
|