#define client6_data (*(struct client6_data_t*)(&bb_common_bufsiz1[COMMON_BUFSIZE - sizeof(struct client6_data_t)]))
-int FAST_FUNC d6_read_interface(const char *interface, int *ifindex, struct in6_addr *nip6, uint8_t *mac);
+int FAST_FUNC d6_read_interface(
+ const char *interface,
+ int *ifindex,
+ struct in6_addr *nip6,
+ uint8_t *mac
+);
int FAST_FUNC d6_listen_socket(int port, const char *inf);
return xmemdup(opt, opt[3] + 4);
}
-
/*** Script execution code ***/
static char** new_env(void)
return bytes;
}
-
/*** Main ***/
static int sockfd = -1;
//usage: "\n USR1 Renew lease"
//usage: "\n USR2 Release lease"
-
int udhcpc6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int udhcpc6_main(int argc UNUSED_PARAM, char **argv)
{
#include <ifaddrs.h>
#include <netpacket/packet.h>
-int FAST_FUNC d6_read_interface(const char *interface, int *ifindex, struct in6_addr *nip6, uint8_t *mac)
+int FAST_FUNC d6_read_interface(
+ const char *interface,
+ int *ifindex,
+ struct in6_addr *nip6,
+ uint8_t *mac)
{
int retval = 3;
struct ifaddrs *ifap, *ifa;
if (!ifa->ifa_addr || (strcmp(ifa->ifa_name, interface) != 0))
continue;
- sip6 = (struct sockaddr_in6*)(ifa->ifa_addr);
-
if (ifa->ifa_addr->sa_family == AF_PACKET) {
- struct sockaddr_ll *sll = (struct sockaddr_ll*)(ifa->ifa_addr);
+ struct sockaddr_ll *sll = (void*)(ifa->ifa_addr);
memcpy(mac, sll->sll_addr, 6);
- log2("MAC %02x:%02x:%02x:%02x:%02x:%02x", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
+ log2("MAC %02x:%02x:%02x:%02x:%02x:%02x",
+ mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]
+ );
*ifindex = sll->sll_ifindex;
log2("ifindex %d", *ifindex);
retval &= (3 - (1<<0));
* is requesting configuration information as the source address in the
* header of the IP datagram."
*/
+ sip6 = (void*)(ifa->ifa_addr);
+
if (ifa->ifa_addr->sa_family == AF_INET6
&& IN6_IS_ADDR_LINKLOCAL(&sip6->sin6_addr)
) {
bb_error_msg("can't get %s", "MAC");
if (retval & (1<<1))
bb_error_msg("can't get %s", "link-local IPv6 address");
- return -1;
+ return retval;
}
int FAST_FUNC d6_listen_socket(int port, const char *inf)