summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
1999-06-01Grrr, the "obvious fix" to multicasting code from yesterday wasMartin Mares
fundamentally wrong. Reversed.
1999-06-01Defined IP_PREC_INTERNET_CONTROL and made all (well, both :)) protocolsMartin Mares
use it when creating sockets.
1999-05-31Set corectly destination address for RIP multicast. Broadcasting &Pavel Machek
multicasting rip actually works [broadcasting is kind of hard to turn it on, through].
1999-05-31Added FIXME: mode broadcast randombly corrupts memory.Pavel Machek
Small cleaning and bugfixes.
1999-05-31Fix potential multicasting bug.Martin Mares
1999-05-31Kill duplicity between rif and rif_patt.Pavel Machek
1999-05-31Small fixes to rip.Pavel Machek
1999-05-31Cleanup of warningsPavel Machek
1999-05-31Incoming side of authentication done but untested. Right handling ofPavel Machek
filters in rip.
1999-05-31Added password_strncpy() which pads destination with zeros.Pavel Machek
1999-05-31Added extended attributes for rip.Pavel Machek
1999-05-31IP socket priority (sock->tos) added. Constant taken from tcpdump of CISCOOndrej Filip
and gated.
1999-05-31Some RX_Hello checks added.Ondrej Filip
1999-05-31Added extra argument to rt_update hook which contains a pointer to theMartin Mares
temporary attribute list.
1999-05-31Sending and receving of hello pkts works. No I will start building neighborOndrej Filip
database.
1999-05-31Added missing quotes.Martin Mares
1999-05-31Modified rip to new password handling in nest. Now it at least compiles.Pavel Machek
1999-05-31Added PASSIVE option to paswwords.Pavel Machek
1999-05-31Added sk_send_buffer_empty().Martin Mares
1999-05-26Make rip use newly defined password lists.Pavel Machek
1999-05-26Change format of passwords (less ;'s) and fix password.h to allowPavel Machek
multiple inclusions.
1999-05-26Example of password list usage.Pavel Machek
1999-05-26Skeleton for password handling, currently I only build structures andPavel Machek
do nothing more advanced for them
1999-05-26Added notion of datetimePavel Machek
1999-05-26Better date/time input methods need to be donePavel Machek
1999-05-24struct ospf_neigbor corrected.Ondrej Filip
1999-05-24struct ospf_neigbor added. Neigbor state machine implementation can start.Ondrej Filip
1999-05-24ifa->time split into wait_timer and hello_timer. I will send hello in ↵Ondrej Filip
WAITING state.
1999-05-24Small bug in ipv4_skip_header.Ondrej Filip
1999-05-24IP header test added.Ondrej Filip
1999-05-21Added CONFIG_MULTIPLE_TABLES whereever appropriate.Martin Mares
1999-05-21Removed one unused structure field.Martin Mares
1999-05-21Don't forget to export CPPFLAGS to GCC. :)Martin Mares
1999-05-21Added --with-sysinclude to allow explicitly setting where kernel includesMartin Mares
reside, so that you can easily switch between 2.0 and 2.2 ones. Check existence of <linux/rtnetlink.h> for linux-22 configs to make sure we're using the correct set of includes.
1999-05-17Kill remaining master_table relics in KRT code.Martin Mares
Make all protocols pass routing table to rte_update and rte_discard.
1999-05-17From now we support multiple tables. The master_table variable isMartin Mares
definitely gone. Both rte_update() and rte_discard() have an additional argument telling which table should they modify. Also, rte_update() no longer walks the whole protocol list -- each table has a list of all protocols connected to this table and having the rt_notify hook set. Each protocol can also freely decide (by calling proto_add_announce_hook) to connect to any other table, but it will be probably used only by the table-to-table protocol. The default debugging dumps now include all routing tables and also all their connections.
1999-05-17Implemented two new symbol handling functions:Martin Mares
o cf_define_symbol() -- it assigns a meaning to a symbol, bailing out if it already has one. o cf_find_symbol() -- finds symbol by name and creates it if not found. Also modified filter/config.Y to make use of the first function.
1999-05-14Added ip_skip_header() and modified OSPF to use it.Martin Mares
1999-05-14*** empty log message ***Ondrej Filip
1999-05-14Netmask checking for hello packets added.Ondrej Filip
1999-05-13Checksum control added.Ondrej Filip
1999-05-11OSPF RX implementation starts....Ondrej Filip
1999-05-11Mensi updaty do ripu. Pridana passwd autentikace (netestovano).Pavel Machek
1999-05-11Better logging output. Added 'struct proto *' info 'struct ospf iface'.Ondrej Filip
1999-05-10Added packet checksumming code. Watch the comments for an explanation.Martin Mares
1999-05-07Netlink support for secondary interface addresses.Martin Mares
1999-05-06I rewrote the interface handling code, so that it supports multipleMartin Mares
addresses per interface (needed for example for IPv6 support). Visible changes: o struct iface now contains a list of all interface addresses (represented by struct ifa), iface->addr points to the primary address (if any). o Interface has IF_UP set iff it's up and it has a primary address. o IF_UP is now independent on IF_IGNORED (i.e., you need to test IF_IGNORED in the protocols; I've added this, but please check). o The if_notify_change hook has been simplified (only one interface pointer etc.). o Introduced a ifa_notify_change hook. (For now, only the Direct protocol does use it -- it's wise to just listen to device routes in all other protocols.) o Removed IF_CHANGE_FLAGS notifier flag (it was meaningless anyway). o Updated all the code except netlink (I'll look at it tomorrow) to match the new semantics (please look at your code to ensure I did it right). Things to fix: o Netlink. o Make krt-iface interpret "eth0:1"-type aliases as secondary addresses.
1999-04-27Recognize site scope for IPv4 addresses (prefixes reserved for privateMartin Mares
networks). Removed old #ifndef logic which was used to avoid IPv4/IPv6 clashes before conditionals in Modules lists were introduced.
1999-04-27Just changes of comments.Ondrej Filip
1999-04-27Hello timer implemented.Ondrej Filip