Lines Matching defs:drop
115 " drop=%%d default: 0 (no dropped packets)\n" \
116 " drop about 1:N packets randomly\n" \
118 " drop packets larger than N bytes\n" \
152 int drop; /* drop 1 packet in N (none if 0) */
153 int mtu; /* drop packets larger than this */
156 int protect_hvr; /* never drop or delay HelloVerifyRequest */
157 int protect_len; /* never drop/delay packet of the given size*/
253 } else if (strcmp(p, "drop") == 0) {
254 opt.drop = atoi(q);
255 if (opt.drop < 0 || opt.drop > 20 || opt.drop == 1) {
512 * but the server must not drop the existing connection before establishing
719 /* do we want to drop, delay, or forward it? */
722 (opt.drop != 0 &&
729 rand() % opt.drop == 0)) {
783 * Decisions to drop/delay/duplicate packets are pseudo-random: dropping