Home | History | Annotate | Download | only in netinet6

Lines Matching defs:dontfrag

221 	int alwaysfrag, dontfrag;
785 * 1: normal case (dontfrag == 0, alwaysfrag == 0)
789 * 2: if user asks us not to fragment (dontfrag == 1)
796 * 4: if dontfrag == 1 && alwaysfrag == 1
802 dontfrag = 1;
804 dontfrag = 0;
806 if (dontfrag && alwaysfrag) { /* case 4 */
812 if (dontfrag && (!tso && tlen > ifp->if_mtu)) { /* case 2-b */
814 * Even if the DONTFRAG option is specified, we cannot send the
838 if (dontfrag || (!alwaysfrag && (tlen <= mtu || tso))) {