aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet
Commit message (Expand)AuthorAgeFilesLines
* fix security hole created by fragment cacheDarren Reed2001-04-065-10/+36
* pipe/queue are the only consumers of flow_id, so only set it in those casesBill Fumerola2001-04-061-1/+1
* MFC candidate.Jesper Skriver2001-03-283-3/+5
* MAN[1-9] -> MAN.Ruslan Ermilov2001-03-271-1/+1
* Add a missing m_pullup() before a mtod() in in_arpinput().Yaroslav Tykhiy2001-03-271-0/+6
* Replace dyn_fin_lifetime with dyn_ack_lifetime for half-closed state.Hidetoshi Shimokawa2001-03-271-1/+1
* Send the remains (such as I have located) of "block major numbers" toPoul-Henning Kamp2001-03-261-1/+0
* Make header files conform to style(9).Brian Somers2001-03-256-319/+304
* Remove an extraneous declaration.Brian Somers2001-03-251-1/+0
* IPv4 address is not unsigned int. This change introduces in_addr_t.Hajimu UMEMOTO2001-03-231-1/+1
* Remove (non-protected) variable names from function prototypes.Brian Somers2001-03-221-7/+5
* Only flush rules that have a rule number above that set by a newPaul Richards2001-03-211-8/+17
* Axe TCP_RESTRICT_RST. It was never a particularly good idea except for a fewDag-Erling Smørgrav2001-03-192-24/+2
* Invalidate cached forwarding route (ipforward_rt) whenever a new routeRuslan Ermilov2001-03-193-1/+14
* Make sure the cached forwarding route (ipforward_rt) is still up beforeRuslan Ermilov2001-03-181-19/+7
* <sys/queue.h> makeover.Poul-Henning Kamp2001-03-166-56/+48
* Fix a style(9) nit.Poul-Henning Kamp2001-03-161-1/+1
* net/route.c:Ruslan Ermilov2001-03-152-10/+19
* RFC768 (UDP) requires that "if the computed checksum is zero, itRuslan Ermilov2001-03-131-3/+5
* Count and show incoming UDP datagrams with no checksum.Ruslan Ermilov2001-03-131-1/+2
* Correctly cleanup in case of failure to bind a pcb.Poul-Henning Kamp2001-03-121-7/+10
* Unbreak LINT.Jonathan Lemon2001-03-121-5/+17
* In ip_output(), initialise `ia' in the case where the packet hasIan Dowse2001-03-111-0/+1
* Make it possible to use IP_TTL and IP_TOS setsockopt(2) optionsRuslan Ermilov2001-03-092-3/+4
* Push the test for a disconnected socket when accept()ing down to theJonathan Lemon2001-03-091-0/+8
* The TCP sequence number used for sending a RST with the ipfw reset ruleJonathan Lemon2001-03-091-1/+1
* It was possible for ip_forward() to supply to icmp_error()Ian Dowse2001-03-082-8/+17
* Modify the comments to more closely resemble the English language.Don Lewis2001-03-051-5/+4
* Move the loopback net check closer to the beginning of ip_input() so thatDon Lewis2001-03-051-14/+26
* During a flood, we don't call rtfree(), but we remove the entry ourselves.Bosko Milekic2001-03-041-13/+7
* Disable interface checking for packets subject to "ipfw fwd".Don Lewis2001-03-041-3/+4
* Disable interface checking when IP forwarding is engaged so that packetsDon Lewis2001-03-041-10/+45
* Add a new sysctl net.inet.ip.check_interface, which will verify thatJonathan Lemon2001-03-021-1/+5
* Fix jails.Poul-Henning Kamp2001-02-281-0/+3
* When iterating over our list of interface addresses in order to determineJonathan Lemon2001-02-271-14/+18
* The TCP header-specific section suffered a little bit of bitrot recently:Bill Fumerola2001-02-271-1/+1
* Use more aggressive retransmit timeouts for the initial SYN packet.Jonathan Lemon2001-02-261-1/+7
* Remove in_pcbnotify and use in_pcblookup_hash to find the cb directly.Jonathan Lemon2001-02-266-196/+72
* Remove struct full_tcpiphdr{}.Jeroen Ruigrok van der Werven2001-02-261-10/+0
* Remove conditionals for vax support.Jeroen Ruigrok van der Werven2001-02-261-5/+0
* Remove tcp_drop_all_states, which is unneeded after jlemon removed itJesper Skriver2001-02-251-1/+0
* Do not delay a new ack if there already is a delayed ack pending on theJonathan Lemon2001-02-252-10/+22
* When converting soft error into a hard error, drop the connection. TheJonathan Lemon2001-02-232-6/+14
* Allow ICMP unreachables which map into PRC_UNREACH_ADMIN_PROHIB toJonathan Lemon2001-02-234-182/+38
* Redo the security update done in rev 1.54 of src/sys/netinet/tcp_subr.cJesper Skriver2001-02-225-74/+95
* Backout change in 1.153, as it violate rfc1122 section 3.2.1.3.Jesper Skriver2001-02-211-12/+1
* o Move per-process jail pointer (p->pr_prison) to inside of the subjectRobert Watson2001-02-214-15/+19
* Only call in_pcbnotify if the src port number != 0, as weJesper Skriver2001-02-203-0/+41
* Send a ICMP unreachable instead of dropping the packet silent, if weJesper Skriver2001-02-201-1/+12
* Remove unneeded loop increment in src/sys/netinet/in_pcb.c:in_pcbnotifyJesper Skriver2001-02-201-3/+1