Lines Matching refs:hsize
219 size_t size, hsize, frame_size, max_frame_size; in nxt_h1p_conn_ws_frame_header_read() local
247 hsize = nxt_websocket_frame_header_size(wsh); in nxt_h1p_conn_ws_frame_header_read()
249 if (size < hsize) { in nxt_h1p_conn_ws_frame_header_read()
250 nxt_debug(task, "h1p conn ws frame header read %z < %z", size, hsize); in nxt_h1p_conn_ws_frame_header_read()
323 if (nxt_slow_path(hsize > max_frame_size in nxt_h1p_conn_ws_frame_header_read()
324 || payload_len > (max_frame_size - hsize))) in nxt_h1p_conn_ws_frame_header_read()
332 frame_size = payload_len + hsize; in nxt_h1p_conn_ws_frame_header_read()
402 size_t hsize; in nxt_h1p_conn_ws_frame_process() local
418 hsize = nxt_websocket_frame_header_size(wsh); in nxt_h1p_conn_ws_frame_process()
419 mask = nxt_pointer_to(wsh, hsize - 4); in nxt_h1p_conn_ws_frame_process()
420 p = nxt_pointer_to(wsh, hsize); in nxt_h1p_conn_ws_frame_process()