summaryrefslogtreecommitdiff
path: root/sys/netinet
Commit message (Expand)AuthorAgeFilesLines
* A new API function PacketAliasRedirectDynamic() can be usedRuslan Ermilov2003-06-013-1/+36
* Make the PacketAliasSetAddress() function call optional. If itRuslan Ermilov2003-06-012-11/+18
* Remove unused variables.Poul-Henning Kamp2003-06-011-15/+3
* Add /* FALLTHROUGH */Poul-Henning Kamp2003-05-312-0/+2
* Don't generate an ip_id for packets with the DF bit set; ip_id isGarrett Wollman2003-05-311-4/+17
* Correct a bug introduced with reduced TCP state handling; makeRobert Watson2003-05-075-9/+39
* Trim a call to mac_create_mbuf_from_mbuf() since m_tag meta-dataRobert Watson2003-05-061-5/+2
* Add definitions for IN6ADDR_LINKLOCAL_ALLMDNS_INIT and INADDR_ALLMDNS_GROUP.Matthew N. Dodd2003-04-291-0/+1
* IP_RECVTTL socket option.Matthew N. Dodd2003-04-294-1/+20
* Deprecate machine/limits.h in favor of new sys/limits.h.Alexander Kabaev2003-04-291-2/+1
* Explicitly declare 'int' parameters.David E. O'Brien2003-04-212-0/+2
* style.Makefile(5)David E. O'Brien2003-04-201-7/+6
* Rename MBUF_FRAG_TEST to MBUF_STRESS_TEST as it will be extendedMike Silbersack2003-04-121-3/+3
* Remove a potential panic condition introduced by reduced TCP waitRobert Watson2003-04-102-10/+30
* Introduce an M_ASSERTPKTHDR() macro which performs the very common taskDag-Erling Smørgrav2003-04-084-6/+4
* Replace memcpy() and ovbcopy() with bcopy(); ditch some caddr_t usage.Dag-Erling Smørgrav2003-04-041-7/+6
* Back out support for RFC3514.Matthew N. Dodd2003-04-026-49/+1
* - Use the correct constant define.Matthew N. Dodd2003-04-021-2/+3
* Sync constant define with NetBSD.Matthew N. Dodd2003-04-023-6/+7
* Observe conservation of packets when entering Fast Recovery whileJeffrey Hsu2003-04-013-6/+43
* Implement support for RFC 3514 (The Security Flag in the IPv4 Header).Matthew N. Dodd2003-04-016-1/+47
* Fix indentation.Maxim Konovalov2003-03-271-2/+2
* o Protect set_fs_param() by splimp(9).Maxim Konovalov2003-03-272-8/+18
* Modify the mac_init_ipq() MAC Framework entry point to accept anRobert Watson2003-03-261-1/+4
* Try to make the MBUF_FRAG_TEST code work better.Maxime Henrion2003-03-251-12/+10
* Add the MBUF_FRAG_TEST option. When compiled in, this optionMike Silbersack2003-03-251-0/+30
* Use __packed instead of __attribute__((__packed__)).Maxime Henrion2003-03-221-1/+3
* Add a sysctl node allowing the specification of an address mask to useMatthew N. Dodd2003-03-211-2/+9
* Add comments regarding the ICMP timestamp fields.Matthew N. Dodd2003-03-211-4/+4
* Add a 'verrevpath' option that verifies the interface that a packetCrist J. Clark2003-03-152-0/+52
* Greatly simplify the unlocking logic by holding the TCP protocol lock untilJeffrey Hsu2003-03-132-16/+4
* Add support for RFC 3390, which allows for a variable-sizedJeffrey Hsu2003-03-132-4/+18
* Implement the Limited Transmit algorithm (RFC 3042).Jeffrey Hsu2003-03-122-0/+28
* correct two more flag misuses; m_tag* use malloc flagsSam Leffler2003-03-121-1/+1
* Remove check for t_state == TCPS_TIME_WAIT and introduce the tw structure.Jonathan Lemon2003-03-081-13/+15
* Remove a panic(); if the zone allocator can't provide more timewaitJonathan Lemon2003-03-087-73/+116
* Finish driving a stake through the heart of netns and the associatedPeter Wemm2003-03-052-24/+0
* Update netisr handling; Each SWI now registers its queue, and all queueJonathan Lemon2003-03-046-91/+45
* More low-hanging fruit: kill caddr_t in calls to wakeup(9) / [mt]sleep(9).Dag-Erling Smørgrav2003-03-022-2/+2
* In timewait state, if the incoming segment is a pure in-sequence ackJonathan Lemon2003-02-262-4/+8
* The TCP protocol lock may still be held if the reassembly queue dropped FIN.Jonathan Lemon2003-02-262-2/+4
* Fix a condition so that ip reassembly queues are emptied immediatelyMike Silbersack2003-02-261-1/+1
* When generating a TCP response to a connection, not only test if theRobert Watson2003-02-252-2/+2
* style(9): join lines.Maxim Konovalov2003-02-251-4/+2
* Ip reassembly queue structure has ipq_nfrags now. Count a number ofMaxim Konovalov2003-02-251-7/+15
* Hold the TCP protocol lock while modifying the connection hash table.Jeffrey Hsu2003-02-251-4/+4
* Fix a comment which didn't match the new cookie behavior.Mike Silbersack2003-02-241-1/+1
* tcp_twstart() need to be called with the TCP protocol lock held to avoidJeffrey Hsu2003-02-242-12/+16
* Pass the right function to callout_reset() for a compressedJeffrey Hsu2003-02-242-2/+2
* Improve the security and performance of syncookies:Mike Silbersack2003-02-231-26/+47