MCPcopy Create free account
hub / github.com/apache/httpd / valid_weight

Function valid_weight

modules/http2/h2_session.c:1231–1236  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1229}
1230
1231static 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
1238apr_status_t h2_session_set_prio(h2_session *session, h2_stream *stream,
1239 const h2_priority *prio)

Callers 1

h2_session_set_prioFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected