Lines Matching defs:hole
1727 * (creating a hole between TLSv1.3 and TLSv1.1) can still
2008 * @real_max: The highest version below the lowest compile time version hole
2009 * where that hole lies above at least one run-time enabled
2029 int hole;
2064 * (protocol version client is disabled at compile-time) is also a "hole".
2066 * Our initial state is hole == 1, version == 0. That is, versions above
2067 * the first version in the method table are disabled (a "hole" above
2070 * Whenever "hole == 1", and we hit an enabled method, its version becomes
2072 * method. We're no longer in a hole, so "hole" becomes 0.
2074 * If "hole == 0" and we hit an enabled method, then "single" is cleared,
2076 * a disabled method, then hole becomes true again, but nothing else
2078 * If we again hit an enabled method after the new hole, it becomes
2082 hole = 1;
2088 * A table entry with a NULL client method is still a hole in the
2092 hole = 1;
2098 if (hole == 1 && tmp_real_max == 0)
2102 hole = 1;
2103 } else if (!hole) {
2111 hole = 0;