Home | History | Annotate | Download | only in dhcpcd-6.8.2

Lines Matching refs:pdp

527 	struct dhcp6_pd_addr *pdp;
806 pdp = (struct dhcp6_pd_addr *)
808 pdp->pltime = htonl(ap->prefix_pltime);
809 pdp->vltime = htonl(ap->prefix_vltime);
810 pdp->prefix_len = ap->prefix_len;
811 pdp->prefix = ap->prefix;
1832 const struct dhcp6_pd_addr *pdp;
1843 if (ol < sizeof(*pdp)) {
1850 pdp = (const struct dhcp6_pd_addr *)D6_COPTION_DATA(o);
1852 if (IN6_ARE_ADDR_EQUAL(&a->prefix, &pdp->prefix))
1867 a->prefix = pdp->prefix;
1868 a->prefix_len = pdp->prefix_len;
1878 if (a->prefix_vltime != ntohl(pdp->vltime))
1883 a->prefix_pltime = ntohl(pdp->pltime);
1884 a->prefix_vltime = ntohl(pdp->vltime);
1892 p = D6_COPTION_DATA(o) + sizeof(pdp);
1893 ol = (uint16_t)(ol - sizeof(pdp));