OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [net/] [bsd_tcpip/] [v2_0/] [include/] [netinet6/] [nd6.h] - Diff between revs 27 and 174

Only display areas with differences | Details | Blame | View Log

Rev 27 Rev 174
//==========================================================================
//==========================================================================
//
//
//      include/netinet6/nd6.h
//      include/netinet6/nd6.h
//
//
//==========================================================================
//==========================================================================
//####BSDCOPYRIGHTBEGIN####
//####BSDCOPYRIGHTBEGIN####
//
//
// -------------------------------------------
// -------------------------------------------
//
//
// Portions of this software may have been derived from OpenBSD, 
// Portions of this software may have been derived from OpenBSD, 
// FreeBSD or other sources, and are covered by the appropriate
// FreeBSD or other sources, and are covered by the appropriate
// copyright disclaimers included herein.
// copyright disclaimers included herein.
//
//
// Portions created by Red Hat are
// Portions created by Red Hat are
// Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
// Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
//
//
// -------------------------------------------
// -------------------------------------------
//
//
//####BSDCOPYRIGHTEND####
//####BSDCOPYRIGHTEND####
//==========================================================================
//==========================================================================
 
 
/*      $KAME: nd6.h,v 1.76 2001/12/18 02:10:31 itojun Exp $    */
/*      $KAME: nd6.h,v 1.76 2001/12/18 02:10:31 itojun Exp $    */
 
 
/*
/*
 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
 * All rights reserved.
 * All rights reserved.
 *
 *
 * Redistribution and use in source and binary forms, with or without
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * modification, are permitted provided that the following conditions
 * are met:
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the name of the project nor the names of its contributors
 * 3. Neither the name of the project nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *    without specific prior written permission.
 *
 *
 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * SUCH DAMAGE.
 */
 */
 
 
#ifndef _NETINET6_ND6_H_
#ifndef _NETINET6_ND6_H_
#define _NETINET6_ND6_H_
#define _NETINET6_ND6_H_
 
 
/* see net/route.h, or net/if_inarp.h */
/* see net/route.h, or net/if_inarp.h */
#ifndef RTF_ANNOUNCE
#ifndef RTF_ANNOUNCE
#define RTF_ANNOUNCE    RTF_PROTO2
#define RTF_ANNOUNCE    RTF_PROTO2
#endif
#endif
 
 
#include <sys/queue.h>
#include <sys/queue.h>
 
 
struct  llinfo_nd6 {
struct  llinfo_nd6 {
        struct  llinfo_nd6 *ln_next;
        struct  llinfo_nd6 *ln_next;
        struct  llinfo_nd6 *ln_prev;
        struct  llinfo_nd6 *ln_prev;
        struct  rtentry *ln_rt;
        struct  rtentry *ln_rt;
        struct  mbuf *ln_hold;  /* last packet until resolved/timeout */
        struct  mbuf *ln_hold;  /* last packet until resolved/timeout */
        long    ln_asked;       /* number of queries already sent for this addr */
        long    ln_asked;       /* number of queries already sent for this addr */
        u_long  ln_expire;      /* lifetime for NDP state transition */
        u_long  ln_expire;      /* lifetime for NDP state transition */
        short   ln_state;       /* reachability state */
        short   ln_state;       /* reachability state */
        short   ln_router;      /* 2^0: ND6 router bit */
        short   ln_router;      /* 2^0: ND6 router bit */
        int     ln_byhint;      /* # of times we made it reachable by UL hint */
        int     ln_byhint;      /* # of times we made it reachable by UL hint */
};
};
 
 
#define ND6_LLINFO_NOSTATE      -2
#define ND6_LLINFO_NOSTATE      -2
/*
/*
 * We don't need the WAITDELETE state any more, but we keep the definition
 * We don't need the WAITDELETE state any more, but we keep the definition
 * in a comment line instead of removing it. This is necessary to avoid
 * in a comment line instead of removing it. This is necessary to avoid
 * unintentionally reusing the value for another purpose, which might
 * unintentionally reusing the value for another purpose, which might
 * affect backward compatibility with old applications.
 * affect backward compatibility with old applications.
 * (20000711 jinmei@kame.net)
 * (20000711 jinmei@kame.net)
 */
 */
/* #define ND6_LLINFO_WAITDELETE        -1 */
/* #define ND6_LLINFO_WAITDELETE        -1 */
#define ND6_LLINFO_INCOMPLETE   0
#define ND6_LLINFO_INCOMPLETE   0
#define ND6_LLINFO_REACHABLE    1
#define ND6_LLINFO_REACHABLE    1
#define ND6_LLINFO_STALE        2
#define ND6_LLINFO_STALE        2
#define ND6_LLINFO_DELAY        3
#define ND6_LLINFO_DELAY        3
#define ND6_LLINFO_PROBE        4
#define ND6_LLINFO_PROBE        4
 
 
#define ND6_IS_LLINFO_PROBREACH(n) ((n)->ln_state > ND6_LLINFO_INCOMPLETE)
#define ND6_IS_LLINFO_PROBREACH(n) ((n)->ln_state > ND6_LLINFO_INCOMPLETE)
 
 
struct nd_ifinfo {
struct nd_ifinfo {
        u_int32_t linkmtu;              /* LinkMTU */
        u_int32_t linkmtu;              /* LinkMTU */
        u_int32_t maxmtu;               /* Upper bound of LinkMTU */
        u_int32_t maxmtu;               /* Upper bound of LinkMTU */
        u_int32_t basereachable;        /* BaseReachableTime */
        u_int32_t basereachable;        /* BaseReachableTime */
        u_int32_t reachable;            /* Reachable Time */
        u_int32_t reachable;            /* Reachable Time */
        u_int32_t retrans;              /* Retrans Timer */
        u_int32_t retrans;              /* Retrans Timer */
        u_int32_t flags;                /* Flags */
        u_int32_t flags;                /* Flags */
        int recalctm;                   /* BaseReacable re-calculation timer */
        int recalctm;                   /* BaseReacable re-calculation timer */
        u_int8_t chlim;                 /* CurHopLimit */
        u_int8_t chlim;                 /* CurHopLimit */
        u_int8_t receivedra;
        u_int8_t receivedra;
        /* the following 3 members are for privacy extension for addrconf */
        /* the following 3 members are for privacy extension for addrconf */
        u_int8_t randomseed0[8]; /* upper 64 bits of MD5 digest */
        u_int8_t randomseed0[8]; /* upper 64 bits of MD5 digest */
        u_int8_t randomseed1[8]; /* lower 64 bits (usually the EUI64 IFID) */
        u_int8_t randomseed1[8]; /* lower 64 bits (usually the EUI64 IFID) */
        u_int8_t randomid[8];   /* current random ID */
        u_int8_t randomid[8];   /* current random ID */
};
};
 
 
#define ND6_IFF_PERFORMNUD      0x1
#define ND6_IFF_PERFORMNUD      0x1
#define ND6_IFF_ACCEPT_RTADV    0x2
#define ND6_IFF_ACCEPT_RTADV    0x2
#define ND6_IFF_PREFER_SOURCE   0x4 /* XXX: not related to ND. */
#define ND6_IFF_PREFER_SOURCE   0x4 /* XXX: not related to ND. */
 
 
struct in6_nbrinfo {
struct in6_nbrinfo {
        char ifname[IFNAMSIZ];  /* if name, e.g. "en0" */
        char ifname[IFNAMSIZ];  /* if name, e.g. "en0" */
        struct in6_addr addr;   /* IPv6 address of the neighbor */
        struct in6_addr addr;   /* IPv6 address of the neighbor */
        long    asked;          /* number of queries already sent for this addr */
        long    asked;          /* number of queries already sent for this addr */
        int     isrouter;       /* if it acts as a router */
        int     isrouter;       /* if it acts as a router */
        int     state;          /* reachability state */
        int     state;          /* reachability state */
        int     expire;         /* lifetime for NDP state transition */
        int     expire;         /* lifetime for NDP state transition */
};
};
 
 
#define DRLSTSIZ 10
#define DRLSTSIZ 10
#define PRLSTSIZ 10
#define PRLSTSIZ 10
struct  in6_drlist {
struct  in6_drlist {
        char ifname[IFNAMSIZ];
        char ifname[IFNAMSIZ];
        struct {
        struct {
                struct  in6_addr rtaddr;
                struct  in6_addr rtaddr;
                u_char  flags;
                u_char  flags;
                u_short rtlifetime;
                u_short rtlifetime;
                u_long  expire;
                u_long  expire;
                u_short if_index;
                u_short if_index;
        } defrouter[DRLSTSIZ];
        } defrouter[DRLSTSIZ];
};
};
 
 
struct  in6_defrouter {
struct  in6_defrouter {
        struct  sockaddr_in6 rtaddr;
        struct  sockaddr_in6 rtaddr;
        u_char  flags;
        u_char  flags;
        u_short rtlifetime;
        u_short rtlifetime;
        u_long  expire;
        u_long  expire;
        u_short if_index;
        u_short if_index;
};
};
 
 
#ifdef _KERNEL
#ifdef _KERNEL
struct  in6_oprlist {
struct  in6_oprlist {
        char ifname[IFNAMSIZ];
        char ifname[IFNAMSIZ];
        struct {
        struct {
                struct  in6_addr prefix;
                struct  in6_addr prefix;
                struct prf_ra raflags;
                struct prf_ra raflags;
                u_char  prefixlen;
                u_char  prefixlen;
                u_char  origin;
                u_char  origin;
                u_long vltime;
                u_long vltime;
                u_long pltime;
                u_long pltime;
                u_long expire;
                u_long expire;
                u_short if_index;
                u_short if_index;
                u_short advrtrs; /* number of advertisement routers */
                u_short advrtrs; /* number of advertisement routers */
                struct  in6_addr advrtr[DRLSTSIZ]; /* XXX: explicit limit */
                struct  in6_addr advrtr[DRLSTSIZ]; /* XXX: explicit limit */
        } prefix[PRLSTSIZ];
        } prefix[PRLSTSIZ];
};
};
#endif
#endif
 
 
struct  in6_prlist {
struct  in6_prlist {
        char ifname[IFNAMSIZ];
        char ifname[IFNAMSIZ];
        struct {
        struct {
                struct  in6_addr prefix;
                struct  in6_addr prefix;
                struct prf_ra raflags;
                struct prf_ra raflags;
                u_char  prefixlen;
                u_char  prefixlen;
                u_char  origin;
                u_char  origin;
                u_int32_t vltime;
                u_int32_t vltime;
                u_int32_t pltime;
                u_int32_t pltime;
                time_t expire;
                time_t expire;
                u_short if_index;
                u_short if_index;
                u_short advrtrs; /* number of advertisement routers */
                u_short advrtrs; /* number of advertisement routers */
                struct  in6_addr advrtr[DRLSTSIZ]; /* XXX: explicit limit */
                struct  in6_addr advrtr[DRLSTSIZ]; /* XXX: explicit limit */
        } prefix[PRLSTSIZ];
        } prefix[PRLSTSIZ];
};
};
 
 
struct in6_prefix {
struct in6_prefix {
        struct  sockaddr_in6 prefix;
        struct  sockaddr_in6 prefix;
        struct prf_ra raflags;
        struct prf_ra raflags;
        u_char  prefixlen;
        u_char  prefixlen;
        u_char  origin;
        u_char  origin;
        u_int32_t vltime;
        u_int32_t vltime;
        u_int32_t pltime;
        u_int32_t pltime;
        time_t expire;
        time_t expire;
        u_int32_t flags;
        u_int32_t flags;
        int refcnt;
        int refcnt;
        u_short if_index;
        u_short if_index;
        u_short advrtrs; /* number of advertisement routers */
        u_short advrtrs; /* number of advertisement routers */
        /* struct sockaddr_in6 advrtr[] */
        /* struct sockaddr_in6 advrtr[] */
};
};
 
 
#ifdef _KERNEL
#ifdef _KERNEL
struct  in6_ondireq {
struct  in6_ondireq {
        char ifname[IFNAMSIZ];
        char ifname[IFNAMSIZ];
        struct {
        struct {
                u_int32_t linkmtu;      /* LinkMTU */
                u_int32_t linkmtu;      /* LinkMTU */
                u_int32_t maxmtu;       /* Upper bound of LinkMTU */
                u_int32_t maxmtu;       /* Upper bound of LinkMTU */
                u_int32_t basereachable; /* BaseReachableTime */
                u_int32_t basereachable; /* BaseReachableTime */
                u_int32_t reachable;    /* Reachable Time */
                u_int32_t reachable;    /* Reachable Time */
                u_int32_t retrans;      /* Retrans Timer */
                u_int32_t retrans;      /* Retrans Timer */
                u_int32_t flags;        /* Flags */
                u_int32_t flags;        /* Flags */
                int recalctm;           /* BaseReacable re-calculation timer */
                int recalctm;           /* BaseReacable re-calculation timer */
                u_int8_t chlim;         /* CurHopLimit */
                u_int8_t chlim;         /* CurHopLimit */
                u_int8_t receivedra;
                u_int8_t receivedra;
        } ndi;
        } ndi;
};
};
#endif
#endif
 
 
struct  in6_ndireq {
struct  in6_ndireq {
        char ifname[IFNAMSIZ];
        char ifname[IFNAMSIZ];
        struct nd_ifinfo ndi;
        struct nd_ifinfo ndi;
};
};
 
 
struct  in6_ndifreq {
struct  in6_ndifreq {
        char ifname[IFNAMSIZ];
        char ifname[IFNAMSIZ];
        u_long ifindex;
        u_long ifindex;
};
};
 
 
/* Prefix status */
/* Prefix status */
#define NDPRF_ONLINK            0x1
#define NDPRF_ONLINK            0x1
#define NDPRF_DETACHED          0x2
#define NDPRF_DETACHED          0x2
#define NDPRF_HOME              0x4
#define NDPRF_HOME              0x4
 
 
/* protocol constants */
/* protocol constants */
#define MAX_RTR_SOLICITATION_DELAY      1       /* 1sec */
#define MAX_RTR_SOLICITATION_DELAY      1       /* 1sec */
#define RTR_SOLICITATION_INTERVAL       4       /* 4sec */
#define RTR_SOLICITATION_INTERVAL       4       /* 4sec */
#define MAX_RTR_SOLICITATIONS           3
#define MAX_RTR_SOLICITATIONS           3
 
 
#define ND6_INFINITE_LIFETIME           0xffffffff
#define ND6_INFINITE_LIFETIME           0xffffffff
 
 
#ifdef _KERNEL
#ifdef _KERNEL
/* node constants */
/* node constants */
#define MAX_REACHABLE_TIME              3600000 /* msec */
#define MAX_REACHABLE_TIME              3600000 /* msec */
#define REACHABLE_TIME                  30000   /* msec */
#define REACHABLE_TIME                  30000   /* msec */
#define RETRANS_TIMER                   1000    /* msec */
#define RETRANS_TIMER                   1000    /* msec */
#define MIN_RANDOM_FACTOR               512     /* 1024 * 0.5 */
#define MIN_RANDOM_FACTOR               512     /* 1024 * 0.5 */
#define MAX_RANDOM_FACTOR               1536    /* 1024 * 1.5 */
#define MAX_RANDOM_FACTOR               1536    /* 1024 * 1.5 */
#define DEF_TEMP_VALID_LIFETIME         604800  /* 1 week */
#define DEF_TEMP_VALID_LIFETIME         604800  /* 1 week */
#define DEF_TEMP_PREFERRED_LIFETIME     86400   /* 1 day */
#define DEF_TEMP_PREFERRED_LIFETIME     86400   /* 1 day */
#define TEMPADDR_REGEN_ADVANCE          5       /* sec */
#define TEMPADDR_REGEN_ADVANCE          5       /* sec */
#define MAX_TEMP_DESYNC_FACTOR          600     /* 10 min */
#define MAX_TEMP_DESYNC_FACTOR          600     /* 10 min */
#define ND_COMPUTE_RTIME(x) \
#define ND_COMPUTE_RTIME(x) \
                (((MIN_RANDOM_FACTOR * (x >> 10)) + (random() & \
                (((MIN_RANDOM_FACTOR * (x >> 10)) + (random() & \
                ((MAX_RANDOM_FACTOR - MIN_RANDOM_FACTOR) * (x >> 10)))) /1000)
                ((MAX_RANDOM_FACTOR - MIN_RANDOM_FACTOR) * (x >> 10)))) /1000)
 
 
