summaryrefslogtreecommitdiff
path: root/sys/netinet
AgeCommit message (Expand)Author
2023-02-07Remove needless #ifdef INET6 from struct ether_extracted field inAlexander Bluhm
2023-02-06consolidate mbuf header parsing on device driver layerJan Klemkow
2023-01-31Remove the last ones route lock references from comments.Vitaliy Makkoveev
2023-01-31Route lock was reverted, adjust forgotten commentary.Vitaliy Makkoveev
2023-01-28Revert the `rt_lock' rwlock(9) diff to fix the recursiveVitaliy Makkoveev
2023-01-26backing "consolidate mbuf header parsing on device driver layer"Theo de Raadt
2023-01-24consolidate mbuf header parsing on device driver layerJan Klemkow
2023-01-22Move SS_CANTRCVMORE and SS_RCVATMARK bits from `so_state' to `sb_state' ofVitaliy Makkoveev
2023-01-21Introduce `rt_lock' rwlock(9) and use it instead of kernel lock toVitaliy Makkoveev
2023-01-21Introduce per-sockbuf `sb_state' to use it with SS_CANTSENDMORE.Vitaliy Makkoveev
2023-01-12Binding the accept socket in TCP input relies on the fact that theAlexander Bluhm
2022-12-27Fix array bounds mismatch with clang 15Patrick Wildt
2022-12-13In tcp_now() switch from getnsecuptime() to getnsecruntime()Claudio Jeker
2022-12-12Revert sb_state changes to unbreak tree.Theo Buehler
2022-12-11This time, socket's buffer lock requires solock() to be held. As a part ofVitaliy Makkoveev
2022-12-09Some TCP timer units have changed from slowhz to msec and theirAlexander Bluhm
2022-12-08Convert tcptv_keep_init in milliseconds before comparing other valuesYASUOKA Masahiko
2022-12-07Fix comment by splitting sentance in two. From kn@Claudio Jeker
2022-12-06Add missing kernel lock around (*if_ioctl)() call withinVitaliy Makkoveev
2022-11-19Push kernel lock into pru_control() aka. in6_control() / in_control()Klemens Nanni
2022-11-17style(9) fix. No functional change.Vitaliy Makkoveev
2022-11-11timeout(9): remove timeout_set_kclock(), TIMEOUT_INITIALIZER_KCLOCK()Scott Soule Cheloha
2022-11-09Add missin 'e' in comment.Claudio Jeker
2022-11-07Modify TCP receive buffer size auto scaling to use the smoothed RTTYASUOKA Masahiko
2022-11-05Fix kernel build without IPSEC option.Jan Klemkow
2022-10-17Change pru_abort() return type to the type of void and make pru_abort()Vitaliy Makkoveev
2022-10-03System calls should not fail due to temporary memory shortage inAlexander Bluhm
2022-09-13Change pru_rcvd() return type to the type of void. We have no interestVitaliy Makkoveev
2022-09-13Do soreceive() with shared netlock for raw sockets.Vitaliy Makkoveev
2022-09-08Rename global ifnet TAILQKlemens Nanni
2022-09-05Use shared netlock in soreceive(). The UDP and IP divert layerAlexander Bluhm
2022-09-04spellingJonathan Gray
2022-09-03Move PRU_PEERADDR request to (*pru_peeraddr)().Vitaliy Makkoveev
2022-09-03Initialize TCP mutex forgotten in previous commit.Alexander Bluhm
2022-09-03Use a mutex to update tcp_maxidle, tcp_iss, and tcp_now. ThisAlexander Bluhm
2022-09-03Move PRU_SOCKADDR request to (*pru_sockaddr)()Vitaliy Makkoveev
2022-09-02Move PRU_CONTROL request to (*pru_control)().Vitaliy Makkoveev
2022-09-01Move PRU_CONNECT2 request to (*pru_connect2)().Vitaliy Makkoveev
2022-08-31Move PRU_SENDOOB request to (*pru_sendoob)().Vitaliy Makkoveev
2022-08-30Refactor internet PCB lookup function. Rename in_pcbhashlookup()Alexander Bluhm
2022-08-30Protect the receive socket buffer in UDP input with per PCB mutex.Alexander Bluhm
2022-08-29Do not calculate the output protocol checksum in the IP input path.Alexander Bluhm
2022-08-29Sendmsg could crash in tcp_output due to a missing check after theMoritz Buhl
2022-08-29Move PRU_RCVOOB request to (*pru_rcvoob)().Vitaliy Makkoveev
2022-08-29Use struct refcnt for interface address reference counting.Alexander Bluhm
2022-08-28Move PRU_SENSE request to (*pru_sense)().Vitaliy Makkoveev
2022-08-28Move PRU_ABORT request to (*pru_abort)().Vitaliy Makkoveev
2022-08-27Move PRU_SEND request to (*pru_send)().Vitaliy Makkoveev
2022-08-26Move PRU_RCVD request to (*pru_rcvd)().Vitaliy Makkoveev
2022-08-22Move PRU_SHUTDOWN request to (*pru_shutdown)().Vitaliy Makkoveev