Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-02-06 | - bridge_input() expects to be called at splnet(), not splsoftnet() | Jason Wright | |
- add a bit more debugging (controlled by ENCDEBUG and encdebug) - turn off several more m_flags that may have been set by the higher layers (so any sharing of mbuf's in the return direction doesn't confuse the upper layers) | |||
2001-02-06 | allow changing number of loopbacks in ukc. | Michael Shalayeff | |
change rest of the code to use lo0ifp pointing to the corresponding struct ifnet. itojun@ and niklas@ ok | |||
2001-02-05 | with a bunch of encapsulation layers, eg. (IPsec+IP+EtherIP+ether_header), | Jason Wright | |
the arp data will not necessarily be in the first mbuf: add m_pullup()'s to make it so. | |||
2001-02-03 | - define and use EtherIP version 3 (2 byte padded header instead of the | Jason Wright | |
single byte header used in V2), and drop support for V2. - that done, remove some of the buffer copies that were used as alignment shims | |||
2001-02-03 | KNF | Jason Wright | |
2001-02-02 | a quick checkpoint: | Jason Wright | |
- add a struct etherip_header (will make switching protocol versions a bit easier and give a base for aligning things correctly) - fix the version/reserved field checking for good this time - don't need to m_copydata to grab the first byte of an mbuf that you know has t hat byte - m_adj() instead of homebrew - fix M_MCAST/M_BCAST setting (cut/pasto) - if_imcasts was being updated on the wrong interface | |||
2001-02-01 | grr, don't forget to change the reserved field to the upper 4 bits of the ↵ | Jason Wright | |
header. | |||
2001-02-01 | according to the draft-housley-etherip-01, the version is in the low order | Jason Wright | |
4 bits of the header | |||
2001-02-01 | Ok, more alignment fallout (caused by a single byte header interspersed with | Jason Wright | |
nicely aligned headers)... Copy the first MHLEN worth of data into a new buffer and rebuild the mbuf to make sure that the protocol data is nicely aligned. | |||
2001-01-31 | it's obviously bed time... really avoid mbuf lossage if MGETHDR fails | Jason Wright | |
2001-01-31 | oops, avoid mbuf lossage if MGETHDR fails | Jason Wright | |
2001-01-31 | Allocate a new mbuf for the header info (struct ip + one, stupid, byte). | Jason Wright | |
This works around the fact that M_PREPEND() with a non-word sized length can leave m->m_data pointing to a non-word aligned address. | |||
2001-01-30 | re-add local ipf changes that were whacked in the 3.4.16 merge. userland to ↵ | Kjell Wooding | |
follow | |||
2001-01-30 | change ip_compat.h to ip_fil_compat.h for clarity. Impending ipf merge | Kjell Wooding | |
2001-01-22 | fix router renumbering bit decl for little endian. KAME PR 320 | Jun-ichiro itojun Hagino | |
2001-01-21 | sync router renumbering flag bit to conform to 2292bis-02 and RR RFC. | Jun-ichiro itojun Hagino | |
sync with latest kame rtadvd (again). mostly cosmetic. | |||
2001-01-19 | pull post-4.4BSD change to sys/net/route.c from BSD/OS 4.2 (UCB copyrighted). | Jun-ichiro itojun Hagino | |
have sys/net/route.c:rtrequest1(), which takes rt_addrinfo * as the argument. pass rt_addrinfo all the way down to rtrequest, and ifa->ifa_rtrequest. 3rd arg of ifa->ifa_rtrequest is now rt_addrinfo * instead of sockaddr * (almost noone is using it anyways). benefit: the follwoing command now works. previously we need two route(8) invocations, "add" then "change". # route add -inet6 default ::1 -ifp gif0 remove unsafe typecast in rtrequest(), from rtentry * to sockaddr *. it was introduced by 4.3BSD-reno and never corrected. XXX is eon_rtrequest() change correct regarding to 3rd arg? eon_rtrequest() and rtrequest() were incorrect since 4.3BSD-reno, so i do not have correct answer in the source code. someone with more clue about netiso-over-ip, please help. | |||
2001-01-17 | IPF 3.4.16. | Federico G. Schwindt | |
2001-01-17 | include sys/timeout.h. | Federico G. Schwindt | |
2001-01-17 | IPF 3.4.15. (IPv6 not working yet). | Federico G. Schwindt | |
Note: before building the userland part you need to do make includes. | |||
2001-01-15 | Careful with bitmasks (henric@aimnet.com) | Angelos D. Keromytis | |
2001-01-09 | One-byte EtherIP header, per the relevant draft (soon to be RFC). | Angelos D. Keromytis | |
* * NOTE * * This breaks backward compatibility with 2.7 and 2.8 bridges. * * NOTE * * | |||
2001-01-09 | Define version number for EtherIP protocol (soon to become RFC). | Angelos D. Keromytis | |
2000-12-31 | Fix non-NGIF case. | Angelos D. Keromytis | |
2000-12-31 | Fix non-NBRIDGE case | Angelos D. Keromytis | |
2000-12-31 | Remove debugging printf. | Angelos D. Keromytis | |
2000-12-30 | Use gif* instead of enc* for the bridge. | Angelos D. Keromytis | |
2000-12-30 | AF_LINK case. | Angelos D. Keromytis | |
2000-12-30 | Send AF_LINK to etherip_output() | Angelos D. Keromytis | |
2000-12-28 | export arprequest() and make it use ifnet* as the 1st arg; tested; angelos@ ok | Michael Shalayeff | |
2000-12-28 | Remove unused and confusing reporting line. | Angelos D. Keromytis | |
2000-12-24 | Extra argument in the function to tdb_walk(), indicating last TDB. | Angelos D. Keromytis | |
2000-12-21 | correct ipv6 path mtu discovery. | Jun-ichiro itojun Hagino | |
2000-12-18 | Minor sanity check. | Angelos D. Keromytis | |
2000-12-15 | send expire messages also for sa's that do not have been used. | Niels Provos | |
okay angelos@ | |||
2000-12-14 | Compile in non-INET6 kernels. | Angelos D. Keromytis | |
2000-12-14 | Always look for a suitable TDB if the gateway is left unspecified. | Angelos D. Keromytis | |
2000-12-13 | more random tcp sequence numbers. okay deraadt@, angelos@ | Niels Provos | |
2000-12-12 | a few more icmp types/codes; itojun@ ok (awhile ago ;) | Michael Shalayeff | |
2000-12-12 | only disable path mtu for established connections that have data to send. | Niels Provos | |
2000-12-11 | turn off path mtu when icmp needfrag messages get blocked, okay itojun@ | Niels Provos | |
2000-12-11 | nuke #ifdef TCP6 (no longer supported). | Jun-ichiro itojun Hagino | |
validate ICMPv6 too big messages (pmtud) based on pcb. we accept certain amount of non-validated ones, as IPv6 mandates ICMPv6 (so even for traffic from unconnected pcb, we need pmtud). sync with kame | |||
2000-12-09 | remove duplicated def of INET_ADDRSTRLEN. | Jun-ichiro itojun Hagino | |
2000-12-03 | Fix fastroute-related panic, fixes PR 1541 (cas@trans-nt.com) | Angelos D. Keromytis | |
2000-11-27 | Style. Parts of xcast handling needs more thought. (provos@ ok) | Hakan Olsson | |
2000-11-27 | Be more careful with ARP. Fix PR#1490. From gluk@ptci.ru | Hakan Olsson | |
2000-11-17 | All-1s addresses as policy destinations is also reserved for future | Angelos D. Keromytis | |
use (policy discovery). | |||
2000-11-17 | *HMAC96->*HMAC | Angelos D. Keromytis | |
2000-11-10 | seperate -> separate, okay aaron@ | Niels Provos | |
2000-11-07 | initialize tdb pointer correctly, from Jean-Jacques.Bernard@hsc.fr | Niels Provos | |