Lines Matching refs:soppp

1192 so_set_prop(sock_upper_handle_t sock_handle, struct sock_proto_props *soppp)
1200 if (soppp->sopp_flags & SOCKOPT_MAXBLK)
1201 so->so_proto_props.sopp_maxblk = soppp->sopp_maxblk;
1202 if (soppp->sopp_flags & SOCKOPT_WROFF)
1203 so->so_proto_props.sopp_wroff = soppp->sopp_wroff;
1204 if (soppp->sopp_flags & SOCKOPT_TAIL)
1205 so->so_proto_props.sopp_tail = soppp->sopp_tail;
1206 if (soppp->sopp_flags & SOCKOPT_RCVHIWAT)
1207 so->so_proto_props.sopp_rxhiwat = soppp->sopp_rxhiwat;
1208 if (soppp->sopp_flags & SOCKOPT_RCVLOWAT)
1209 so->so_proto_props.sopp_rxlowat = soppp->sopp_rxlowat;
1210 if (soppp->sopp_flags & SOCKOPT_MAXPSZ)
1211 so->so_proto_props.sopp_maxpsz = soppp->sopp_maxpsz;
1212 if (soppp->sopp_flags & SOCKOPT_MINPSZ)
1213 so->so_proto_props.sopp_minpsz = soppp->sopp_minpsz;
1214 if (soppp->sopp_flags & SOCKOPT_ZCOPY) {
1215 if (soppp->sopp_zcopyflag & ZCVMSAFE) {
1218 } else if (soppp->sopp_zcopyflag & ZCVMUNSAFE) {
1223 if (soppp->sopp_zcopyflag & COPYCACHED) {
1227 if (soppp->sopp_flags & SOCKOPT_OOBINLINE)
1228 so->so_proto_props.sopp_oobinline = soppp->sopp_oobinline;
1229 if (soppp->sopp_flags & SOCKOPT_RCVTIMER)
1230 so->so_proto_props.sopp_rcvtimer = soppp->sopp_rcvtimer;
1231 if (soppp->sopp_flags & SOCKOPT_RCVTHRESH)
1232 so->so_proto_props.sopp_rcvthresh = soppp->sopp_rcvthresh;
1233 if (soppp->sopp_flags & SOCKOPT_MAXADDRLEN)
1234 so->so_proto_props.sopp_maxaddrlen = soppp->sopp_maxaddrlen;
1235 if (soppp->sopp_flags & SOCKOPT_LOOPBACK)
1236 so->so_proto_props.sopp_loopback = soppp->sopp_loopback;
1262 soppp->sopp_flags &= ~(SOCKOPT_MAXBLK | SOCKOPT_WROFF | SOCKOPT_TAIL |
1267 ASSERT(soppp->sopp_flags == 0);