TAILQ_HEAD(nd_drhead, nd_defrouter);
TAILQ_HEAD(nd_drhead, nd_defrouter);
struct  nd_defrouter {
struct  nd_defrouter {
        TAILQ_ENTRY(nd_defrouter) dr_entry;
        TAILQ_ENTRY(nd_defrouter) dr_entry;
        struct  in6_addr rtaddr;
        struct  in6_addr rtaddr;
        u_char  flags;          /* flags on RA message */
        u_char  flags;          /* flags on RA message */
        u_short rtlifetime;
        u_short rtlifetime;
        u_long  expire;
        u_long  expire;
        u_long  advint;         /* Mobile IPv6 addition (milliseconds) */
        u_long  advint;         /* Mobile IPv6 addition (milliseconds) */
        u_long  advint_expire;  /* Mobile IPv6 addition */
        u_long  advint_expire;  /* Mobile IPv6 addition */
        int     advints_lost;   /* Mobile IPv6 addition */
        int     advints_lost;   /* Mobile IPv6 addition */
        struct  ifnet *ifp;
        struct  ifnet *ifp;
        int     installed;      /* is installed into kernel routing table */
        int     installed;      /* is installed into kernel routing table */
};
};
 
 
struct nd_prefix {
struct nd_prefix {
        struct ifnet *ndpr_ifp;
        struct ifnet *ndpr_ifp;
        LIST_ENTRY(nd_prefix) ndpr_entry;
        LIST_ENTRY(nd_prefix) ndpr_entry;
        struct sockaddr_in6 ndpr_prefix;        /* prefix */
        struct sockaddr_in6 ndpr_prefix;        /* prefix */
        struct in6_addr ndpr_mask; /* netmask derived from the prefix */
        struct in6_addr ndpr_mask; /* netmask derived from the prefix */
 
 
        u_int32_t ndpr_vltime;  /* advertised valid lifetime */
        u_int32_t ndpr_vltime;  /* advertised valid lifetime */
        u_int32_t ndpr_pltime;  /* advertised preferred lifetime */
        u_int32_t ndpr_pltime;  /* advertised preferred lifetime */
 
 
        time_t ndpr_expire;     /* expiration time of the prefix */
        time_t ndpr_expire;     /* expiration time of the prefix */
        time_t ndpr_preferred;  /* preferred time of the prefix */
        time_t ndpr_preferred;  /* preferred time of the prefix */
        time_t ndpr_lastupdate; /* reception time of last advertisement */
        time_t ndpr_lastupdate; /* reception time of last advertisement */
 
 
        struct prf_ra ndpr_flags;
        struct prf_ra ndpr_flags;
        u_int32_t ndpr_stateflags; /* actual state flags */
        u_int32_t ndpr_stateflags; /* actual state flags */
        /* list of routers that advertise the prefix: */
        /* list of routers that advertise the prefix: */
        LIST_HEAD(pr_rtrhead, nd_pfxrouter) ndpr_advrtrs;
        LIST_HEAD(pr_rtrhead, nd_pfxrouter) ndpr_advrtrs;
        u_char  ndpr_plen;
        u_char  ndpr_plen;
        int     ndpr_refcnt;    /* reference couter from addresses */
        int     ndpr_refcnt;    /* reference couter from addresses */
};
};
 
 
#define ndpr_next               ndpr_entry.le_next
#define ndpr_next               ndpr_entry.le_next
 
 
#define ndpr_raf                ndpr_flags
#define ndpr_raf                ndpr_flags
#define ndpr_raf_onlink         ndpr_flags.onlink
#define ndpr_raf_onlink         ndpr_flags.onlink
#define ndpr_raf_auto           ndpr_flags.autonomous
#define ndpr_raf_auto           ndpr_flags.autonomous
#define ndpr_raf_router         ndpr_flags.router
#define ndpr_raf_router         ndpr_flags.router
 
 
/*
/*
 * Message format for use in obtaining information about prefixes
 * Message format for use in obtaining information about prefixes
 * from inet6 sysctl function
 * from inet6 sysctl function
 */
 */
