HomeSort by relevance Sort by last modified time
    Searched refs:dest_sll (Results 1 - 2 of 2) sorted by null

  /external/toybox/toys/pending/
dhcpd.c 856 struct sockaddr_ll dest_sll; local
869 memset(&dest_sll, 0, sizeof(dest_sll));
870 dest_sll.sll_family = AF_PACKET;
871 dest_sll.sll_protocol = htons(ETH_P_IPV6);
872 dest_sll.sll_ifindex = gconfig.ifindex;
873 dest_sll.sll_halen = ETH_ALEN;
874 memcpy(dest_sll.sll_addr, client_lla, sizeof(uint8_t)*6);
876 if (bind(fd, (struct sockaddr *) &dest_sll, sizeof(dest_sll)) < 0)
906 struct sockaddr_ll dest_sll; local
    [all...]
dhcp.c 721 struct sockaddr_ll dest_sll; local
733 memset(&dest_sll, 0, sizeof(dest_sll));
734 dest_sll.sll_family = AF_PACKET;
735 dest_sll.sll_protocol = htons(ETH_P_IP);
736 dest_sll.sll_ifindex = state->ifindex;
737 dest_sll.sll_halen = 6;
738 memcpy(dest_sll.sll_addr, bmacaddr , 6);
740 if (bind(fd, (struct sockaddr *) &dest_sll, sizeof(dest_sll)) < 0)
    [all...]

Completed in 152 milliseconds