comparison src/event/ngx_event_quic.c @ 8241:db745339e54b quic

The ngx_quic_frame_len() function is not really needed.
author Vladimir Homutov <vl@nginx.com>
date Thu, 19 Mar 2020 14:59:55 +0300
parents 1f002206a59b
children a14afe21e692
comparison
equal deleted inserted replaced
8240:1f002206a59b 8241:db745339e54b
995 len = 0; 995 len = 0;
996 996
997 do { 997 do {
998 /* process same-level group of frames */ 998 /* process same-level group of frames */
999 999
1000 len += ngx_quic_frame_len(f);// TODO: handle overflow, max size 1000 len += ngx_quic_create_frame(NULL, NULL, f);// TODO: handle overflow, max size
1001 1001
1002 f = f->next; 1002 f = f->next;
1003 } while (f && f->level == lvl); 1003 } while (f && f->level == lvl);
1004 1004
1005 1005