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