source: rtems-libbsd/dhcpcd/ipv6nd.h @ d61f731

55-freebsd-126-freebsd-12
Last change on this file since d61f731 was f2ed769, checked in by Sebastian Huber <sebastian.huber@…>, on 01/30/14 at 12:29:46

DHCPCD(8): Import

Import DHCPCD(8) from:

http://roy.marples.name/projects/dhcpcd/

The upstream sources can be obtained via:

fossil clone http://roy.marples.name/projects/dhcpcd

The imported version is 2014-01-29 19:46:44 [6b209507bb].

  • Property mode set to 100644
File size: 3.3 KB
Line 
1/*
2 * dhcpcd - DHCP client daemon
3 * Copyright (c) 2006-2013 Roy Marples <roy@marples.name>
4 * All rights reserved
5
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 */
27
28#ifndef IPV6ND_H
29#define IPV6ND_H
30
31#include <sys/queue.h>
32
33#include <time.h>
34
35#include "dhcpcd.h"
36#include "ipv6.h"
37
38struct ra_opt {
39        TAILQ_ENTRY(ra_opt) next;
40        uint8_t type;
41        struct timeval expire;
42        char *option;
43};
44
45struct ra {
46        TAILQ_ENTRY(ra) next;
47        struct interface *iface;
48        struct in6_addr from;
49        char sfrom[INET6_ADDRSTRLEN];
50        unsigned char *data;
51        ssize_t data_len;
52        struct timeval received;
53        unsigned char flags;
54        uint32_t lifetime;
55        uint32_t reachable;
56        uint32_t retrans;
57        uint32_t mtu;
58        struct ipv6_addrhead addrs;
59        TAILQ_HEAD(, ra_opt) options;
60
61        unsigned char *ns;
62        size_t nslen;
63        int nsprobes;
64
65        int expired;
66};
67
68extern TAILQ_HEAD(rahead, ra) ipv6_routers;
69
70struct rs_state {
71        unsigned char *rs;
72        size_t rslen;
73        int rsprobes;
74};
75
76#define RS_STATE(a) ((struct rs_state *)(ifp)->if_data[IF_DATA_IPV6ND])
77
78#define MAX_REACHABLE_TIME      3600    /* seconds */
79#define REACHABLE_TIME          30      /* seconds */
80#define RETRANS_TIMER           1000    /* milliseconds */
81#define DELAY_FIRST_PROBE_TIME  5       /* seconds */
82
83#ifdef INET6
84int ipv6nd_startrs(struct interface *);
85ssize_t ipv6nd_env(char **, const char *, const struct interface *);
86int ipv6nd_addrexists(const struct ipv6_addr *);
87void ipv6nd_freedrop_ra(struct ra *, int);
88#define ipv6nd_free_ra(ra) ipv6nd_freedrop_ra((ra),  0)
89#define ipv6nd_drop_ra(ra) ipv6nd_freedrop_ra((ra),  1)
90ssize_t ipv6nd_free(struct interface *);
91void ipv6nd_expirera(void *arg);
92int ipv6nd_has_ra(const struct interface *);
93void ipv6nd_handleifa(int, const char *, const struct in6_addr *, int);
94void ipv6nd_drop(struct interface *);
95
96void ipv6nd_probeaddr(void *);
97ssize_t ipv6nd_probeaddrs(struct ipv6_addrhead *);
98void ipv6nd_proberouter(void *);
99void ipv6nd_cancelproberouter(struct ra *);
100
101#ifdef LISTEN_DAD
102void ipv6nd_cancelprobeaddr(struct ipv6_addr *);
103#else
104#define ipv6nd_cancelprobeaddr(a)
105#endif
106
107#else
108#define ipv6nd_startrs(a) {}
109#define ipv6nd_addrexists(a) (0)
110#define ipv6nd_free(a)
111#define ipv6nd_has_ra(a) 0
112#define ipv6nd_drop(a)
113#endif
114
115#endif
Note: See TracBrowser for help on using the repository browser.