struct inet6_ndpr_msghdr {
struct inet6_ndpr_msghdr {
        u_short inpm_msglen;    /* to skip over non-understood messages */
        u_short inpm_msglen;    /* to skip over non-understood messages */
        u_char  inpm_version;   /* future binary compatibility */
        u_char  inpm_version;   /* future binary compatibility */
        u_char  inpm_type;      /* message type */
        u_char  inpm_type;      /* message type */
        struct in6_addr inpm_prefix;
        struct in6_addr inpm_prefix;
        u_long  prm_vltim;
        u_long  prm_vltim;
        u_long  prm_pltime;
        u_long  prm_pltime;
        u_long  prm_expire;
        u_long  prm_expire;
        u_long  prm_preferred;
        u_long  prm_preferred;
        struct in6_prflags prm_flags;
        struct in6_prflags prm_flags;
        u_short prm_index;      /* index for associated ifp */
        u_short prm_index;      /* index for associated ifp */
        u_char  prm_plen;       /* length of prefix in bits */
        u_char  prm_plen;       /* length of prefix in bits */
};
};
 
 
#define prm_raf_onlink          prm_flags.prf_ra.onlink
#define prm_raf_onlink          prm_flags.prf_ra.onlink
#define prm_raf_auto            prm_flags.prf_ra.autonomous
#define prm_raf_auto            prm_flags.prf_ra.autonomous
 
 
#define prm_statef_onlink       prm_flags.prf_state.onlink
#define prm_statef_onlink       prm_flags.prf_state.onlink
 
 
#define prm_rrf_decrvalid       prm_flags.prf_rr.decrvalid
#define prm_rrf_decrvalid       prm_flags.prf_rr.decrvalid
#define prm_rrf_decrprefd       prm_flags.prf_rr.decrprefd
#define prm_rrf_decrprefd       prm_flags.prf_rr.decrprefd
 
 
#define ifpr2ndpr(ifpr) ((struct nd_prefix *)(ifpr))
#define ifpr2ndpr(ifpr) ((struct nd_prefix *)(ifpr))
#define ndpr2ifpr(ndpr) ((struct ifprefix *)(ndpr))
#define ndpr2ifpr(ndpr) ((struct ifprefix *)(ndpr))
 
 
struct nd_pfxrouter {
struct nd_pfxrouter {
        LIST_ENTRY(nd_pfxrouter) pfr_entry;
        LIST_ENTRY(nd_pfxrouter) pfr_entry;
#define pfr_next pfr_entry.le_next
#define pfr_next pfr_entry.le_next
        struct nd_defrouter *router;
        struct nd_defrouter *router;
};
};
 
 
LIST_HEAD(nd_prhead, nd_prefix);
LIST_HEAD(nd_prhead, nd_prefix);
 
 
/* nd6.c */
/* nd6.c */
extern int nd6_prune;
extern int nd6_prune;
extern int nd6_delay;
extern int nd6_delay;
extern int nd6_umaxtries;
extern int nd6_umaxtries;
extern int nd6_mmaxtries;
extern int nd6_mmaxtries;
extern int nd6_useloopback;
extern int nd6_useloopback;
extern int nd6_maxnudhint;
extern int nd6_maxnudhint;
extern int nd6_gctimer;
extern int nd6_gctimer;
extern struct llinfo_nd6 llinfo_nd6;
extern struct llinfo_nd6 llinfo_nd6;
extern struct nd_ifinfo *nd_ifinfo;
extern struct nd_ifinfo *nd_ifinfo;
extern struct nd_drhead nd_defrouter;
extern struct nd_drhead nd_defrouter;
extern struct nd_prhead nd_prefix;
extern struct nd_prhead nd_prefix;
extern int nd6_debug;
extern int nd6_debug;
 
 
#define nd6log(x)       do { if (nd6_debug) log x; } while (0)
#define nd6log(x)       do { if (nd6_debug) log x; } while (0)
 
 
extern struct callout nd6_timer_ch;
extern struct callout nd6_timer_ch;
 
 
/* nd6_rtr.c */
/* nd6_rtr.c */
extern int nd6_defifindex;
extern int nd6_defifindex;
extern int ip6_desync_factor;   /* seconds */
extern int ip6_desync_factor;   /* seconds */
extern u_int32_t ip6_temp_preferred_lifetime; /* seconds */
extern u_int32_t ip6_temp_preferred_lifetime; /* seconds */
extern u_int32_t ip6_temp_valid_lifetime; /* seconds */
extern u_int32_t ip6_temp_valid_lifetime; /* seconds */
extern int ip6_temp_regen_advance; /* seconds */
extern int ip6_temp_regen_advance; /* seconds */
 
 
union nd_opts {
union nd_opts {
        struct nd_opt_hdr *nd_opt_array[13];    /* max = target address list */
        struct nd_opt_hdr *nd_opt_array[13];    /* max = target address list */
        struct {
        struct {
                struct nd_opt_hdr *zero;
                struct nd_opt_hdr *zero;
                struct nd_opt_hdr *src_lladdr;
                struct nd_opt_hdr *src_lladdr;
                struct nd_opt_hdr *tgt_lladdr;
                struct nd_opt_hdr *tgt_lladdr;
                struct nd_opt_prefix_info *pi_beg; /* multiple opts, start */
                struct nd_opt_prefix_info *pi_beg; /* multiple opts, start */
                struct nd_opt_rd_hdr *rh;
                struct nd_opt_rd_hdr *rh;
                struct nd_opt_mtu *mtu;
                struct nd_opt_mtu *mtu;
                struct nd_opt_hdr *six;
                struct nd_opt_hdr *six;
                struct nd_opt_advinterval *adv;
                struct nd_opt_advinterval *adv;
                struct nd_opt_homeagent_info *hai;
                struct nd_opt_homeagent_info *hai;
                struct nd_opt_hdr *src_addrlist;
                struct nd_opt_hdr *src_addrlist;
                struct nd_opt_hdr *tgt_addrlist;
                struct nd_opt_hdr *tgt_addrlist;
                struct nd_opt_hdr *search;      /* multiple opts */
                struct nd_opt_hdr *search;      /* multiple opts */
                struct nd_opt_hdr *last;        /* multiple opts */
                struct nd_opt_hdr *last;        /* multiple opts */
                int done;
                int done;
                struct nd_opt_prefix_info *pi_end;/* multiple opts, end */
                struct nd_opt_prefix_info *pi_end;/* multiple opts, end */
        } nd_opt_each;
        } nd_opt_each;
};
};
#define nd_opts_src_lladdr      nd_opt_each.src_lladdr
#define nd_opts_src_lladdr      nd_opt_each.src_lladdr
#define nd_opts_tgt_lladdr      nd_opt_each.tgt_lladdr
#define nd_opts_tgt_lladdr      nd_opt_each.tgt_lladdr
#define nd_opts_pi              nd_opt_each.pi_beg
#define nd_opts_pi              nd_opt_each.pi_beg
#define nd_opts_pi_end          nd_opt_each.pi_end
#define nd_opts_pi_end          nd_opt_each.pi_end
#define nd_opts_rh              nd_opt_each.rh
#define nd_opts_rh              nd_opt_each.rh
#define nd_opts_mtu             nd_opt_each.mtu
#define nd_opts_mtu             nd_opt_each.mtu
#define nd_opts_adv             nd_opt_each.adv
#define nd_opts_adv             nd_opt_each.adv
#define nd_opts_hai             nd_opt_each.hai
#define nd_opts_hai             nd_opt_each.hai
#define nd_opts_src_addrlist    nd_opt_each.src_addrlist
#define nd_opts_src_addrlist    nd_opt_each.src_addrlist
#define nd_opts_tgt_addrlist    nd_opt_each.tgt_addrlist
#define nd_opts_tgt_addrlist    nd_opt_each.tgt_addrlist
#define nd_opts_search          nd_opt_each.search
#define nd_opts_search          nd_opt_each.search
#define nd_opts_last            nd_opt_each.last
#define nd_opts_last            nd_opt_each.last
#define nd_opts_done            nd_opt_each.done
#define nd_opts_done            nd_opt_each.done
 
 
/* XXX: need nd6_var.h?? */
/* XXX: need nd6_var.h?? */
/* nd6.c */
/* nd6.c */
void nd6_init __P((void));
void nd6_init __P((void));
void nd6_ifattach __P((struct ifnet *));
void nd6_ifattach __P((struct ifnet *));
int nd6_is_addr_neighbor __P((struct sockaddr_in6 *, struct ifnet *));
int nd6_is_addr_neighbor __P((struct sockaddr_in6 *, struct ifnet *));
void nd6_option_init __P((void *, int, union nd_opts *));
void nd6_option_init __P((void *, int, union nd_opts *));
struct nd_opt_hdr *nd6_option __P((union nd_opts *));
struct nd_opt_hdr *nd6_option __P((union nd_opts *));
int nd6_options __P((union nd_opts *));
int nd6_options __P((union nd_opts *));
struct  rtentry *nd6_lookup __P((struct in6_addr *, int, struct ifnet *));
struct  rtentry *nd6_lookup __P((struct in6_addr *, int, struct ifnet *));
void nd6_setmtu __P((struct ifnet *));
void nd6_setmtu __P((struct ifnet *));
void nd6_timer __P((void *));
void nd6_timer __P((void *));
void nd6_purge __P((struct ifnet *));
void nd6_purge __P((struct ifnet *));
void nd6_nud_hint __P((struct rtentry *, struct in6_addr *, int));
void nd6_nud_hint __P((struct rtentry *, struct in6_addr *, int));
int nd6_resolve __P((struct ifnet *, struct rtentry *,
int nd6_resolve __P((struct ifnet *, struct rtentry *,
                     struct mbuf *, struct sockaddr *, u_char *));
                     struct mbuf *, struct sockaddr *, u_char *));
