NetBSD/sys/netinet6
2019-01-17 02:47:15 +00:00
..
dccp6_usrreq.c Make it compile after change to non-variadic pr_input. 2018-09-15 13:33:15 +00:00
dccp6_var.h make connect syscall use sockaddr_big and modify pr_{send,connect} 2015-05-02 17:18:03 +00:00
dest6.c style 2018-04-13 11:01:14 +00:00
files.netinet6 Move udp6_output() into udp6_usrreq.c, and remove udp6_output.c. This is 2018-02-08 11:34:35 +00:00
frag6.c When reassembling IPv4/IPv6 packets, ensure each fragment has been subject 2018-05-15 19:16:38 +00:00
icmp6_private.h
icmp6.c Replace: M_COPY_PKTHDR -> m_copy_pkthdr. No functional change, since the 2018-12-22 14:07:53 +00:00
in6_cksum.c
in6_gif.c Remove now unused net_osdep.h includes, the other BSDs did the same. 2018-05-01 07:21:39 +00:00
in6_gif.h preserve gif(4) configs by psref(9) like vlan(4) and l2tp(4). 2017-11-27 05:02:22 +00:00
in6_ifattach.c Remove now unused net_osdep.h includes, the other BSDs did the same. 2018-05-01 07:21:39 +00:00
in6_ifattach.h
in6_l2tp.c fix: l2tp(4) cannot receive packets after reset session without reset tunnel. Pointed out by k-goda@IIJ 2018-09-03 02:33:30 +00:00
in6_l2tp.h add missing files. 2017-02-16 08:23:35 +00:00
in6_offload.c PR kern/53562 2018-12-12 01:40:20 +00:00
in6_offload.h PR kern/53562 2018-12-12 01:40:20 +00:00
in6_pcb.c Dedup: merge 2018-02-27 14:44:10 +00:00
in6_pcb.h Support IPv6 NAT-T. Implemented by hsuenaga@IIJ and ohishi@IIJ. 2018-11-22 04:48:34 +00:00
in6_print.c add routines to print in6_addr and sockaddr_in6 (in6_print, sin6_print) 2014-12-02 19:36:58 +00:00
in6_proto.c Retire EtherIP, we have L2TP instead. 2018-08-14 14:49:13 +00:00
in6_src.c Remove now unused net_osdep.h includes, the other BSDs did the same. 2018-05-01 07:21:39 +00:00
in6_var.h Make a deletion of in6m in nd6_rtrequest atomic 2018-05-29 04:38:29 +00:00
in6.c Don't run DAD on link-up if it's explicitly disabled 2018-11-29 09:54:22 +00:00
in6.h need <sys/endian.h> (or arpa/inet.h) for ntohl() used in macros. 2018-12-10 16:28:52 +00:00
ip6_flow.c Shorten the name of a workqueue instance to fit to the limit (15) 2018-02-06 03:37:00 +00:00
ip6_forward.c Remove now unused net_osdep.h includes, the other BSDs did the same. 2018-05-01 07:21:39 +00:00
ip6_id.c Use time_uptime instead of time_second to avoid time leaps 2015-08-07 08:11:33 +00:00
ip6_input.c Fix ipsecif(4) cannot apply input direction packet filter. Reviewed by ozaki-r@n.o and ryo@n.o. 2019-01-17 02:47:15 +00:00
ip6_mroute.c sbappendaddr() is required any lock. Currently, softnet_lock is appropriate. 2018-06-21 10:37:49 +00:00
ip6_mroute.h Remove notyet, we've never had this. 2018-05-20 06:29:43 +00:00
ip6_output.c Replace M_ALIGN and MH_ALIGN by m_align. 2018-12-22 14:28:56 +00:00
ip6_private.h
ip6_var.h Introduce and use ip_dad_enabled() and ip6_dad_enabled() functions 2018-11-29 09:51:20 +00:00
ip6protosw.h Take softnet_lock on pr_input properly if NET_MPSAFE 2017-09-27 10:05:04 +00:00
Makefile Remove netinet6/ipsec.h. 2018-09-06 19:07:13 +00:00
mld6_var.h
mld6.c Replace M_ALIGN and MH_ALIGN by m_align. 2018-12-22 14:28:56 +00:00
nd6_nbr.c Replace M_ALIGN and MH_ALIGN by m_align. 2018-12-22 14:28:56 +00:00
nd6_rtr.c Don't call find_pfxlist_reachable_router, which may sleep, in a pserialize read section 2018-08-14 01:10:58 +00:00
nd6.c netinet6: only flush prefixes and routers for the given interface. 2018-12-16 08:54:58 +00:00
nd6.h nd6: add a nonce to DaD probes in-case they are looped back to us 2018-03-06 10:57:00 +00:00
pim6_var.h - Cleanup for dynamic sysctl: 2018-08-22 01:05:21 +00:00
pim6.h
raw_ip6.c Dedup: introduce rip6_sbappendaddr. Same as IPv4. 2018-05-11 14:25:50 +00:00
raw_ip6.h - Cleanup for dynamic sysctl: 2018-08-22 01:05:21 +00:00
route6.c Remove this code, RH0 must be dropped, according to RFC5095. FreeBSD and 2018-02-01 16:23:28 +00:00
scope6_var.h PR/52472: Edgar Fuss: Document handling of scoped IPv6 addresses by embedding 2017-08-09 17:20:44 +00:00
scope6.c Remove now unused net_osdep.h includes, the other BSDs did the same. 2018-05-01 07:21:39 +00:00
sctp6_usrreq.c Remove now unused net_osdep.h includes, the other BSDs did the same. 2018-05-01 07:21:39 +00:00
sctp6_var.h Add core networking support for SCTP. 2015-10-13 21:28:34 +00:00
udp6_private.h
udp6_usrreq.c Remove unused arguments. 2018-12-27 16:59:17 +00:00
udp6_var.h Support IPv6 NAT-T. Implemented by hsuenaga@IIJ and ohishi@IIJ. 2018-11-22 04:48:34 +00:00
udp6.h