diff options
| author | Yoshinobu Inoue <shin@FreeBSD.org> | 2000-01-15 05:30:15 +0000 |
|---|---|---|
| committer | Yoshinobu Inoue <shin@FreeBSD.org> | 2000-01-15 05:30:15 +0000 |
| commit | 79c361bc793a1bfec2b4215577c9be0741ddd5c5 (patch) | |
| tree | fc29843b91f75c1f52aac9eb64521231a20fdebd | |
| parent | f0b421372f21034ee8c73261531a5d94e46f0a42 (diff) | |
Notes
| -rw-r--r-- | sys/netinet6/in6.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sys/netinet6/in6.h b/sys/netinet6/in6.h index b5266cee7abd..7ceaad44b0bf 100644 --- a/sys/netinet6/in6.h +++ b/sys/netinet6/in6.h @@ -562,12 +562,14 @@ void in6_sin_2_v4mapsin6_in_sock __P((struct sockaddr **nam)); __BEGIN_DECLS struct cmsghdr; -extern int inet6_option_space(int); -extern int inet6_option_init(void *, struct cmsghdr **, int); -extern int inet6_option_append(struct cmsghdr *, const u_int8_t *, int, int); -extern u_int8_t *inet6_option_alloc(struct cmsghdr *, int, int, int); -extern int inet6_option_next(const struct cmsghdr *, u_int8_t **); -extern int inet6_option_find(const struct cmsghdr *, u_int8_t **, int); +extern int inet6_option_space __P((int)); +extern int inet6_option_init __P((void *, struct cmsghdr **, int)); +extern int inet6_option_append __P((struct cmsghdr *, const u_int8_t *, + int, int)); +extern u_int8_t *inet6_option_alloc __P((struct cmsghdr *, int, int, int)); +extern int inet6_option_next __P((const struct cmsghdr *, u_int8_t **)); +extern int inet6_option_find __P((const struct cmsghdr *, u_int8_t **, + int)); extern size_t inet6_rthdr_space __P((int, int)); extern struct cmsghdr *inet6_rthdr_init __P((void *, int)); |