void nd6_rtrequest __P((int, struct rtentry *, struct sockaddr *));
void nd6_rtrequest __P((int, struct rtentry *, struct sockaddr *));
int nd6_ioctl __P((u_long, caddr_t, struct ifnet *));
int nd6_ioctl __P((u_long, caddr_t, struct ifnet *));
struct rtentry *nd6_cache_lladdr __P((struct ifnet *, struct in6_addr *,
struct rtentry *nd6_cache_lladdr __P((struct ifnet *, struct in6_addr *,
        char *, int, int, int));
        char *, int, int, int));
int nd6_output __P((struct ifnet *, struct ifnet *, struct mbuf *,
int nd6_output __P((struct ifnet *, struct ifnet *, struct mbuf *,
                    struct sockaddr_in6 *, struct rtentry *));
                    struct sockaddr_in6 *, struct rtentry *));
int nd6_storelladdr __P((struct ifnet *, struct rtentry *, struct mbuf *,
int nd6_storelladdr __P((struct ifnet *, struct rtentry *, struct mbuf *,
                         struct sockaddr *, u_char *));
                         struct sockaddr *, u_char *));
int nd6_need_cache __P((struct ifnet *));
int nd6_need_cache __P((struct ifnet *));
 
 
/* nd6_nbr.c */
/* nd6_nbr.c */
void nd6_na_input __P((struct mbuf *, int, int));
void nd6_na_input __P((struct mbuf *, int, int));
void nd6_na_output __P((struct ifnet *, const struct in6_addr *,
void nd6_na_output __P((struct ifnet *, const struct in6_addr *,
        const struct in6_addr *, u_long, int, struct sockaddr *));
        const struct in6_addr *, u_long, int, struct sockaddr *));
