Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-05-28 | Remove unused code. | Angelos D. Keromytis | |
2001-05-28 | Deprecated IPV6_ENCAPSULATED | Angelos D. Keromytis | |
2001-05-28 | Don't check for IPV6_ENCAPSULATED, no longer needed since we have the tags. | Angelos D. Keromytis | |
2001-05-28 | Missed a DPRINTF(). | Angelos D. Keromytis | |
2001-05-28 | Use packet tags to detect loops, same as ip_output() | Angelos D. Keromytis | |
2001-05-26 | Use m_tag_init() to initialize new mbuf m_pkthdr fields, rather than | Angelos D. Keromytis | |
having to change it every time. | |||
2001-05-25 | recover old acecept(2) behavior (no ECONNABORTED) for unix domain socket. | Jun-ichiro itojun Hagino | |
it is to be friendly with postfix daemon-to-daemon communication (not 100% sure if which behavior is correct, specwise). patch similar to netbsd. | |||
2001-05-20 | Convert from tdbi to packet tags. | Angelos D. Keromytis | |
2001-05-17 | fix memory leak on ipv6 reass failure. sync with kame | Jun-ichiro itojun Hagino | |
2001-05-16 | No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok) | Hakan Olsson | |
2001-05-11 | Check m_pullup() and m_pullup2() return for NULL, not 0; itojun@ ok | Aaron Campbell | |
2001-04-14 | Minor changes, preparing for real socket-attached TDBs; also, more | Angelos D. Keromytis | |
information will be stored in the TDB. ok ho@ provos@ | |||
2001-04-11 | disallow userland programs from specifying addresses with IPV6_PKTINFO | Jun-ichiro itojun Hagino | |
setsockopt, if: - the address is not verified by DAD (= not ready) - the address is an anycast address (= not permitted as source) sync with kame | |||
2001-04-06 | Move offsetof define into sys/param.h | Constantine Sapuntzakis | |
2001-04-04 | suppress RS/RA log messages (can be re-enabled by net.inet6.icmp6.nd6_debug), | Jun-ichiro itojun Hagino | |
as they may fill up /var. sync with kame. | |||
2001-04-04 | make sure rcvif is not bogus, on call to icmp6_reflect. | Jun-ichiro itojun Hagino | |
2001-03-30 | enable FAKE_LOOPBACK_IF case by default. | Jun-ichiro itojun Hagino | |
now traffic on loopback interface will be presented to bpf as normal wire format packet (without KAME scopeid in s6_addr16[1]). fix KAME PR 250 (host mistakenly accepts packets to fe80::x%lo0). sync with kame. | |||
2001-03-30 | fix constness of IN6_{IS,ARE}_xx macros to conform to RFC2553. | Jun-ichiro itojun Hagino | |
sync with kame. | |||
2001-03-28 | Allow tdbi's to appear in mbufs throughout the stack; this allows | Angelos D. Keromytis | |
security properties of the packets to be pushed up to the application (not done yet). Eventually, this will be turned into a packet attributes framework. Make sure tdbi's are free'd/cleared properly whenever drivers (or NFS) does weird things with mbufs. | |||
2001-03-25 | re-initialize mopt in ip6_insert_jumboopt(). sync with kame | Jun-ichiro itojun Hagino | |
From: csapuntz@stanford.edu | |||
2001-03-25 | missing splx. sync with kame. | Jun-ichiro itojun Hagino | |
From: csapuntz@play-doh.stanford.edu (Constantine Sapuntzakis) | |||
2001-03-25 | sync $KAME$. | Jun-ichiro itojun Hagino | |
2001-03-25 | Missing splx. Thanks to dawson and team for finding this one | Constantine Sapuntzakis | |
2001-03-21 | in nd6_cache_lladdr(), set nd6_gctimer to ln_expire just after the state | Jun-ichiro itojun Hagino | |
transition to STALE. fixes tahi test breakage. sync with kame. | |||
2001-03-21 | set rmx_mtu to L2 interface mtu, instead of 0, on mtudisc timeout. | Jun-ichiro itojun Hagino | |
ip6_output() change is for safety. sync with kame | |||
2001-03-20 | change interpretation of net.inet6.icmp6.nodeinfo from true/fale to bitmap. | Jun-ichiro itojun Hagino | |
2001-03-16 | drop packets with link-local addresses, | Jun-ichiro itojun Hagino | |
if (internally-used) interface ID portion is already filled. sync with kame | |||
2001-03-13 | add/clearify spl for ipsec6. sync with kame. reviewed by angelos. | Jun-ichiro itojun Hagino | |
2001-03-08 | make nd6_storelladdr()'s behavior consistent about mbuf freeing on errors. | Jun-ichiro itojun Hagino | |
do not touch static ND entry on ND cache entry updates. couple of costmetic sync. sync with kame | |||
2001-03-08 | more missing splx. sync with kame | Jun-ichiro itojun Hagino | |
2001-03-08 | remove bogus rtfree. inspired by fix to PR 1706. sync with kame | Jun-ichiro itojun Hagino | |
2001-03-07 | missing splx. from aaron. sync with kame | Jun-ichiro itojun Hagino | |
2001-03-04 | avoid possible align issue. sync with kame | Jun-ichiro itojun Hagino | |
2001-03-02 | remove date string from KAME version identification, it is getting meaningless | Jun-ichiro itojun Hagino | |
as we merge random items daily. have comment that refers to kame COVERAGE document. sync with kame | |||
2001-02-23 | garbage-collect stale ND entries (default: 1 day). | Jun-ichiro itojun Hagino | |
RFC 2461 5.3. sync with kame. | |||
2001-02-23 | remove unnecessary state, ND6_LLINFO_WAITDELETE, from neighbor cache | Jun-ichiro itojun Hagino | |
state machine. no need for RTF_REJECT on neighbor cache entires, they are leftover from ARP code. sync with kame. | |||
2001-02-22 | correct behavior when ip6 reass queue reaches the upper limit. | Jun-ichiro itojun Hagino | |
2001-02-22 | be more more picky about ip6 destopt parsing. sync with kame | Jun-ichiro itojun Hagino | |
2001-02-21 | make validation code more strict for ND6/dest6 variable length headers. | Jun-ichiro itojun Hagino | |
check duplicated nd6_ifinfo table initialization in a better way. sync with kame | |||
2001-02-16 | get rid of #ifdef IPV6FIREWALL (never used, will never be used) | Jun-ichiro itojun Hagino | |
2001-02-16 | protect router list management by splsoftnet properly. sync with kame | Jun-ichiro itojun Hagino | |
2001-02-16 | oops, remove #ifdef __fooBSD__. | Jun-ichiro itojun Hagino | |
2001-02-16 | pull in new pcb notification code from kame. better handling of scope address. | Jun-ichiro itojun Hagino | |
2001-02-16 | cosmetic sync with kame | Jun-ichiro itojun Hagino | |
2001-02-16 | cosmetic. add missing IFAFREE on failure case | Jun-ichiro itojun Hagino | |
2001-02-16 | cosmetic/whitespace sync with kame | Jun-ichiro itojun Hagino | |
2001-02-16 | cosmetic/comment sync with kame | Jun-ichiro itojun Hagino | |
2001-02-16 | amove in6_{embed,recover}scope prototypes to in6_var.h (kernel only). | Jun-ichiro itojun Hagino | |
add in6_clearscope. sync better with kame | |||
2001-02-16 | set frag6_doing_reass while doing reass, to help frag6_drain. | Jun-ichiro itojun Hagino | |
2001-02-16 | sync whitespace/comment with kame. to help merge tasks | Jun-ichiro itojun Hagino | |