summaryrefslogtreecommitdiff
path: root/sys/netinet
AgeCommit message (Expand)Author
2008-05-19Unbreak builds for kernels that have atm interfaces. Found the hard way byClaudio Jeker
2008-05-15divert for ipv6; ok henning, pyrMarkus Friedl
2008-05-11Try harder to avoid corrupting the mbuf pool. Stuff any mbuf chain inKenneth R Westerback
2008-05-09more rtrequest() to rtrequest1() replacement.Claudio Jeker
2008-05-09arp entries in the routing table should have priority RTF_CONNECTEDHenning Brauer
2008-05-09should check for null pointers; from henning@Markus Friedl
2008-05-09IP_RECVDSTPORT, allows you to get the destination port of UDP datagramsMarkus Friedl
2008-05-09Add SO_BINDANY socket option from BSD/OS.Markus Friedl
2008-05-09divert packets to local socket without modifying the ip header;Markus Friedl
2008-05-07Implement routing priorities. Every route inserted has a priority assignedClaudio Jeker
2008-05-06Use the standard syslog levels on CARP logging messages instead ofRyan Thomas McBride
2008-05-06remove tcp_drain code since it's not longer used; ok henning, feedback thibMarkus Friedl
2008-05-02Make the SO_TIMESTAMP sockopt work. When set, this allows the user toChris Kuethe
2008-04-24the softnet intr handlers check if the input queue has packets onDavid Gwynne
2008-04-18extend the if_ethersubr.c crc functions to support updating a runningDamien Miller
2008-04-18use arc4random_uniform() for random number requests that are not aDamien Miller
2008-03-15revert - I'm a dumbfuck who doesn't know his own APIDamien Miller
2008-03-15off by one at end of arrayDamien Miller
2008-03-15Because the ip_id code initialisation is a specific case of shufflingDamien Miller
2008-03-02because arc4random_uniform is being used, the modulo bias is taken care ofTheo de Raadt
2008-03-02Add a arc4random_uniform() that returns a uniformly distributed numberDamien Miller
2008-02-29replacement algorithm. initialize a 64K-short buffer using DurstenfeldTheo de Raadt
2008-02-20Add my copyright.Marco Pfatschbacher
2008-02-20remove old unused TCP isn code; ok henning, dhartmei, mcbrideMarkus Friedl
2008-02-20when creating a response, use the correct TCP header instead ofMarkus Friedl
2008-02-11The TCP server has to recalculate the client's window size takenAlexander Bluhm
2008-02-05Move carp load balancing (ARP/IP) to a simpler configuration scheme.Marco Pfatschbacher
2008-01-02return with ENOTTY instead of EINVAL for unknown ioctl requests.Brad Smith
2007-12-30A struct rt_addrinfo is needed for rt_missmsg() so we can use rtrequest1()Claudio Jeker
2007-12-14add sysctl entry points into various network layers, in particular toTheo de Raadt
2007-12-13Add missing license. This file is 4.4BSD-derived with WIDE changes.Todd C. Miller
2007-12-13implement sysctls to report IP, TCP, UDP, and ICMP statistics andReyk Floeter
2007-11-27TCP_COMPAT_42 was last used in 1997. Kill it.Theo de Raadt
2007-11-27typos; ok jmc@Martynas Venckus
2007-11-27Make carp(4) behave more like a ethernet interface by initalizing theClaudio Jeker
2007-11-26MALLOC -> malloc and M_ZERO changeCharles Longeau
2007-11-26typos; ok jmc@Martynas Venckus
2007-11-24some spelling fixes from Martynas VenckusJason McIntyre
2007-11-22pass the carp ifp to rt_missmsg() when generating the RTM_ADD messagesHenning Brauer
2007-11-22Factor out the virtual host portion of carp into a separate structMarco Pfatschbacher
2007-11-19Remove the #define ENCDEBUG that slipped through somehow.Marco Pfatschbacher
2007-11-16in the strange/unnatural/ridiculous situation where a non-blockingTheo de Raadt
2007-11-16use arc4random_bytes() instead of multiple arc4random() calls;Damien Miller
2007-11-06Do not panic in arpintr() if IF_DEQUEUE returns NULL, this is perfectly legalMiod Vallat
2007-10-29MALLOC/FREE -> malloc/freeCharles Longeau
2007-10-27Replace the replay protection counter with a cookie.Marco Pfatschbacher
2007-10-17Convert MALLOC/FREE to malloc/free.Hans-Joerg Hoexer
2007-10-09MALLOC+bzero -> malloc+M_ZERO. Don't forget FREE->free this time.Kenneth R Westerback
2007-10-09MALLOC+bzero -> malloc+M_ZERO. Don't forget FREE->free this time.Kenneth R Westerback
2007-10-06Oops. Forgot to do FREE -> free when I did MALLOC -> malloc.Kenneth R Westerback