Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2025/02/04 21:31:51 [debug] 408839#0: bind() 0.0.0.0:8080 #7
2025/02/04 21:31:51 [debug] 408839#0: bind() 0.0.0.0:8443 #8
2025/02/04 21:31:51 [debug] 408839#0: bind() [::]:8443 #9
2025/02/04 21:31:51 [debug] 408839#0: bind() 0.0.0.0:8443 #10
2025/02/04 21:31:51 [debug] 408839#0: bind() [::]:8443 #11
2025/02/04 21:31:51 [debug] 408839#0: bind() 0.0.0.0:8443 #12
2025/02/04 21:31:51 [debug] 408839#0: bind() 0.0.0.0:8443 #13
2025/02/04 21:31:51 [debug] 408839#0: bind() 0.0.0.0:8443 #14
2025/02/04 21:31:51 [debug] 408839#0: bind() [::]:8443 #15
2025/02/04 21:31:51 [debug] 408839#0: bind() [::]:8443 #16
2025/02/04 21:31:51 [debug] 408839#0: bind() [::]:8443 #17
2025/02/04 21:31:51 [debug] 408839#0: add cleanup: 00005632CBCAAE80
2025/02/04 21:31:51 [notice] 408839#0: using the "epoll" event method
2025/02/04 21:31:51 [debug] 408839#0: counter: 00007FC66FDD7080, 1
2025/02/04 21:31:51 [notice] 408839#0: nginx/1.26.1
2025/02/04 21:31:51 [notice] 408839#0: built by gcc 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04)
2025/02/04 21:31:51 [notice] 408839#0: OS: Linux 5.15.153.1-bebbo-WSL2-local-166808-g33cad9854e0b
2025/02/04 21:31:51 [notice] 408839#0: getrlimit(RLIMIT_NOFILE): 1024:1048576
2025/02/04 21:31:51 [debug] 408840#0: write: 18, 00007FFF3C5AAA00, 7, 0
2025/02/04 21:31:51 [debug] 408840#0: setproctitle: "nginx: master process /home/bebbo/own/master/benchmarking-pqc-in-quic/pq-tls-benchmark-framework/emulation-exp/code/tmp/.local/nginx/sbin/nginx -g pid logs/nginx-1.pid; error_log logs/debug.log debug;"
2025/02/04 21:31:51 [notice] 408840#0: start worker processes
2025/02/04 21:31:51 [debug] 408840#0: channel 3:18
2025/02/04 21:31:51 [notice] 408840#0: start worker process 408841
2025/02/04 21:31:51 [debug] 408840#0: channel 19:20
2025/02/04 21:31:51 [debug] 408841#0: add cleanup: 00005632CBCAAF90
2025/02/04 21:31:51 [debug] 408841#0: malloc: 00005632CBCA83E0:16
2025/02/04 21:31:51 [debug] 408841#0: add cleanup: 00005632CBCAAFA8
2025/02/04 21:31:51 [debug] 408841#0: malloc: 00005632CBCA8530:16
2025/02/04 21:31:51 [notice] 408840#0: start worker process 408842
2025/02/04 21:31:51 [debug] 408840#0: pass channel s:1 pid:408842 fd:19 to s:0 pid:408841 fd:3
2025/02/04 21:31:51 [debug] 408840#0: channel 21:22
2025/02/04 21:31:51 [debug] 408842#0: add cleanup: 00005632CBCAAF90
2025/02/04 21:31:51 [debug] 408842#0: malloc: 00005632CBCA83E0:16
2025/02/04 21:31:51 [debug] 408842#0: add cleanup: 00005632CBCAAFA8
2025/02/04 21:31:51 [debug] 408842#0: malloc: 00005632CBCA8530:16
2025/02/04 21:31:51 [notice] 408840#0: start worker process 408843
2025/02/04 21:31:51 [debug] 408840#0: pass channel s:2 pid:408843 fd:21 to s:0 pid:408841 fd:3
2025/02/04 21:31:51 [debug] 408840#0: pass channel s:2 pid:408843 fd:21 to s:1 pid:408842 fd:19
2025/02/04 21:31:51 [debug] 408840#0: channel 23:24
2025/02/04 21:31:51 [notice] 408840#0: start worker process 408844
2025/02/04 21:31:51 [debug] 408840#0: pass channel s:3 pid:408844 fd:23 to s:0 pid:408841 fd:3
2025/02/04 21:31:51 [debug] 408840#0: pass channel s:3 pid:408844 fd:23 to s:1 pid:408842 fd:19
2025/02/04 21:31:51 [debug] 408840#0: pass channel s:3 pid:408844 fd:23 to s:2 pid:408843 fd:21
2025/02/04 21:31:51 [debug] 408840#0: sigsuspend
2025/02/04 21:31:51 [debug] 408843#0: add cleanup: 00005632CBCAAF90
2025/02/04 21:31:51 [debug] 408843#0: malloc: 00005632CBCA83E0:16
2025/02/04 21:31:51 [debug] 408843#0: add cleanup: 00005632CBCAAFA8
2025/02/04 21:31:51 [debug] 408843#0: malloc: 00005632CBCA8530:16
2025/02/04 21:31:51 [debug] 408841#0: notify eventfd: 20
2025/02/04 21:31:51 [debug] 408842#0: notify eventfd: 22
2025/02/04 21:31:51 [debug] 408841#0: testing the EPOLLRDHUP flag: success
2025/02/04 21:31:51 [debug] 408842#0: testing the EPOLLRDHUP flag: success
2025/02/04 21:31:51 [debug] 408841#0: malloc: 00005632CBBDB3B0:6144
2025/02/04 21:31:51 [debug] 408842#0: malloc: 00005632CBBDB3B0:6144
2025/02/04 21:31:51 [debug] 408841#0: malloc: 00007FC66EB84010:245760
2025/02/04 21:31:51 [debug] 408842#0: malloc: 00007FC66EB84010:245760
2025/02/04 21:31:51 [debug] 408841#0: malloc: 00005632CBCAE690:98304
2025/02/04 21:31:51 [debug] 408842#0: malloc: 00005632CBCAE690:98304
2025/02/04 21:31:51 [debug] 408841#0: malloc: 00005632CBCC66A0:98304
2025/02/04 21:31:51 [debug] 408842#0: malloc: 00005632CBCC66A0:98304
2025/02/04 21:31:51 [debug] 408841#0: epoll add event: fd:7 op:1 ev:10000001
2025/02/04 21:31:51 [debug] 408841#0: epoll add event: fd:8 op:1 ev:00002001
2025/02/04 21:31:51 [debug] 408841#0: epoll add event: fd:9 op:1 ev:00002001
2025/02/04 21:31:51 [debug] 408841#0: epoll add event: fd:10 op:1 ev:10000001
2025/02/04 21:31:51 [debug] 408841#0: epoll add event: fd:11 op:1 ev:10000001
2025/02/04 21:31:51 [debug] 408842#0: epoll add event: fd:7 op:1 ev:10000001
2025/02/04 21:31:51 [debug] 408842#0: epoll add event: fd:10 op:1 ev:10000001
2025/02/04 21:31:51 [debug] 408841#0: epoll add event: fd:18 op:1 ev:00002001
2025/02/04 21:31:51 [debug] 408842#0: epoll add event: fd:11 op:1 ev:10000001
2025/02/04 21:31:51 [debug] 408842#0: epoll add event: fd:12 op:1 ev:00002001
2025/02/04 21:31:51 [debug] 408841#0: setproctitle: "nginx: worker process"
2025/02/04 21:31:51 [debug] 408842#0: epoll add event: fd:15 op:1 ev:00002001
2025/02/04 21:31:51 [debug] 408841#0: worker cycle
2025/02/04 21:31:51 [debug] 408841#0: epoll timer: -1
2025/02/04 21:31:51 [debug] 408841#0: epoll: fd:18 ev:0001 d:00007FC66EB844C0
2025/02/04 21:31:51 [debug] 408842#0: epoll add event: fd:20 op:1 ev:00002001
2025/02/04 21:31:51 [debug] 408841#0: channel handler
2025/02/04 21:31:51 [debug] 408842#0: setproctitle: "nginx: worker process"
2025/02/04 21:31:51 [debug] 408841#0: channel: 32
2025/02/04 21:31:51 [debug] 408843#0: notify eventfd: 24
2025/02/04 21:31:51 [debug] 408842#0: worker cycle
2025/02/04 21:31:51 [debug] 408841#0: channel command: 1
2025/02/04 21:31:51 [debug] 408842#0: epoll timer: -1
2025/02/04 21:31:51 [debug] 408841#0: get channel s:1 pid:408842 fd:3
2025/02/04 21:31:51 [debug] 408841#0: channel: 32
2025/02/04 21:31:51 [debug] 408841#0: channel command: 1
2025/02/04 21:31:51 [debug] 408841#0: get channel s:2 pid:408843 fd:21
2025/02/04 21:31:51 [debug] 408842#0: epoll: fd:20 ev:0001 d:00007FC66EB844C0
2025/02/04 21:31:51 [debug] 408843#0: testing the EPOLLRDHUP flag: success
2025/02/04 21:31:51 [debug] 408841#0: channel: 32
2025/02/04 21:31:51 [debug] 408842#0: channel handler
2025/02/04 21:31:51 [debug] 408841#0: channel command: 1
2025/02/04 21:31:51 [debug] 408841#0: get channel s:3 pid:408844 fd:22
2025/02/04 21:31:51 [debug] 408843#0: malloc: 00005632CBBDB3B0:6144
2025/02/04 21:31:51 [debug] 408842#0: channel: 32
2025/02/04 21:31:51 [debug] 408841#0: channel: -2
2025/02/04 21:31:51 [debug] 408842#0: channel command: 1
2025/02/04 21:31:51 [debug] 408841#0: timer delta: 11
2025/02/04 21:31:51 [debug] 408843#0: malloc: 00007FC66EB84010:245760
2025/02/04 21:31:51 [debug] 408842#0: get channel s:2 pid:408843 fd:18
2025/02/04 21:31:51 [debug] 408841#0: worker cycle
2025/02/04 21:31:51 [debug] 408841#0: epoll timer: -1
2025/02/04 21:31:51 [debug] 408842#0: channel: 32
2025/02/04 21:31:51 [debug] 408842#0: channel command: 1
2025/02/04 21:31:51 [debug] 408843#0: malloc: 00005632CBCAE690:98304
2025/02/04 21:31:51 [debug] 408842#0: get channel s:3 pid:408844 fd:19
2025/02/04 21:31:51 [debug] 408842#0: channel: -2
2025/02/04 21:31:51 [debug] 408842#0: timer delta: 11
2025/02/04 21:31:51 [debug] 408842#0: worker cycle
2025/02/04 21:31:51 [debug] 408842#0: epoll timer: -1
2025/02/04 21:31:51 [debug] 408843#0: malloc: 00005632CBCC66A0:98304
2025/02/04 21:31:51 [debug] 408843#0: epoll add event: fd:7 op:1 ev:10000001
2025/02/04 21:31:51 [debug] 408843#0: epoll add event: fd:10 op:1 ev:10000001
2025/02/04 21:31:51 [debug] 408844#0: add cleanup: 00005632CBCAAF90
2025/02/04 21:31:51 [debug] 408844#0: malloc: 00005632CBCA83E0:16
2025/02/04 21:31:51 [debug] 408844#0: add cleanup: 00005632CBCAAFA8
2025/02/04 21:31:51 [debug] 408844#0: malloc: 00005632CBCA8530:16
2025/02/04 21:31:51 [debug] 408843#0: epoll add event: fd:11 op:1 ev:10000001
2025/02/04 21:31:51 [debug] 408843#0: epoll add event: fd:13 op:1 ev:00002001
2025/02/04 21:31:51 [debug] 408843#0: epoll add event: fd:16 op:1 ev:00002001
2025/02/04 21:31:51 [debug] 408843#0: epoll add event: fd:22 op:1 ev:00002001
2025/02/04 21:31:51 [debug] 408843#0: setproctitle: "nginx: worker process"
2025/02/04 21:31:51 [debug] 408843#0: worker cycle
2025/02/04 21:31:51 [debug] 408843#0: epoll timer: -1
2025/02/04 21:31:51 [debug] 408843#0: epoll: fd:22 ev:0001 d:00007FC66EB844C0
2025/02/04 21:31:51 [debug] 408843#0: channel handler
2025/02/04 21:31:51 [debug] 408843#0: channel: 32
2025/02/04 21:31:51 [debug] 408843#0: channel command: 1
2025/02/04 21:31:51 [debug] 408843#0: get channel s:3 pid:408844 fd:18
2025/02/04 21:31:51 [debug] 408843#0: channel: -2
2025/02/04 21:31:51 [debug] 408843#0: timer delta: 11
2025/02/04 21:31:51 [debug] 408843#0: worker cycle
2025/02/04 21:31:51 [debug] 408843#0: epoll timer: -1
2025/02/04 21:31:51 [debug] 408844#0: notify eventfd: 26
2025/02/04 21:31:51 [debug] 408844#0: testing the EPOLLRDHUP flag: success
2025/02/04 21:31:51 [debug] 408844#0: malloc: 00005632CBBDB3B0:6144
2025/02/04 21:31:51 [debug] 408844#0: malloc: 00007FC66EB84010:245760
2025/02/04 21:31:51 [debug] 408844#0: malloc: 00005632CBCAE690:98304
2025/02/04 21:31:51 [debug] 408844#0: malloc: 00005632CBCC66A0:98304
2025/02/04 21:31:51 [debug] 408844#0: epoll add event: fd:7 op:1 ev:10000001
2025/02/04 21:31:51 [debug] 408844#0: epoll add event: fd:10 op:1 ev:10000001
2025/02/04 21:31:51 [debug] 408844#0: epoll add event: fd:11 op:1 ev:10000001
2025/02/04 21:31:51 [debug] 408844#0: epoll add event: fd:14 op:1 ev:00002001
2025/02/04 21:31:51 [debug] 408844#0: epoll add event: fd:17 op:1 ev:00002001
2025/02/04 21:31:51 [debug] 408844#0: epoll add event: fd:24 op:1 ev:00002001
2025/02/04 21:31:51 [debug] 408844#0: setproctitle: "nginx: worker process"
2025/02/04 21:31:51 [debug] 408844#0: worker cycle
2025/02/04 21:31:51 [debug] 408844#0: epoll timer: -1
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: posix_memalign: 00005632CBBC4F70:512 @16
2025/02/04 21:33:52 [debug] 408844#0: malloc: 00005632CBBDCBC0:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: 10.0.0.2:36006 fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic run
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:ce version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1154
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:16 d8b76c5ef993528863f94a1fbb25d792
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 malloc: 00005632CBBCFE80:2456
2025/02/04 21:33:52 [debug] 408844#0: *1 malloc: 00005632CBBD0820:1528
2025/02/04 21:33:52 [debug] 408844#0: *1 posix_memalign: 00005632CBBBE440:512 @16
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_set_initial_secret
2025/02/04 21:33:52 [debug] 408844#0: *1 quic socket seq:0 listening at sid:0000000000003002f444dc1a63445303a424ff4e nsock:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic cid seq:0 received id:20:d54d9bb3254adb1f064c7028c1770567873077fc:00000000000000000000000000000000
2025/02/04 21:33:52 [debug] 408844#0: *1 posix_memalign: 00005632CBBAD050:512 @16
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 created addr:10.0.0.2:36006
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 set active tx:0 rx:0 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 posix_memalign: 00005632CBBA7D60:512 @16
2025/02/04 21:33:52 [debug] 408844#0: *1 quic socket seq:-1 listening at sid:d8b76c5ef993528863f94a1fbb25d792 nsock:2
2025/02/04 21:33:52 [debug] 408844#0: *1 reusable connection: 1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic connection created
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:0 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:0 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:0 rx:1200 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat set method
2025/02/04 21:33:52 [debug] 408844#0: *1 posix_memalign: 00005632CBBD46E0:512 @16
2025/02/04 21:33:52 [debug] 408844#0: *1 quic stateless reset token 329782f85a03fa2691678ddbfe5bf8d7
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:0 CRYPTO len:1133 off:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1133
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:0 largest -1 fr:0 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:0 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer add: 14: 75000:202959626
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer add: 14: 86400000:289284626
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:75000 close:86400000
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 120946
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:0 ACK n:0 delay:0 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:0 encoded nl:1 trunc:0x0
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:75000 close:86400000
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 75000
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:c2 version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1154
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:16 d8b76c5ef993528863f94a1fbb25d792
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:1 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:-1 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:71 rx:2400 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:1 CRYPTO len:1132 off:1133
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1132
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:1 largest 0 fr:0 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:1 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959633
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74993 close:86399993
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 7
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:1 ACK n:0 delay:0 1-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:1 encoded nl:1 trunc:0x1
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74993 close:86399993
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74993
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:c0 version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1154
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:16 d8b76c5ef993528863f94a1fbb25d792
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:2 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:-1 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:142 rx:3600 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:2 CRYPTO len:1132 off:2265
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1132
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:2 largest 1 fr:1 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:2 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959634
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74992 close:86399992
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 1
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:2 ACK n:0 delay:0 2-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:2 encoded nl:1 trunc:0x2
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74992 close:86399992
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74992
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:ce version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1154
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:16 d8b76c5ef993528863f94a1fbb25d792
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:3 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:-1 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:213 rx:4800 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:3 CRYPTO len:1132 off:3397
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1132
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:3 largest 2 fr:2 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:3 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959635
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74991 close:86399991
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 1
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:3 ACK n:0 delay:0 3-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:3 encoded nl:1 trunc:0x3
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74991 close:86399991
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74991
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:c5 version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1154
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:16 d8b76c5ef993528863f94a1fbb25d792
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:4 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:-1 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:284 rx:6000 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:4 CRYPTO len:1132 off:4529
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1132
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:4 largest 3 fr:3 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:4 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959635
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74991 close:86399991
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 0
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:4 ACK n:0 delay:0 4-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:4 encoded nl:1 trunc:0x4
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74991 close:86399991
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74991
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:c4 version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1154
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:16 d8b76c5ef993528863f94a1fbb25d792
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:5 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:-1 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:355 rx:7200 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:5 CRYPTO len:1132 off:5661
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1132
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:5 largest 4 fr:4 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:5 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959635
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74991 close:86399991
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 0
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:5 ACK n:0 delay:0 5-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:5 encoded nl:1 trunc:0x5
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74991 close:86399991
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74991
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:ce version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1154
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:16 d8b76c5ef993528863f94a1fbb25d792
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:6 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:-1 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:426 rx:8400 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:6 CRYPTO len:1132 off:6793
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1132
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:6 largest 5 fr:5 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:6 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959635
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74991 close:86399991
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 0
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:6 ACK n:0 delay:0 6-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:6 encoded nl:1 trunc:0x6
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74991 close:86399991
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74991
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:c7 version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1154
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:16 d8b76c5ef993528863f94a1fbb25d792
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:7 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:-1 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:497 rx:9600 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:7 CRYPTO len:1132 off:7925
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1132
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:7 largest 6 fr:6 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:7 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959635
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74991 close:86399991
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 0
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:7 ACK n:0 delay:0 7-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:7 encoded nl:1 trunc:0x7
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74991 close:86399991
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74991
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:c9 version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1154
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:16 d8b76c5ef993528863f94a1fbb25d792
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:8 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:-1 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:568 rx:10800 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:8 CRYPTO len:1132 off:9057
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1132
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:8 largest 7 fr:7 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:8 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959636
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74990 close:86399990
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 1
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:8 ACK n:0 delay:0 8-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:8 encoded nl:1 trunc:0x8
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74990 close:86399990
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74990
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:ca version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1154
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:16 d8b76c5ef993528863f94a1fbb25d792
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:9 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:-1 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:639 rx:12000 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:9 CRYPTO len:1132 off:10189
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1132
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:9 largest 8 fr:8 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:9 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959636
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74990 close:86399990
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 0
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:9 ACK n:0 delay:0 9-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:9 encoded nl:1 trunc:0x9
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74990 close:86399990
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74990
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:ce version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1150
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:20 0000000000003002f444dc1a63445303a424ff4e
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:10 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:0 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:710 rx:13200 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:10 CRYPTO len:1128 off:11321
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1128
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:10 largest 9 fr:9 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:10 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959833
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74793 close:86399793
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 197
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:10 ACK n:0 delay:0 10-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:10 encoded nl:1 trunc:0xa
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74793 close:86399793
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74793
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:c5 version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1150
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:20 0000000000003002f444dc1a63445303a424ff4e
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:11 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:0 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:781 rx:14400 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:11 CRYPTO len:1128 off:12449
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1128
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:11 largest 10 fr:10 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:11 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959834
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74792 close:86399792
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 1
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:11 ACK n:0 delay:0 11-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:11 encoded nl:1 trunc:0xb
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74792 close:86399792
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74792
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:ce version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1150
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:20 0000000000003002f444dc1a63445303a424ff4e
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:12 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:0 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:852 rx:15600 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:12 CRYPTO len:1128 off:13577
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1128
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:12 largest 11 fr:11 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:12 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959835
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74791 close:86399791
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 1
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:12 ACK n:0 delay:0 12-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:12 encoded nl:1 trunc:0xc
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74791 close:86399791
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74791
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:ce version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1150
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:20 0000000000003002f444dc1a63445303a424ff4e
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:13 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:0 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:923 rx:16800 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:13 CRYPTO len:1128 off:14705
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1128
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:13 largest 12 fr:12 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:13 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959835
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74791 close:86399791
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 0
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:13 ACK n:0 delay:0 13-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:13 encoded nl:1 trunc:0xd
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74791 close:86399791
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74791
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:cf version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1150
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:20 0000000000003002f444dc1a63445303a424ff4e
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:14 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:0 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:994 rx:18000 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:14 CRYPTO len:1128 off:15833
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1128
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:14 largest 13 fr:13 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:14 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959835
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74791 close:86399791
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 0
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:14 ACK n:0 delay:0 14-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:14 encoded nl:1 trunc:0xe
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74791 close:86399791
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74791
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:c6 version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1150
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:20 0000000000003002f444dc1a63445303a424ff4e
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:15 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:0 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:1065 rx:19200 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:15 CRYPTO len:1126 off:16961
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1126
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:15 largest 14 fr:14 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:15 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959835
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74791 close:86399791
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 0
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:15 ACK n:0 delay:0 15-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:15 encoded nl:1 trunc:0xf
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74791 close:86399791
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74791
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:c6 version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1150
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:20 0000000000003002f444dc1a63445303a424ff4e
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:16 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:0 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:1136 rx:20400 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:16 CRYPTO len:1126 off:18087
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1126
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:16 largest 15 fr:15 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:16 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959835
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74791 close:86399791
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 0
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:16 ACK n:0 delay:0 16-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:16 encoded nl:1 trunc:0x10
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74791 close:86399791
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74791
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:c4 version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1150
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:20 0000000000003002f444dc1a63445303a424ff4e
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:17 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:0 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:1207 rx:21600 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:17 CRYPTO len:1126 off:19213
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1126
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:17 largest 16 fr:16 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:17 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959835
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74791 close:86399791
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 0
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:17 ACK n:0 delay:0 17-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:17 encoded nl:1 trunc:0x11
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74791 close:86399791
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74791
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:ce version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:1150
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:20 0000000000003002f444dc1a63445303a424ff4e
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:18 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:0 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:1278 rx:22800 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:18 CRYPTO len:1126 off:20339
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:1126
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:18 largest 17 fr:17 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:18 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer: 14, old: 202959626, new: 202959836
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74790 close:86399790
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 1
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:18 ACK n:0 delay:0 18-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:5 need_ack:0 number:18 encoded nl:1 trunc:0x12
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 71 of 71
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:74790 close:86399790
2025/02/04 21:33:52 [debug] 408844#0: worker cycle
2025/02/04 21:33:52 [debug] 408844#0: epoll timer: 74790
2025/02/04 21:33:52 [debug] 408844#0: epoll: fd:14 ev:0001 d:00007FC66EB842E0
2025/02/04 21:33:52 [debug] 408844#0: quic recvmsg on 0.0.0.0:8443, ready: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic recvmsg: fd:14 n:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic input handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx long flags:ca version:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx init len:310
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx dcid len:20 0000000000003002f444dc1a63445303a424ff4e
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx scid len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 quic address validation token len:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx clearflags:c0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx number:19 len:1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet len:1200 via sock seq:0 path seq:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic path seq:0 status tx:1349 rx:24000 valid:0 st:0 mtu:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame rx init:19 CRYPTO len:286 off:21465
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat rx init len:286
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat parse transport params
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL server name: "localhost"
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL ALPN supported by client: h3
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL ALPN selected: h3
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat tx init len:21690
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_add_handshake_data
2025/02/04 21:33:52 [debug] 408844#0: *1 quic SSL_get_peer_quic_transport_params(): params_len:70
2025/02/04 21:33:52 [debug] 408844#0: *1 quic transport parameters parsed ok
2025/02/04 21:33:52 [debug] 408844#0: *1 quic tp disable active migration: 0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic tp idle_timeout:30000
2025/02/04 21:33:52 [debug] 408844#0: *1 quic tp max_udp_payload_size:1200
2025/02/04 21:33:52 [debug] 408844#0: *1 quic tp max_data:10000000
2025/02/04 21:33:52 [debug] 408844#0: *1 quic tp max_stream_data_bidi_local:1000000
2025/02/04 21:33:52 [debug] 408844#0: *1 quic tp max_stream_data_bidi_remote:1000000
2025/02/04 21:33:52 [debug] 408844#0: *1 quic tp max_stream_data_uni:1000000
2025/02/04 21:33:52 [debug] 408844#0: *1 quic tp initial_max_streams_bidi:100
2025/02/04 21:33:52 [debug] 408844#0: *1 quic tp initial_max_streams_uni:100
2025/02/04 21:33:52 [debug] 408844#0: *1 quic tp ack_delay_exponent:3
2025/02/04 21:33:52 [debug] 408844#0: *1 quic tp max_ack_delay:25
2025/02/04 21:33:52 [debug] 408844#0: *1 quic tp active_connection_id_limit:2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic tp initial source_connection_id len:20 d54d9bb3254adb1f064c7028c1770567873077fc
2025/02/04 21:33:52 [debug] 408844#0: *1 malloc: 00005632CBCE7390:4096
2025/02/04 21:33:52 [debug] 408844#0: *1 posix_memalign: 00005632CBCE83A0:512 @16
2025/02/04 21:33:52 [debug] 408844#0: *1 malloc: 00005632CBCE85B0:4096
2025/02/04 21:33:52 [debug] 408844#0: *1 malloc: 00005632CBCE95C0:4096
2025/02/04 21:33:52 [debug] 408844#0: *1 malloc: 00005632CBCEA5D0:4096
2025/02/04 21:33:52 [debug] 408844#0: *1 malloc: 00005632CBCEB5E0:4096
2025/02/04 21:33:52 [debug] 408844#0: *1 malloc: 00005632CBCEC5F0:4096
2025/02/04 21:33:52 [debug] 408844#0: *1 posix_memalign: 00005632CBCED600:512 @16
2025/02/04 21:33:52 [debug] 408844#0: *1 post event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 ssl keylog: SERVER_HANDSHAKE_TRAFFIC_SECRET 22023799b80aeee5c6aa89361bbcf38467ef21c953efe5a93c34f9498d6c2e46 6323fd6e776d2d33c77a4d1329ad5e4976a8ccbaae0ac1042a4f9b1aa84c8eddc8ddf717c19ed76237629b933874354c
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat secret SERVER_HANDSHAKE_TRAFFIC_SECRET
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_set_write_secret() level:2
2025/02/04 21:33:52 [debug] 408844#0: *1 ssl keylog: CLIENT_HANDSHAKE_TRAFFIC_SECRET 22023799b80aeee5c6aa89361bbcf38467ef21c953efe5a93c34f9498d6c2e46 65829ff79f84540aed97ffe2598fd0aef95830403f3066cf578b56ae6b0af75a86440a23375378ac18cc30e4e6f894d7
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat secret CLIENT_HANDSHAKE_TRAFFIC_SECRET
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_set_read_secret() level:2
2025/02/04 21:33:52 [debug] 408844#0: *1 add cleanup: 00005632CBCED690
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat add transport params
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat tx hs len:239
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_add_handshake_data
2025/02/04 21:33:52 [debug] 408844#0: *1 malloc: 00005632CBBD3580:4096
2025/02/04 21:33:52 [debug] 408844#0: *1 update posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat tx hs len:384
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_add_handshake_data
2025/02/04 21:33:52 [debug] 408844#0: *1 malloc: 00005632CBCFEA00:4096
2025/02/04 21:33:52 [debug] 408844#0: *1 posix_memalign: 00005632CBCFFA10:512 @16
2025/02/04 21:33:52 [debug] 408844#0: *1 update posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat tx hs len:78
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_add_handshake_data
2025/02/04 21:33:52 [debug] 408844#0: *1 malloc: 00005632CBD00030:4096
2025/02/04 21:33:52 [debug] 408844#0: *1 update posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat tx hs len:52
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_add_handshake_data
2025/02/04 21:33:52 [debug] 408844#0: *1 malloc: 00005632CBD01040:4096
2025/02/04 21:33:52 [debug] 408844#0: *1 posix_memalign: 00005632CBD02050:512 @16
2025/02/04 21:33:52 [debug] 408844#0: *1 update posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 ssl keylog: EXPORTER_SECRET 22023799b80aeee5c6aa89361bbcf38467ef21c953efe5a93c34f9498d6c2e46 6b2b1611de4112b112db8651221276f4eb9e65d1935695272f332f6bd5e5043adea9f7ee81ebc7c9459e2dd4d216161d
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat secret EXPORTER_SECRET
2025/02/04 21:33:52 [debug] 408844#0: *1 ssl keylog: SERVER_TRAFFIC_SECRET_0 22023799b80aeee5c6aa89361bbcf38467ef21c953efe5a93c34f9498d6c2e46 10c927403f553e2a186ecb6cde22ec2fdf3c9fef50becc76fd55d5e93dc547b0c7de1f502ced62f158ded2ab3d2648a1
2025/02/04 21:33:52 [debug] 408844#0: *1 quic compat secret SERVER_TRAFFIC_SECRET_0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_set_write_secret() level:3
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_do_handshake: -1
2025/02/04 21:33:52 [debug] 408844#0: *1 SSL_get_error: 2
2025/02/04 21:33:52 [debug] 408844#0: *1 quic ngx_quic_ack_packet pn:19 largest 18 fr:18 nranges:0
2025/02/04 21:33:52 [debug] 408844#0: *1 update posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:0 level:init decr:1 pn:19 perr:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet rx short flags:0
2025/02/04 21:33:52 [info] 408844#0: *1 quic fixed bit is not set while parsing quic packet, client: 10.0.0.2, server: 0.0.0.0:8443
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet done rc:-5 parse failed
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer del: 14: 202959626
2025/02/04 21:33:52 [debug] 408844#0: *1 event timer add: 14: 30000:202914836
2025/02/04 21:33:52 [debug] 408844#0: *1 quic state: read:30000 close:86399790
2025/02/04 21:33:52 [debug] 408844#0: timer delta: 0
2025/02/04 21:33:52 [debug] 408844#0: posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 delete posted event 00005632CBBD0488
2025/02/04 21:33:52 [debug] 408844#0: *1 quic push handler
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:19 ACK n:0 delay:0 19-0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic split frame now:21696 need:1128 shrink:20568
2025/02/04 21:33:52 [debug] 408844#0: *1 posix_memalign: 00005632CBCFC740:512 @16
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:19 CRYPTO len:1122 off:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic split frame now:20575 need:2 shrink:20573
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:1131 need_ack:1 number:19 encoded nl:1 trunc:0x13
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output hs packet max:2 min:2
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 1198 of 1198
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:1198
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:1198
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:1198
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic split frame now:20575 need:1133 shrink:19442
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:20 CRYPTO len:1126 off:1122
2025/02/04 21:33:52 [debug] 408844#0: *1 quic split frame now:19449 need:2 shrink:19447
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:1131 need_ack:1 number:20 encoded nl:1 trunc:0x14
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output hs packet max:2 min:2
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 1198 of 1198
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:2396
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:2396
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:2396
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic split frame now:19449 need:1133 shrink:18316
2025/02/04 21:33:52 [debug] 408844#0: *1 posix_memalign: 00005632CBCFC950:512 @16
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:21 CRYPTO len:1126 off:2248
2025/02/04 21:33:52 [debug] 408844#0: *1 quic split frame now:18323 need:2 shrink:18321
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:1131 need_ack:1 number:21 encoded nl:1 trunc:0x15
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output hs packet max:2 min:2
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 1198 of 1198
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:3594
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:3594
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:3594
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic split frame now:18323 need:1133 shrink:17190
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:22 CRYPTO len:1126 off:3374
2025/02/04 21:33:52 [debug] 408844#0: *1 quic split frame now:17197 need:2 shrink:17195
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:1131 need_ack:1 number:22 encoded nl:1 trunc:0x16
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output hs packet max:2 min:2
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 1198 of 1198
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:4792
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:4792
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:4792
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic split frame now:17197 need:1133 shrink:16064
2025/02/04 21:33:52 [debug] 408844#0: *1 posix_memalign: 00005632CBCFCB60:512 @16
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:23 CRYPTO len:1126 off:4500
2025/02/04 21:33:52 [debug] 408844#0: *1 quic split frame now:16069 need:2 shrink:16067
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:1131 need_ack:1 number:23 encoded nl:1 trunc:0x17
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output hs packet max:2 min:2
2025/02/04 21:33:52 [debug] 408844#0: *1 sendmsg: 1198 of 1198
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:5990
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:5990
2025/02/04 21:33:52 [debug] 408844#0: *1 quic congestion send if:5990
2025/02/04 21:33:52 [debug] 408844#0: *1 quic output init packet max:1200 min:0
2025/02/04 21:33:52 [debug] 408844#0: *1 quic split frame now:16069 need:1133 shrink:14936
2025/02/04 21:33:52 [debug] 408844#0: *1 quic frame tx init:24 CRYPTO len:1128 off:5626
2025/02/04 21:33:52 [debug] 408844#0: *1 quic packet tx init bytes:1133 need_ack:1 number:24 encoded nl:1 trunc:0x18