void nd6_ns_input __P((struct mbuf *, int, int));
void nd6_ns_input __P((struct mbuf *, int, int));
void nd6_ns_output __P((struct ifnet *, const struct in6_addr *,
void nd6_ns_output __P((struct ifnet *, const struct in6_addr *,
        const struct in6_addr *, struct llinfo_nd6 *, int));
        const struct in6_addr *, struct llinfo_nd6 *, int));
caddr_t nd6_ifptomac __P((struct ifnet *));
caddr_t nd6_ifptomac __P((struct ifnet *));
void nd6_dad_start __P((struct ifaddr *, int *));
void nd6_dad_start __P((struct ifaddr *, int *));
void nd6_dad_stop __P((struct ifaddr *));
void nd6_dad_stop __P((struct ifaddr *));
void nd6_dad_duplicated __P((struct ifaddr *));
void nd6_dad_duplicated __P((struct ifaddr *));
 
 
/* nd6_rtr.c */
/* nd6_rtr.c */
void nd6_rs_input __P((struct mbuf *, int, int));
void nd6_rs_input __P((struct mbuf *, int, int));
void nd6_ra_input __P((struct mbuf *, int, int));
void nd6_ra_input __P((struct mbuf *, int, int));
void prelist_del __P((struct nd_prefix *));
void prelist_del __P((struct nd_prefix *));
void defrouter_addreq __P((struct nd_defrouter *));
void defrouter_addreq __P((struct nd_defrouter *));
void defrouter_reset __P((void));
void defrouter_reset __P((void));
void defrouter_select __P((void));
void defrouter_select __P((void));
void defrtrlist_del __P((struct nd_defrouter *));
void defrtrlist_del __P((struct nd_defrouter *));
void prelist_remove __P((struct nd_prefix *));
void prelist_remove __P((struct nd_prefix *));
int prelist_update __P((struct nd_prefix *, struct nd_defrouter *,
int prelist_update __P((struct nd_prefix *, struct nd_defrouter *,
                        struct mbuf *));
                        struct mbuf *));
