Home | History | Annotate | Download | only in dhcp_client

Lines Matching refs:remote

289   struct sockaddr_ll remote;
290 memset(&remote, 0, sizeof(remote));
291 remote.sll_family = AF_PACKET;
292 remote.sll_protocol = htons(ETHERTYPE_IP);
293 remote.sll_ifindex = interface_index_;
294 remote.sll_hatype = htons(ARPHRD_ETHER);
296 remote.sll_halen = IFHWADDRLEN;
297 memset(remote.sll_addr, 0xff, IFHWADDRLEN);
303 reinterpret_cast<struct sockaddr *>(&remote),
304 sizeof(remote));