]> git.decadent.org.uk Git - odhcp6c.git/blobdiff - src/ra.h
Fix parsing of Router Advertisement messsages
[odhcp6c.git] / src / ra.h
index 37d9573f707a6f48223ec24290e17b970a72bcc6..d4d93763af6827d3376081ce15891002cb027392 100644 (file)
--- a/src/ra.h
+++ b/src/ra.h
@@ -1,3 +1,16 @@
+/**
+ * Copyright (C) 2012-2013 Steven Barth <steven@midlink.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License v2 as published by
+ * the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
 #pragma once
 
 #define ALL_IPV6_NODES {{{0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\
 struct icmpv6_opt {
        uint8_t type;
        uint8_t len;
-       uint8_t data[6];
 };
 
-#define ND_OPT_ROUTE_INFORMATION 24
+struct nd_opt_recursive_dns {
+       uint8_t type;
+       uint8_t len;
+       uint8_t pad;
+       uint8_t pad2;
+       uint32_t lifetime;
+       struct in6_addr servers[1];
+};
 
+#define ND_OPT_ROUTE_INFORMATION 24
+struct nd_opt_route_info {
+       uint8_t nd_opt_ri_type;
+       uint8_t nd_opt_ri_len;
+       uint8_t nd_opt_ri_prefix_len;
+       uint8_t nd_opt_ri_prf;
+       uint32_t nd_opt_ri_route_lifetime;
+       uint8_t nd_opt_ri_prefix[1];
+};
 
 #define icmpv6_for_each_option(opt, start, end)\
        for (opt = (struct icmpv6_opt*)(start);\
-       (void*)(opt + 1) <= (void*)(end) && opt->len > 0 &&\
-       (void*)(opt + opt->len) <= (void*)(end); opt += opt->len)
+       ((void *)opt < (void *)end) && \
+       (void *)((uint8_t *)opt + (opt->len << 3)) <= (void *)(end); \
+       opt = (struct icmpv6_opt *)((uint8_t *)opt + (opt->len << 3)))
 
 
-int ra_init(const char *ifname);
+int ra_init(const char *ifname, const struct in6_addr *ifid);
+bool ra_link_up(void);
 bool ra_process(void);
-bool ra_rtnl_process(void);