Home | History | Annotate | Download | only in iputils

Lines Matching defs:freq

1208 		struct in6_flowlabel_req *freq = (struct in6_flowlabel_req *)freq_buf;
1209 int freq_len = sizeof(*freq);
1212 freq_len = CMSG_ALIGN(sizeof(*freq)) + srcrt->cmsg_len;
1214 memset(freq, 0, sizeof(*freq));
1215 freq->flr_label = htonl(flowlabel & IPV6_FLOWINFO_FLOWLABEL);
1216 freq->flr_action = IPV6_FL_A_GET;
1217 freq->flr_flags = IPV6_FL_F_CREATE;
1218 freq->flr_share = IPV6_FL_S_EXCL;
1219 memcpy(&freq->flr_dst, &whereto.sin6_addr, 16);
1222 memcpy(freq_buf + CMSG_ALIGN(sizeof(*freq)), srcrt, srcrt->cmsg_len);
1225 freq, freq_len) == -1) {
1229 flowlabel = freq->flr_label;