| 1229 | } |
| 1230 | |
| 1231 | static int valid_weight(float f) |
| 1232 | { |
| 1233 | int w = (int)f; |
| 1234 | return (w < NGHTTP2_MIN_WEIGHT? NGHTTP2_MIN_WEIGHT : |
| 1235 | (w > NGHTTP2_MAX_WEIGHT)? NGHTTP2_MAX_WEIGHT : w); |
| 1236 | } |
| 1237 | |
| 1238 | apr_status_t h2_session_set_prio(h2_session *session, h2_stream *stream, |
| 1239 | const h2_priority *prio) |
no outgoing calls
no test coverage detected