HomeSort by: relevance | last modified time | path
    Searched defs:dontfrag (Results 1 - 1 of 1) sorted by relevancy

  /src/sys/netinet6/
ip6_output.c 221 int alwaysfrag, dontfrag; local in function:ip6_output
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)))
    [all...]

Completed in 11 milliseconds