created | 2021-12-04T21:39:16Z |
---|---|
begin | 2021-12-02T00:00:00Z |
end | 2021-12-03T00:00:00Z |
path | src/sys |
commits | 3 |
date | 2021-12-02T12:39:15Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/netinet/ip_ah.c | log | diff | annotate |
src/sys/netinet/ip_ipsp.c | log | diff | annotate | |
src/sys/netinet/ipsec_input.c | log | diff | annotate | |
src/sys/netinet/ipsec_output.c | log | diff | annotate | |
src/sys/netinet/udp_usrreq.c | log | diff | annotate | |
message |
Allow to build kernel without IPSEC or INET6 defines. OK mpi@ mvs@ |
date | 2021-12-02T13:46:42Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/netinet/ipsec_input.c | log | diff | annotate |
message |
ipsec_common_input_cb() extracted the inner IP header of IPsec tunnels. It is never used, so this is useless code. Remove ipn and ip6n IP header variables and the m_copydata() to fill them. OK mvs@ kn@ sthen@ |
date | 2021-12-02T15:13:49Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/kern/tty.c | log | diff | annotate |
src/sys/kern/tty_subr.c | log | diff | annotate | |
src/sys/sys/tty.h | log | diff | annotate | |
message |
firstc() and nextc() use an int of global static storage. Make this a pointer to a local variable to allow concurrent use if that ever needs to happen in the future. ok mpi kettenis |