int nd6_prelist_add __P((struct nd_prefix *, struct nd_defrouter *,
int nd6_prelist_add __P((struct nd_prefix *, struct nd_defrouter *,
                         struct nd_prefix **));
                         struct nd_prefix **));
int nd6_prefix_onlink __P((struct nd_prefix *));
int nd6_prefix_onlink __P((struct nd_prefix *));
int nd6_prefix_offlink __P((struct nd_prefix *));
int nd6_prefix_offlink __P((struct nd_prefix *));
void pfxlist_onlink_check __P((void));
void pfxlist_onlink_check __P((void));
struct nd_defrouter *defrouter_lookup __P((struct in6_addr *,
struct nd_defrouter *defrouter_lookup __P((struct in6_addr *,
                                           struct ifnet *));
                                           struct ifnet *));
struct nd_prefix *nd6_prefix_lookup __P((struct nd_prefix *));
struct nd_prefix *nd6_prefix_lookup __P((struct nd_prefix *));
int in6_init_prefix_ltimes __P((struct nd_prefix *ndpr));
int in6_init_prefix_ltimes __P((struct nd_prefix *ndpr));
void rt6_flush __P((struct in6_addr *, struct ifnet *));
void rt6_flush __P((struct in6_addr *, struct ifnet *));
int nd6_setdefaultiface __P((int));
int nd6_setdefaultiface __P((int));
int in6_tmpifadd __P((const struct in6_ifaddr *, int));
int in6_tmpifadd __P((const struct in6_ifaddr *, int));
 
 
#endif /* _KERNEL */
#endif /* _KERNEL */
 
 
#endif /* _NETINET6_ND6_H_ */
#endif /* _NETINET6_ND6_H_ */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.