Searched refs:inp_flags (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-10-stable/sys/netinet/
H A Din_pcb.c308 inp->inp_flags |= IN6P_IPV6_V6ONLY;
318 inp->inp_flags |= IN6P_AUTOFLOWLABEL;
355 inp->inp_flags |= INP_ANONPORT;
383 if (inp->inp_flags & INP_HIGHPORT) {
387 } else if (inp->inp_flags & INP_LOWPORT) {
575 if ((inp->inp_flags & INP_BINDANY) == 0 &&
600 ((t->inp_flags & INP_TIMEWAIT) == 0) &&
612 if (t && (t->inp_flags & INP_TIMEWAIT)) {
693 inp->inp_flags |= INP_ANONPORT;
1273 inp->inp_flags |
2305 db_print_inpflags(int inp_flags) argument
[all...]
H A Dtcp_usrreq.c177 if (inp->inp_flags & INP_TIMEWAIT) {
205 if (inp->inp_flags & INP_DROPPED) {
240 if (inp->inp_flags & INP_DROPPED ||
306 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
349 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
359 if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0) {
401 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
447 if (inp->inp_flags & (INP_TIMEWAIT | INP_DROPPED)) {
459 if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0)
520 if (inp->inp_flags
[all...]
H A Dip_output.c1020 inp->inp_flags |= bit; \
1022 inp->inp_flags &= ~bit; \
1099 inp->inp_flags &= ~(INP_LOWPORT);
1100 inp->inp_flags &= ~(INP_HIGHPORT);
1104 inp->inp_flags &= ~(INP_LOWPORT);
1105 inp->inp_flags |= INP_HIGHPORT;
1109 inp->inp_flags &= ~(INP_HIGHPORT);
1110 inp->inp_flags |= INP_LOWPORT;
1186 #define OPTBIT(bit) (inp->inp_flags & bit ? 1 : 0)
1209 if (inp->inp_flags
[all...]
H A Dtcp_timewait.c234 KASSERT((inp->inp_flags & INP_DROPPED) == 0, ("tcp_twstart: "
235 "(inp->inp_flags & INP_DROPPED) != 0"));
341 inp->inp_flags |= INP_TIMEWAIT;
348 if (inp->inp_flags & INP_SOCKREF) {
351 inp->inp_flags &= ~INP_SOCKREF;
505 KASSERT((inp->inp_flags & INP_TIMEWAIT), ("tcp_twclose: !timewait"));
522 if (inp->inp_flags & INP_SOCKREF) {
523 inp->inp_flags &= ~INP_SOCKREF;
H A Draw_ip.c250 if ((last->inp_flags & INP_CONTROLOPTS) ||
437 if ((inp->inp_flags & INP_HDRINCL) == 0) {
449 if (inp->inp_flags & INP_DONTFRAG)
519 if (inp->inp_flags & INP_ONESBCAST)
572 optval = inp->inp_flags & INP_HDRINCL;
630 inp->inp_flags |= INP_HDRINCL;
632 inp->inp_flags &= ~INP_HDRINCL;
924 (inp->inp_flags & INP_BINDANY) == 0 &&
H A Dtcp_subr.c970 if (!(inp->inp_flags & INP_TIMEWAIT) &&
1232 if (inp->inp_flags & INP_SOCKREF) {
1235 inp->inp_flags &= ~INP_SOCKREF;
1270 if (inpb->inp_flags & INP_TIMEWAIT)
1301 if ((inp->inp_flags & INP_TIMEWAIT) ||
1302 (inp->inp_flags & INP_DROPPED))
1398 if (inp->inp_flags & INP_TIMEWAIT) {
1431 else if (inp->inp_flags & INP_TIMEWAIT) {
1637 if (!(inp->inp_flags & INP_TIMEWAIT) &&
1638 !(inp->inp_flags
[all...]
H A Din_pcbgroup.c374 !(inp->inp_flags & INP_DROPPED)) {
405 !(inp->inp_flags & INP_DROPPED)) {
H A Dtcp_timer.c242 if ((inp->inp_flags & INP_DROPPED) != 0) {
283 if ((inp->inp_flags & INP_DROPPED) != 0) {
306 if ((inp->inp_flags & INP_TIMEWAIT) != 0) {
362 if ((inp->inp_flags & INP_DROPPED) != 0) {
461 if ((inp->inp_flags & INP_DROPPED) != 0) {
542 if ((inp->inp_flags & INP_DROPPED) != 0) {
H A Dtoecore.c197 if (inp->inp_flags & (INP_DROPPED | INP_TIMEWAIT))
380 if ((inp->inp_flags & INP_TIMEWAIT) && th != NULL) {
564 if (!(inp->inp_flags & INP_DROPPED)) {
H A Dip_input.c1600 if (inp->inp_flags & INP_RECVDSTADDR) {
1606 if (inp->inp_flags & INP_RECVTTL) {
1618 if (inp->inp_flags & INP_RECVOPTS) {
1625 if (inp->inp_flags & INP_RECVRETOPTS) {
1632 if (inp->inp_flags & INP_RECVIF) {
1665 if (inp->inp_flags & INP_RECVTOS) {
H A Dudp_usrreq.c336 if (inp->inp_flags & INP_CONTROLOPTS ||
1298 inp->inp_flags |= INP_ANONPORT;
1362 if (inp->inp_flags & INP_DONTFRAG) {
1374 if (inp->inp_flags & INP_ONESBCAST)
1386 if (inp->inp_flags & INP_ONESBCAST)
1396 if (inp->inp_flags & INP_ONESBCAST)
H A Dtcp_syncache.c794 inp->inp_flags |= oinp->inp_flags & INP_CONTROLOPTS;
1217 (inp->inp_flags & IN6P_AUTOFLOWLABEL))
2009 if (sotoinpcb(lso)->inp_flags & IN6P_AUTOFLOWLABEL)
H A Dsctp_os_bsd.h388 #define SCTP_IPV6_V6ONLY(inp) (((struct inpcb *)inp)->inp_flags & IN6P_IPV6_V6ONLY)
H A Dsiftr.c895 if (tp == NULL || inp->inp_flags & INP_TIMEWAIT) {
1071 if (tp == NULL || inp->inp_flags & INP_TIMEWAIT) {
/freebsd-10-stable/sys/netinet6/
H A Din6_pcb.c131 ((inp->inp_flags & IN6P_IPV6_V6ONLY) != 0))) != 0)
147 ((inp->inp_flags & IN6P_IPV6_V6ONLY) != 0))) != 0)
167 (inp->inp_flags & INP_BINDANY) == 0) {
203 ((t->inp_flags & INP_TIMEWAIT) == 0) &&
213 if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0 &&
222 ((t->inp_flags &
235 if (t && (t->inp_flags & INP_TIMEWAIT)) {
250 if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0 &&
257 if (t && t->inp_flags & INP_TIMEWAIT) {
414 if (inp->inp_flags
[all...]
H A Dudp6_usrreq.c170 if (inp->inp_flags & INP_CONTROLOPTS ||
700 if ((inp->inp_flags & IN6P_IPV6_V6ONLY)) {
759 if ((inp->inp_flags & IN6P_IPV6_V6ONLY)) {
920 if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0)
961 if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0) {
1045 if ((inp->inp_flags & IN6P_IPV6_V6ONLY) != 0) {
1191 if ((inp->inp_flags & IN6P_IPV6_V6ONLY) == 0) {
H A Dip6_input.c1319 #define IS2292(inp, x, y) (((inp)->inp_flags & IN6P_RFC2292) ? (x) : (y))
1321 if ((inp->inp_flags & IN6P_PKTINFO) != 0) {
1351 if ((inp->inp_flags & IN6P_HOPLIMIT) != 0) {
1374 if ((inp->inp_flags & IN6P_TCLASS) != 0) {
1428 if ((in6p->inp_flags & IN6P_HOPOPTS) != 0) {
1480 if ((in6p->inp_flags & (IN6P_RTHDR | IN6P_DSTOPTS)) != 0) {
1541 if (!(in6p->inp_flags & IN6P_DSTOPTS))
1552 if (!(in6p->inp_flags & IN6P_RTHDR))
1611 if ((inp->inp_flags & IN6P_MTU) == 0 || (
H A Din6_src.c249 (inp->inp_flags & IN6P_IPV6_V6ONLY) != 0))) != 0)
257 if ((inp->inp_flags & INP_BINDANY) == 0) {
282 ((inp->inp_flags & IN6P_IPV6_V6ONLY) != 0))) != 0)
527 (inp->inp_flags & IN6P_IPV6_V6ONLY) != 0)) != 0) {
936 ((inp->inp_flags & IN6P_IPV6_V6ONLY) != 0));
944 inp->inp_flags |= INP_ANONPORT;
H A Dip6_output.c1453 in6p->inp_flags |= (bit); \
1455 in6p->inp_flags &= ~(bit); \
1461 in6p->inp_flags |= IN6P_RFC2292; \
1463 in6p->inp_flags |= (bit); \
1465 in6p->inp_flags &= ~(bit); \
1468 #define OPTBIT(bit) (in6p->inp_flags & (bit) ? 1 : 0)
1723 in6p->inp_flags &= ~(INP_LOWPORT);
1724 in6p->inp_flags &= ~(INP_HIGHPORT);
1728 in6p->inp_flags &= ~(INP_LOWPORT);
1729 in6p->inp_flags |
[all...]
H A Draw_ip6.c277 if (last->inp_flags & INP_CONTROLOPTS ||
311 if (last->inp_flags & INP_CONTROLOPTS ||
/freebsd-10-stable/sys/dev/cxgbe/tom/
H A Dt4_cpl_io.c195 CTR6(KTR_CXGBE, "%s: tid %d (%s), toep_flags 0x%x, inp_flags 0x%x%s",
197 inp->inp_flags & INP_DROPPED ? "inp dropped" :
199 toep->flags, inp->inp_flags,
219 if (inp->inp_flags & INP_DROPPED)
230 if ((inp->inp_flags & (INP_DROPPED | INP_TIMEWAIT)) == 0) {
1002 KASSERT((inp->inp_flags & INP_DROPPED) == 0,
1024 KASSERT((inp->inp_flags & INP_DROPPED) == 0,
1049 KASSERT((inp->inp_flags & INP_DROPPED) == 0,
1318 "%s: tid %d (%s), toep_flags 0x%x, inp_flags 0x%x, status %d",
1320 inp->inp_flags, cp
[all...]
H A Dt4_listen.c746 if (inp->inp_flags & INP_DROPPED) {
752 if (inp->inp_flags & INP_DROPPED && status != CPL_ERR_NONE) {
763 if (inp->inp_flags & INP_DROPPED) {
1370 if (__predict_false(inp->inp_flags & INP_DROPPED)) {
1464 if (__predict_false(inp->inp_flags & INP_DROPPED)) {
1564 "%s: stid %u, tid %u, synqe %p (0x%x), inp_flags 0x%x",
1565 __func__, stid, tid, synqe, synqe->flags, inp->inp_flags);
1567 if (__predict_false(inp->inp_flags & INP_DROPPED)) {
H A Dt4_tom.c365 inp->inp_flags);
370 inp->inp_flags);
422 __func__, toep->tid, toep, toep->flags, inp, inp->inp_flags);
/freebsd-10-stable/sys/dev/cxgb/ulp/tom/
H A Dcxgb_listen.c342 if (inp->inp_flags & INP_DROPPED) {
348 if (inp->inp_flags & INP_DROPPED && rpl->status != CPL_ERR_NONE) {
359 if (inp->inp_flags & INP_DROPPED) {
566 if (__predict_false(inp->inp_flags & INP_DROPPED)) {
613 if (__predict_false(inp->inp_flags & INP_DROPPED)) {
709 CTR5(KTR_CXGB, "%s: stid %u, tid %u, lctx %p, inp_flags 0x%x",
710 __func__, stid, tid, lctx, inp->inp_flags);
718 if (__predict_false(inp->inp_flags & INP_DROPPED)) {
/freebsd-10-stable/sys/security/mac_portacl/
H A Dmac_portacl.c480 if ((inp->inp_flags & INP_LOWPORT) == 0)

Completed in 629 milliseconds

12