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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
|
manyptrwrong
292/254.0.99.203.in-addr.arpa
start 933286859.476326
socket type=SOCK_DGRAM
socket=4
+0.000271
fcntl fd=4 cmd=F_GETFL
fcntl=~O_NONBLOCK&...
+0.000083
fcntl fd=4 cmd=F_SETFL O_NONBLOCK|...
fcntl=OK
+0.000062
sendto fd=4 addr=140.200.128.13:53
311f0100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 010001.
sendto=43
+0.001694
sendto fd=4 addr=140.200.128.13:53
31200100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 020001.
sendto=43
+0.001119
sendto fd=4 addr=140.200.128.13:53
31210100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 050001.
sendto=43
+0.001130
sendto fd=4 addr=140.200.128.13:53
31220100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 060001.
sendto=43
+0.001150
sendto fd=4 addr=140.200.128.13:53
31230100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.001229
sendto fd=4 addr=140.200.128.13:53
31240100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 0d0001.
sendto=43
+0.001161
sendto fd=4 addr=140.200.128.13:53
31250100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 0f0001.
sendto=43
+0.001179
sendto fd=4 addr=140.200.128.13:53
31260100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 100001.
sendto=43
+0.001152
sendto fd=4 addr=140.200.128.13:53
31270100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 110001.
sendto=43
+0.001143
sendto fd=4 addr=140.200.128.13:53
31280100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 010001.
sendto=43
+0.001191
sendto fd=4 addr=140.200.128.13:53
31290100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 020001.
sendto=43
+0.001150
sendto fd=4 addr=140.200.128.13:53
312a0100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 0c0001.
sendto=43
+0.001220
sendto fd=4 addr=140.200.128.13:53
312b0100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 0f0001.
sendto=43
+0.001148
sendto fd=4 addr=140.200.128.13:53
312c0100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 060001.
sendto=43
+0.001183
sendto fd=4 addr=140.200.128.13:53
312d0100 00010000 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 110001.
sendto=43
+0.001193
select max=5 rfds=[4] wfds=[] efds=[] to=1.981958
select=1 rfds=[4] wfds=[] efds=[]
+0.502250
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
311f8500 00010000 00010000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 01000101 30023939 03323033 07696e2d 61646472 04617270
61000006 00010001 5180002e 026e7308 73656375 72697479 02636f02 6e7a0004
726f6f74 c04c7727 714c0000 2a300000 0e100009 3a800001 5180.
+0.001383
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000487
select max=5 rfds=[4] wfds=[] efds=[] to=1.479532
select=1 rfds=[4] wfds=[] efds=[]
+1.-892259
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31218500 00010000 00010000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 05000101 30023939 03323033 07696e2d 61646472 04617270
61000006 00010001 5180002e 026e7308 73656375 72697479 02636f02 6e7a0004
726f6f74 c04c7727 714c0000 2a300000 0e100009 3a800001 5180.
+0.000890
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000419
select max=5 rfds=[4] wfds=[] efds=[] to=1.370482
select=1 rfds=[4] wfds=[] efds=[]
+0.038604
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31228500 00010000 00010000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 06000101 30023939 03323033 07696e2d 61646472 04617270
61000006 00010001 5180002e 026e7308 73656375 72697479 02636f02 6e7a0004
726f6f74 c04c7727 714c0000 2a300000 0e100009 3a800001 5180.
+0.000852
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000399
select max=5 rfds=[4] wfds=[] efds=[] to=1.330627
select=1 rfds=[4] wfds=[] efds=[]
+0.038734
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31208500 00010000 00010000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 02000101 30023939 03323033 07696e2d 61646472 04617270
61000006 00010001 5180002e 026e7308 73656375 72697479 02636f02 6e7a0004
726f6f74 c04c7727 714c0000 2a300000 0e100009 3a800001 5180.
+0.000835
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000354
select max=5 rfds=[4] wfds=[] efds=[] to=1.294103
select=1 rfds=[4] wfds=[] efds=[]
+0.038824
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31248500 00010000 00010000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 0d000101 30023939 03323033 07696e2d 61646472 04617270
61000006 00010001 5180002e 026e7308 73656375 72697479 02636f02 6e7a0004
726f6f74 c04c7727 714c0000 2a300000 0e100009 3a800001 5180.
+0.000863
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000406
select max=5 rfds=[4] wfds=[] efds=[] to=1.254010
select=1 rfds=[4] wfds=[] efds=[]
+0.129111
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31238300 00010013 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 0c0001c0 0c000c00 01000151 80001302 6e730873 65637572
69747902 636f026e 7a00c00c 000c0001 00015180 00080574 65747261 c043c00c
000c0001 00015180 000d046d 61696c05 61676174 65c043c0 0c000c00 01000151
80000502 6e73c06f c00c000c 00010001 51800013 10736563 75726974 79747261
696e696e 67c043c0 0c000c00 01000151 80001002 6e730a67 69667462 61736b65
74c043c0 0c000c00 01000151 80001202 6e730873 65637572 69747903 67656ec0
46c00c00 0c000100 01518000 0a07626f 75717565 74c043c0 0c000c00 01000151
8000100d 696e7665 73746967 6174696f 6ec043c0 0c000c00 01000151 80000f02
6e73056e 7a697069 036f7267 c046c00c 000c0001 00015180 000c046d 61696c04
6e657275 c043c00c 000c0001 00015180 0002c03a c00c000c 00010001 51800010
026e730a 73746f72 65776174 6368c043 c00c000c 00010001 51800002 c0d2c00c
000c0001 00015180 0005026e 73c056c0 0c000c00 01000151 80000704 6d61696c
c056c00c 000c0001 00015180 0010026e 730a7365 63757269 63617264 c043c00c
000c0001 00015180 000f026e 7309756e 64657268 6f7572c0 43c00c00 0c000100
01518000 06036263 63c043.
+0.003324
socket type=SOCK_STREAM
socket=5
+0.001351
fcntl fd=5 cmd=F_GETFL
fcntl=~O_NONBLOCK&...
+0.000068
fcntl fd=5 cmd=F_SETFL O_NONBLOCK|...
fcntl=OK
+0.000060
connect fd=5 addr=140.200.128.13:53
connect=EINPROGRESS
+0.000280
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000124
select max=6 rfds=[4] wfds=[5] efds=[] to=1.122082
select=1 rfds=[4] wfds=[] efds=[]
+0.034396
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31268500 00010000 00010000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 10000101 30023939 03323033 07696e2d 61646472 04617270
61000006 00010001 5180002e 026e7308 73656375 72697479 02636f02 6e7a0004
726f6f74 c04c7727 714c0000 2a300000 0e100009 3a800001 5180.
+0.000862
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000377
select max=6 rfds=[4] wfds=[5] efds=[] to=1.086447
select=1 rfds=[4] wfds=[] efds=[]
+0.038752
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31258500 00010000 00010000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 0f000101 30023939 03323033 07696e2d 61646472 04617270
61000006 00010001 5180002e 026e7308 73656375 72697479 02636f02 6e7a0004
726f6f74 c04c7727 714c0000 2a300000 0e100009 3a800001 5180.
+0.000842
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000365
select max=6 rfds=[4] wfds=[5] efds=[] to=1.048819
select=1 rfds=[4] wfds=[] efds=[]
+0.038761
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31278500 00010000 00010000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 11000101 30023939 03323033 07696e2d 61646472 04617270
61000006 00010001 5180002e 026e7308 73656375 72697479 02636f02 6e7a0004
726f6f74 c04c7727 714c0000 2a300000 0e100009 3a800001 5180.
+0.000834
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000362
select max=6 rfds=[4] wfds=[5] efds=[] to=1.010005
select=1 rfds=[4] wfds=[] efds=[]
+0.038783
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31288500 00010000 00010000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 01000101 30023939 03323033 07696e2d 61646472 04617270
61000006 00010001 5180002e 026e7308 73656375 72697479 02636f02 6e7a0004
726f6f74 c04c7727 714c0000 2a300000 0e100009 3a800001 5180.
+0.000832
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000411
select max=6 rfds=[4] wfds=[5] efds=[] to=0.971170
select=1 rfds=[4] wfds=[] efds=[]
+0.139078
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
312a8300 00010013 00000000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 0c0001c0 0c000c00 01000151 80001302 6e730873 65637572
69747902 636f026e 7a00c00c 000c0001 00015180 00080574 65747261 c043c00c
000c0001 00015180 000d046d 61696c05 61676174 65c043c0 0c000c00 01000151
80000502 6e73c06f c00c000c 00010001 51800013 10736563 75726974 79747261
696e696e 67c043c0 0c000c00 01000151 80001002 6e730a67 69667462 61736b65
74c043c0 0c000c00 01000151 80001202 6e730873 65637572 69747903 67656ec0
46c00c00 0c000100 01518000 0a07626f 75717565 74c043c0 0c000c00 01000151
8000100d 696e7665 73746967 6174696f 6ec043c0 0c000c00 01000151 80000f02
6e73056e 7a697069 036f7267 c046c00c 000c0001 00015180 000c046d 61696c04
6e657275 c043c00c 000c0001 00015180 0002c03a c00c000c 00010001 51800010
026e730a 73746f72 65776174 6368c043 c00c000c 00010001 51800002 c0d2c00c
000c0001 00015180 0005026e 73c056c0 0c000c00 01000151 80000704 6d61696c
c056c00c 000c0001 00015180 0010026e 730a7365 63757269 63617264 c043c00c
000c0001 00015180 000f026e 7309756e 64657268 6f7572c0 43c00c00 0c000100
01518000 06036263 63c043.
+0.002995
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000416
select max=6 rfds=[4] wfds=[5] efds=[] to=0.828681
select=1 rfds=[4] wfds=[] efds=[]
+0.036200
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
312b8500 00010000 00010000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 0f000101 30023939 03323033 07696e2d 61646472 04617270
61000006 00010001 5180002e 026e7308 73656375 72697479 02636f02 6e7a0004
726f6f74 c04c7727 714c0000 2a300000 0e100009 3a800001 5180.
+0.000832
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000371
select max=6 rfds=[4] wfds=[5] efds=[] to=0.791278
select=1 rfds=[4] wfds=[] efds=[]
+0.038747
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31298500 00010000 00010000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 02000101 30023939 03323033 07696e2d 61646472 04617270
61000006 00010001 5180002e 026e7308 73656375 72697479 02636f02 6e7a0004
726f6f74 c04c7727 714c0000 2a300000 0e100009 3a800001 5180.
+0.000836
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000364
select max=6 rfds=[4] wfds=[5] efds=[] to=0.754849
select=1 rfds=[4] wfds=[] efds=[]
+0.038774
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
312c8500 00010000 00010000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 06000101 30023939 03323033 07696e2d 61646472 04617270
61000006 00010001 5180002e 026e7308 73656375 72697479 02636f02 6e7a0004
726f6f74 c04c7727 714c0000 2a300000 0e100009 3a800001 5180.
+0.000832
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000430
select max=6 rfds=[4] wfds=[5] efds=[] to=0.715996
select=1 rfds=[4] wfds=[] efds=[]
+0.038729
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
312d8500 00010000 00010000 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 11000101 30023939 03323033 07696e2d 61646472 04617270
61000006 00010001 5180002e 026e7308 73656375 72697479 02636f02 6e7a0004
726f6f74 c04c7727 714c0000 2a300000 0e100009 3a800001 5180.
+0.000837
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000373
select max=6 rfds=[4] wfds=[5] efds=[] to=13.539402
select=1 rfds=[] wfds=[5] efds=[]
+0.008807
read fd=5 buflen=1
read=EAGAIN
+0.000213
write fd=5
002b3123 01000001 00000000 00000332 35340130 02393903 32303307 696e2d61
64647204 61727061 00000c00 01.
write=45
+0.000894
write fd=5
002b312a 01000001 00000000 00000332 35340130 02393903 32303307 696e2d61
64647204 61727061 00000c00 01.
write=45
+0.000449
select max=6 rfds=[4,5] wfds=[] efds=[5] to=29.529039
select=1 rfds=[5] wfds=[] efds=[]
+1.-90216
read fd=5 buflen=2
read=OK
097f.
+0.000334
read fd=5 buflen=2431
read=OK
31238500 0001005e 00020002 03323534 01300239 39033230 3307696e 2d616464
72046172 70610000 0c0001c0 0c000c00 01000151 80001302 6e730873 65637572
69747902 636f026e 7a00c00c 000c0001 00015180 00080574 65747261 c043c00c
000c0001 00015180 000d046d 61696c05 61676174 65c043c0 0c000c00 01000151
80000502 6e73c06f c00c000c 00010001 51800013 10736563 75726974 79747261
696e696e 67c043c0 0c000c00 01000151 80001002 6e730a67 69667462 61736b65
74c043c0 0c000c00 01000151 80001202 6e730873 65637572 69747903 67656ec0
46c00c00 0c000100 01518000 0a07626f 75717565 74c043c0 0c000c00 01000151
8000100d 696e7665 73746967 6174696f 6ec043c0 0c000c00 01000151 80000f02
6e73056e 7a697069 036f7267 c046c00c 000c0001 00015180 000c046d 61696c04
6e657275 c043c00c 000c0001 00015180 0002c03a c00c000c 00010001 51800010
026e730a 73746f72 65776174 6368c043 c00c000c 00010001 51800002 c0d2c00c
000c0001 00015180 0005026e 73c056c0 0c000c00 01000151 80000704 6d61696c
c056c00c 000c0001 00015180 0010026e 730a7365 63757269 63617264 c043c00c
000c0001 00015180 000f026e 7309756e 64657268 6f7572c0 43c00c00 0c000100
01518000 06036263 63c043c0 0c000c00 01000151 80000b08 73656375 72697479
c128c00c 000c0001 00015180 00100d62 7572676c 6172616c 61726d73 c043c00c
000c0001 00015180 000b026e 73057361 666573c0 43c00c00 0c000100 01518000
05026e73 c1f7c00c 000c0001 00015180 00131063 6f757065 72636f6e 73756c74
696e67c0 43c00c00 0c000100 01518000 110e7365 63757269 74796775 61726473
c043c00c 000c0001 00015180 000c026e 73066775 61726473 c043c00c 000c0001
00015180 00070461 736973c1 28c00c00 0c000100 01518000 02c13fc0 0c000c00
01000151 800002c0 b6c00c00 0c000100 01518000 08056d61 676963c0 43c00c00
0c000100 01518000 07046d61 696cc1e5 c00c000c 00010001 51800005 026e73c1
03c00c00 0c000100 01518000 02c122c0 0c000c00 01000151 80000502 6e73c0ed
c00c000c 00010001 51800007 046d6169 6cc22dc0 0c000c00 01000151 80000502
6e73c1e5 c00c000c 00010001 51800005 026e73c2 0ec00c00 0c000100 01518000
05026e73 c271c00c 000c0001 00015180 00100d63 6f766572 7463616d 65726173
c043c00c 000c0001 00015180 0005026e 73c13fc0 0c000c00 01000151 80001302
6e730d63 6f766572 7463616d 65726173 c043c00c 000c0001 00015180 000b0862
6f757175 657473c0 43c00c00 0c000100 01518000 0d0a636f 6e63656e 74726963
c043c00c 000c0001 00015180 0005026e 73c094c0 0c000c00 01000151 80000704
6d61696c c252c00c 000c0001 00015180 00110e72 65746169 6c736563 75726974
79c043c0 0c000c00 01000151 80001002 6e730a63 6f6e6365 6e747269 63c043c0
0c000c00 01000151 80000d04 6d61696c 056d6167 6963c043 c00c000c 00010001
5180000c 096e7a61 6e676c69 6e67c043 c00c000c 00010001 51800005 026e73c2
52c00c00 0c000100 01518000 0f026e73 096e7a61 6e676c69 6e67c043 c00c000c
00010001 51800007 046d6169 6cc163c0 0c000c00 01000151 80000805 73776966
74c043c0 0c000c00 01000151 80001104 6d61696c 0973656c 65637469 7665c043
c00c000c 00010001 5180000f 026e7309 666f7265 66726f6e 74c043c0 0c000c00
01000151 80001104 6d61696c 096e7a61 6e676c69 6e67c043 c00c000c 00010001
51800009 06677561 726473c0 43c00c00 0c000100 01518000 11046d61 696c096e
7a646573 69676e73 c043c00c 000c0001 00015180 0002c163 c00c000c 00010001
51800018 026e7312 73656375 72697479 6d616e61 67656d65 6e74c043 c00c000c
00010001 51800012 046d6169 6c0a776f 6f6c776f 72746873 c043c00c 000c0001
00015180 0012046d 61696c0a 636f6e63 656e.
+0.009121
read fd=5 buflen=973
read=EAGAIN
+0.000255
select max=6 rfds=[4,5] wfds=[] efds=[5] to=28.609545
select=1 rfds=[5] wfds=[] efds=[]
+1.-260444
read fd=5 buflen=973
read=OK
74726963 c043c00c 000c0001 00015180 000c0973 656c6563 74697665 c043c00c
000c0001 00015180 00181573 70656369 616c696e 76657374 69676174 696f6e73
c043c00c 000c0001 00015180 000b026e 73057377 696674c0 43c00c00 0c000100
01518000 0d046d61 696c0573 77696674 c043c00c 000c0001 00015180 0013026e
73097365 63757265 6e657403 6e6574c0 46c00c00 0c000100 01518000 17147072
69766174 65696e76 65737469 67617469 6f6ec043 c00c000c 00010001 5180001a
026e7314 70726976 61746569 6e766573 74696761 74696f6e c043c00c 000c0001
00015180 00090665 74726164 65c043c0 0c000c00 01000151 80001b02 6e731573
70656369 616c696e 76657374 69676174 696f6e73 c043c00c 000c0001 00015180
000e046d 61696c06 616e7365 7474c043 c00c000c 00010001 5180000e 03667470
07776172 72656e74 c043c00c 000c0001 00015180 0014026e 730e7265 7461696c
73656375 72697479 c043c00c 000c0001 00015180 001a046d 61696c12 73656375
72697479 6d616e61 67656d65 6e74c043 c00c000c 00010001 5180000b 026e7305
6d616769 63c043c0 0c000c00 01000151 80001104 6d61696c 09666f72 6566726f
6e74c043 c00c000c 00010001 51800007 046d6169 6cc1b1c0 0c000c00 01000151
800002c1 b1c00c00 0c000100 01518000 0f026e73 096e7a64 65736967 6e73c043
c00c000c 00010001 51800002 c22dc00c 000c0001 00015180 000f026e 73097365
6c656374 697665c0 43c00c00 0c000100 01518000 0c09666f 72656672 6f6e74c0
43c00c00 0c000100 01518000 15127365 63757269 74796d61 6e616765 6d656e74
c043c00c 000c0001 00015180 0002c1cd c00c000c 00010001 51800010 09736563
7572656e 6574036e 6574c046 c00c000c 00010001 5180001d 046d6169 6c157370
65636961 6c696e76 65737469 67617469 6f6e73c0 43c00c00 0c000100 01518000
0c096e7a 64657369 676e73c0 43c00c00 0c000100 01518000 0c026e73 06657472
616465c0 43c00c00 0c000100 01518000 07046d61 696cc122 c00c000c 00010001
51800007 046d6169 6cc1cdc0 0c000c00 01000151 80000a02 6e730461 736973c1
28c00c00 0c000100 01518000 0e026e73 08626f75 71756574 73c043c0 0c000c00
01000151 800002c0 6f013002 39390332 30330769 6e2d6164 64720461 72706100
00020001 00015180 0002c037 01300239 39033230 3307696e 2d616464 72046172
70610000 02000100 01518000 11036e73 31077761 696b6174 6f026163 c046c037
00010001 00015180 0004cb63 00fe036e 73310777 61696b61 746f0261 63c04600
01000100 01518000 048cc880 0d.
+0.005825
read fd=5 buflen=2433
read=EAGAIN
+0.018754
select max=6 rfds=[4,5] wfds=[] efds=[5] to=28.145272
select=1 rfds=[5] wfds=[] efds=[]
+0.355726
read fd=5 buflen=2433
read=OK
097f312a 85000001 005e0002 00020332 35340130 02393903 32303307 696e2d61
64647204 61727061 00000c00 01c00c00 0c000100 01518000 13026e73 08736563
75726974 7902636f 026e7a00 c00c000c 00010001 51800008 05746574 7261c043
c00c000c 00010001 5180000d 046d6169 6c056167 617465c0 43c00c00 0c000100
01518000 05026e73 c06fc00c 000c0001 00015180 00131073 65637572 69747974
7261696e 696e67c0 43c00c00 0c000100 01518000 10026e73 0a676966 74626173
6b6574c0 43c00c00 0c000100 01518000 12026e73 08736563 75726974 79036765
6ec046c0 0c000c00 01000151 80000a07 626f7571 756574c0 43c00c00 0c000100
01518000 100d696e 76657374 69676174 696f6ec0 43c00c00 0c000100 01518000
0f026e73 056e7a69 7069036f 7267c046 c00c000c 00010001 5180000c 046d6169
6c046e65 7275c043 c00c000c 00010001 51800002 c03ac00c 000c0001 00015180
0010026e 730a7374 6f726577 61746368 c043c00c 000c0001 00015180 0002c0d2
c00c000c 00010001 51800005 026e73c0 56c00c00 0c000100 01518000 07046d61
696cc056 c00c000c 00010001 51800010 026e730a 73656375 72696361 7264c043
c00c000c 00010001 5180000f 026e7309 756e6465 72686f75 72c043c0 0c000c00
01000151 80000603 626363c0 43c00c00 0c000100 01518000 0b087365 63757269
7479c128 c00c000c 00010001 51800010 0d627572 676c6172 616c6172 6d73c043
c00c000c 00010001 5180000b 026e7305 73616665 73c043c0 0c000c00 01000151
80000502 6e73c1f7 c00c000c 00010001 51800013 10636f75 70657263 6f6e7375
6c74696e 67c043c0 0c000c00 01000151 8000110e 73656375 72697479 67756172
6473c043 c00c000c 00010001 5180000c 026e7306 67756172 6473c043 c00c000c
00010001 51800007 04617369 73c128c0 0c000c00 01000151 800002c1 3fc00c00
0c000100 01518000 02c0b6c0 0c000c00 01000151 80000805 6d616769 63c043c0
0c000c00 01000151 80000704 6d61696c c1e5c00c 000c0001 00015180 0005026e
73c103c0 0c000c00 01000151 800002c1 22c00c00 0c000100 01518000 05026e73
c0edc00c 000c0001 00015180 0007046d 61696cc2 2dc00c00 0c000100 01518000
05026e73 c1e5c00c 000c0001 00015180 0005026e 73c20ec0 0c000c00 01000151
80000502 6e73c271 c00c000c 00010001 51800010 0d636f76 65727463 616d6572
6173c043 c00c000c 00010001 51800005 026e73c1 3fc00c00 0c000100 01518000
13026e73 0d636f76 65727463 616d6572 6173c043 c00c000c 00010001 5180000b
08626f75 71756574 73c043c0 0c000c00 01000151 80000d0a 636f6e63 656e7472
6963c043 c00c000c 00010001 51800005 026e73c0 94c00c00 0c000100 01518000
07046d61 696cc252 c00c000c 00010001 51800011 0e726574 61696c73 65637572
697479c0 43c00c00 0c000100 01518000 10026e73 0a636f6e 63656e74 726963c0
43c00c00 0c000100 01518000 0d046d61 696c056d 61676963 c043c00c 000c0001
00015180 000c096e 7a616e67 6c696e67 c043c00c 000c0001 00015180 0005026e
73c252c0 0c000c00 01000151 80000f02 6e73096e 7a616e67 6c696e67 c043c00c
000c0001 00015180 0007046d 61696cc1 63c00c00 0c000100 01518000 08057377
696674c0 43c00c00 0c000100 01518000 11046d61 696c0973 656c6563 74697665
c043c00c 000c0001 00015180 000f026e 7309666f 72656672 6f6e74c0 43c00c00
0c000100 01518000 11046d61 696c096e 7a616e67 6c696e67 c043c00c 000c0001
00015180 00090667 75617264 73c043c0 0c000c00 01000151 80001104 6d61696c
096e7a64 65736967 6e73c043 c00c000c 00010001 51800002 c163c00c 000c0001
00015180 0018026e 73127365 63757269 74796d61 6e616765 6d656e74 c043c00c
000c0001 00015180 0012046d 61696c0a 776f6f6c 776f7274 6873c043 c00c000c
00010001 51800012 046d6169 6c0a636f 6e63656e.
+0.008610
read fd=5 buflen=973
read=EAGAIN
+0.000242
select max=6 rfds=[4,5] wfds=[] efds=[5] to=27.780694
select=1 rfds=[5] wfds=[] efds=[]
+1.-129629
read fd=5 buflen=973
read=OK
74726963 c043c00c 000c0001 00015180 000c0973 656c6563 74697665 c043c00c
000c0001 00015180 00181573 70656369 616c696e 76657374 69676174 696f6e73
c043c00c 000c0001 00015180 000b026e 73057377 696674c0 43c00c00 0c000100
01518000 0d046d61 696c0573 77696674 c043c00c 000c0001 00015180 0013026e
73097365 63757265 6e657403 6e6574c0 46c00c00 0c000100 01518000 17147072
69766174 65696e76 65737469 67617469 6f6ec043 c00c000c 00010001 5180001a
026e7314 70726976 61746569 6e766573 74696761 74696f6e c043c00c 000c0001
00015180 00090665 74726164 65c043c0 0c000c00 01000151 80001b02 6e731573
70656369 616c696e 76657374 69676174 696f6e73 c043c00c 000c0001 00015180
000e046d 61696c06 616e7365 7474c043 c00c000c 00010001 5180000e 03667470
07776172 72656e74 c043c00c 000c0001 00015180 0014026e 730e7265 7461696c
73656375 72697479 c043c00c 000c0001 00015180 001a046d 61696c12 73656375
72697479 6d616e61 67656d65 6e74c043 c00c000c 00010001 5180000b 026e7305
6d616769 63c043c0 0c000c00 01000151 80001104 6d61696c 09666f72 6566726f
6e74c043 c00c000c 00010001 51800007 046d6169 6cc1b1c0 0c000c00 01000151
800002c1 b1c00c00 0c000100 01518000 0f026e73 096e7a64 65736967 6e73c043
c00c000c 00010001 51800002 c22dc00c 000c0001 00015180 000f026e 73097365
6c656374 697665c0 43c00c00 0c000100 01518000 0c09666f 72656672 6f6e74c0
43c00c00 0c000100 01518000 15127365 63757269 74796d61 6e616765 6d656e74
c043c00c 000c0001 00015180 0002c1cd c00c000c 00010001 51800010 09736563
7572656e 6574036e 6574c046 c00c000c 00010001 5180001d 046d6169 6c157370
65636961 6c696e76 65737469 67617469 6f6e73c0 43c00c00 0c000100 01518000
0c096e7a 64657369 676e73c0 43c00c00 0c000100 01518000 0c026e73 06657472
616465c0 43c00c00 0c000100 01518000 07046d61 696cc122 c00c000c 00010001
51800007 046d6169 6cc1cdc0 0c000c00 01000151 80000a02 6e730461 736973c1
28c00c00 0c000100 01518000 0e026e73 08626f75 71756574 73c043c0 0c000c00
01000151 800002c0 6f013002 39390332 30330769 6e2d6164 64720461 72706100
00020001 00015180 0002c037 01300239 39033230 3307696e 2d616464 72046172
70610000 02000100 01518000 11036e73 31077761 696b6174 6f026163 c046c037
00010001 00015180 0004cb63 00fe036e 73310777 61696b61 746f0261 63c04600
01000100 01518000 048cc880 0d.
+0.005848
sendto fd=4 addr=140.200.128.13:53
312e0100 00010000 00000000 026e7308 73656375 72697479 02636f02 6e7a0000
010001.
sendto=35
+0.002592
sendto fd=4 addr=140.200.128.13:53
312f0100 00010000 00000000 05746574 72610263 6f026e7a 00000100 01.
sendto=29
+0.000963
sendto fd=4 addr=140.200.128.13:53
31300100 00010000 00000000 046d6169 6c056167 61746502 636f026e 7a000001
0001.
sendto=34
+0.000973
sendto fd=4 addr=140.200.128.13:53
31310100 00010000 00000000 026e7305 61676174 6502636f 026e7a00 00010001.
sendto=32
+0.000977
sendto fd=4 addr=140.200.128.13:53
31320100 00010000 00000000 10736563 75726974 79747261 696e696e 6702636f
026e7a00 00010001.
sendto=40
+0.001007
sendto fd=4 addr=140.200.128.13:53
31330100 00010000 00000000 026e730a 67696674 6261736b 65740263 6f026e7a
00000100 01.
sendto=37
+0.001027
sendto fd=4 addr=140.200.128.13:53
31340100 00010000 00000000 026e7308 73656375 72697479 0367656e 026e7a00
00010001.
sendto=36
+0.000989
sendto fd=4 addr=140.200.128.13:53
31350100 00010000 00000000 07626f75 71756574 02636f02 6e7a0000 010001.
sendto=31
+0.000946
sendto fd=4 addr=140.200.128.13:53
31360100 00010000 00000000 0d696e76 65737469 67617469 6f6e0263 6f026e7a
00000100 01.
sendto=37
+0.000996
sendto fd=4 addr=140.200.128.13:53
31370100 00010000 00000000 026e7305 6e7a6970 69036f72 67026e7a 00000100
01.
sendto=33
+0.000972
sendto fd=4 addr=140.200.128.13:53
31380100 00010000 00000000 046d6169 6c046e65 72750263 6f026e7a 00000100
01.
sendto=33
+0.000980
sendto fd=4 addr=140.200.128.13:53
31390100 00010000 00000000 08736563 75726974 7902636f 026e7a00 00010001.
sendto=32
+0.000958
sendto fd=4 addr=140.200.128.13:53
313a0100 00010000 00000000 026e730a 73746f72 65776174 63680263 6f026e7a
00000100 01.
sendto=37
+0.001038
sendto fd=4 addr=140.200.128.13:53
313b0100 00010000 00000000 08736563 75726974 79036765 6e026e7a 00000100
01.
sendto=33
+0.001003
sendto fd=4 addr=140.200.128.13:53
313c0100 00010000 00000000 026e7305 74657472 6102636f 026e7a00 00010001.
sendto=32
+0.000972
sendto fd=4 addr=140.200.128.13:53
313d0100 00010000 00000000 046d6169 6c057465 74726102 636f026e 7a000001
0001.
sendto=34
+0.000983
sendto fd=4 addr=140.200.128.13:53
313e0100 00010000 00000000 026e730a 73656375 72696361 72640263 6f026e7a
00000100 01.
sendto=37
+0.000996
sendto fd=4 addr=140.200.128.13:53
313f0100 00010000 00000000 026e7309 756e6465 72686f75 7202636f 026e7a00
00010001.
sendto=36
+0.000989
sendto fd=4 addr=140.200.128.13:53
31400100 00010000 00000000 03626363 02636f02 6e7a0000 010001.
sendto=27
+0.000944
sendto fd=4 addr=140.200.128.13:53
31410100 00010000 00000000 08736563 75726974 79036f72 67026e7a 00000100
01.
sendto=33
+0.001001
sendto fd=4 addr=140.200.128.13:53
31420100 00010000 00000000 0d627572 676c6172 616c6172 6d730263 6f026e7a
00000100 01.
sendto=37
+0.001213
sendto fd=4 addr=140.200.128.13:53
31430100 00010000 00000000 026e7305 73616665 7302636f 026e7a00 00010001.
sendto=32
+0.001241
sendto fd=4 addr=140.200.128.13:53
31440100 00010000 00000000 026e7308 73656375 72697479 036f7267 026e7a00
00010001.
sendto=36
+0.001489
sendto fd=4 addr=140.200.128.13:53
31450100 00010000 00000000 10636f75 70657263 6f6e7375 6c74696e 6702636f
026e7a00 00010001.
sendto=40
+0.001355
sendto fd=4 addr=140.200.128.13:53
31460100 00010000 00000000 0e736563 75726974 79677561 72647302 636f026e
7a000001 0001.
sendto=38
+0.001389
sendto fd=4 addr=140.200.128.13:53
31470100 00010000 00000000 026e7306 67756172 64730263 6f026e7a 00000100
01.
sendto=33
+0.001299
sendto fd=4 addr=140.200.128.13:53
31480100 00010000 00000000 04617369 73036f72 67026e7a 00000100 01.
sendto=29
+0.001325
sendto fd=4 addr=140.200.128.13:53
31490100 00010000 00000000 046e6572 7502636f 026e7a00 00010001.
sendto=28
+0.001328
sendto fd=4 addr=140.200.128.13:53
314a0100 00010000 00000000 0a676966 74626173 6b657402 636f026e 7a000001
0001.
sendto=34
+0.001356
sendto fd=4 addr=140.200.128.13:53
314b0100 00010000 00000000 056d6167 69630263 6f026e7a 00000100 01.
sendto=29
+0.001307
sendto fd=4 addr=140.200.128.13:53
314c0100 00010000 00000000 046d6169 6c036263 6302636f 026e7a00 00010001.
sendto=32
+0.001375
sendto fd=4 addr=140.200.128.13:53
314d0100 00010000 00000000 026e730d 696e7665 73746967 6174696f 6e02636f
026e7a00 00010001.
sendto=40
+0.001386
sendto fd=4 addr=140.200.128.13:53
314e0100 00010000 00000000 056e7a69 7069036f 7267026e 7a000001 0001.
sendto=30
+0.001327
sendto fd=4 addr=140.200.128.13:53
314f0100 00010000 00000000 026e7307 626f7571 75657402 636f026e 7a000001
0001.
sendto=34
+0.001327
sendto fd=4 addr=140.200.128.13:53
31500100 00010000 00000000 046d6169 6c057361 66657302 636f026e 7a000001
0001.
sendto=34
+0.001405
sendto fd=4 addr=140.200.128.13:53
31510100 00010000 00000000 026e7303 62636302 636f026e 7a000001 0001.
sendto=30
+0.001360
sendto fd=4 addr=140.200.128.13:53
31520100 00010000 00000000 026e730d 62757267 6c617261 6c61726d 7302636f
026e7a00 00010001.
sendto=40
+0.001401
sendto fd=4 addr=140.200.128.13:53
31530100 00010000 00000000 026e730e 73656375 72697479 67756172 64730263
6f026e7a 00000100 01.
sendto=41
+0.001460
sendto fd=4 addr=140.200.128.13:53
31540100 00010000 00000000 0d636f76 65727463 616d6572 61730263 6f026e7a
00000100 01.
sendto=37
+0.001355
sendto fd=4 addr=140.200.128.13:53
31550100 00010000 00000000 026e7304 6e657275 02636f02 6e7a0000 010001.
sendto=31
+0.001384
sendto fd=4 addr=140.200.128.13:53
31560100 00010000 00000000 026e730d 636f7665 72746361 6d657261 7302636f
026e7a00 00010001.
sendto=40
+0.001389
sendto fd=4 addr=140.200.128.13:53
31570100 00010000 00000000 08626f75 71756574 7302636f 026e7a00 00010001.
sendto=32
+0.001386
sendto fd=4 addr=140.200.128.13:53
31580100 00010000 00000000 0a636f6e 63656e74 72696302 636f026e 7a000001
0001.
sendto=34
+0.001352
sendto fd=4 addr=140.200.128.13:53
31590100 00010000 00000000 026e7310 73656375 72697479 74726169 6e696e67
02636f02 6e7a0000 010001.
sendto=43
+0.001418
sendto fd=4 addr=140.200.128.13:53
315a0100 00010000 00000000 046d6169 6c10636f 75706572 636f6e73 756c7469
6e670263 6f026e7a 00000100 01.
sendto=45
+0.001422
sendto fd=4 addr=140.200.128.13:53
315b0100 00010000 00000000 0e726574 61696c73 65637572 69747902 636f026e
7a000001 0001.
sendto=38
+0.001320
sendto fd=4 addr=140.200.128.13:53
315c0100 00010000 00000000 026e730a 636f6e63 656e7472 69630263 6f026e7a
00000100 01.
sendto=37
+0.001391
sendto fd=4 addr=140.200.128.13:53
315d0100 00010000 00000000 046d6169 6c056d61 67696302 636f026e 7a000001
0001.
sendto=34
+0.001430
sendto fd=4 addr=140.200.128.13:53
315e0100 00010000 00000000 096e7a61 6e676c69 6e670263 6f026e7a 00000100
01.
sendto=33
+0.001373
sendto fd=4 addr=140.200.128.13:53
315f0100 00010000 00000000 026e7310 636f7570 6572636f 6e73756c 74696e67
02636f02 6e7a0000 010001.
sendto=43
+0.001399
sendto fd=4 addr=140.200.128.13:53
31600100 00010000 00000000 026e7309 6e7a616e 676c696e 6702636f 026e7a00
00010001.
sendto=36
+0.001403
sendto fd=4 addr=140.200.128.13:53
31610100 00010000 00000000 046d6169 6c0a7374 6f726577 61746368 02636f02
6e7a0000 010001.
sendto=39
+0.001431
sendto fd=4 addr=140.200.128.13:53
31620100 00010000 00000000 05737769 66740263 6f026e7a 00000100 01.
sendto=29
+0.001341
sendto fd=4 addr=140.200.128.13:53
31630100 00010000 00000000 046d6169 6c097365 6c656374 69766502 636f026e
7a000001 0001.
sendto=38
+0.001383
sendto fd=4 addr=140.200.128.13:53
31640100 00010000 00000000 026e7309 666f7265 66726f6e 7402636f 026e7a00
00010001.
sendto=36
+0.001398
sendto fd=4 addr=140.200.128.13:53
31650100 00010000 00000000 046d6169 6c096e7a 616e676c 696e6702 636f026e
7a000001 0001.
sendto=38
+0.001396
sendto fd=4 addr=140.200.128.13:53
31660100 00010000 00000000 06677561 72647302 636f026e 7a000001 0001.
sendto=30
+0.001338
sendto fd=4 addr=140.200.128.13:53
31670100 00010000 00000000 046d6169 6c096e7a 64657369 676e7302 636f026e
7a000001 0001.
sendto=38
+0.001383
sendto fd=4 addr=140.200.128.13:53
31680100 00010000 00000000 0a73746f 72657761 74636802 636f026e 7a000001
0001.
sendto=34
+0.001411
sendto fd=4 addr=140.200.128.13:53
31690100 00010000 00000000 026e7312 73656375 72697479 6d616e61 67656d65
6e740263 6f026e7a 00000100 01.
sendto=45
+0.001441
sendto fd=4 addr=140.200.128.13:53
316a0100 00010000 00000000 046d6169 6c0a776f 6f6c776f 72746873 02636f02
6e7a0000 010001.
sendto=39
+0.001416
sendto fd=4 addr=140.200.128.13:53
316b0100 00010000 00000000 046d6169 6c0a636f 6e63656e 74726963 02636f02
6e7a0000 010001.
sendto=39
+0.001440
sendto fd=4 addr=140.200.128.13:53
316c0100 00010000 00000000 0973656c 65637469 76650263 6f026e7a 00000100
01.
sendto=33
+0.001390
sendto fd=4 addr=140.200.128.13:53
316d0100 00010000 00000000 15737065 6369616c 696e7665 73746967 6174696f
6e730263 6f026e7a 00000100 01.
sendto=45
+0.001803
sendto fd=4 addr=140.200.128.13:53
316e0100 00010000 00000000 026e7305 73776966 7402636f 026e7a00 00010001.
sendto=32
+0.001450
sendto fd=4 addr=140.200.128.13:53
316f0100 00010000 00000000 046d6169 6c057377 69667402 636f026e 7a000001
0001.
sendto=34
+0.001516
sendto fd=4 addr=140.200.128.13:53
31700100 00010000 00000000 026e7309 73656375 72656e65 74036e65 74026e7a
00000100 01.
sendto=37
+0.001511
sendto fd=4 addr=140.200.128.13:53
31710100 00010000 00000000 14707269 76617465 696e7665 73746967 6174696f
6e02636f 026e7a00 00010001.
sendto=44
+0.001585
sendto fd=4 addr=140.200.128.13:53
31720100 00010000 00000000 026e7314 70726976 61746569 6e766573 74696761
74696f6e 02636f02 6e7a0000 010001.
sendto=47
+0.001571
sendto fd=4 addr=140.200.128.13:53
31730100 00010000 00000000 06657472 61646502 636f026e 7a000001 0001.
sendto=30
+0.001459
sendto fd=4 addr=140.200.128.13:53
31740100 00010000 00000000 026e7315 73706563 69616c69 6e766573 74696761
74696f6e 7302636f 026e7a00 00010001.
sendto=48
+0.001537
sendto fd=4 addr=140.200.128.13:53
31750100 00010000 00000000 046d6169 6c06616e 73657474 02636f02 6e7a0000
010001.
sendto=35
+0.001466
sendto fd=4 addr=140.200.128.13:53
31760100 00010000 00000000 03667470 07776172 72656e74 02636f02 6e7a0000
010001.
sendto=35
+0.001485
sendto fd=4 addr=140.200.128.13:53
31770100 00010000 00000000 026e730e 72657461 696c7365 63757269 74790263
6f026e7a 00000100 01.
sendto=41
+0.001528
sendto fd=4 addr=140.200.128.13:53
31780100 00010000 00000000 046d6169 6c127365 63757269 74796d61 6e616765
6d656e74 02636f02 6e7a0000 010001.
sendto=47
+0.001593
sendto fd=4 addr=140.200.128.13:53
31790100 00010000 00000000 026e7305 6d616769 6302636f 026e7a00 00010001.
sendto=32
+0.001465
sendto fd=4 addr=140.200.128.13:53
317a0100 00010000 00000000 046d6169 6c09666f 72656672 6f6e7402 636f026e
7a000001 0001.
sendto=38
+0.001473
sendto fd=4 addr=140.200.128.13:53
317b0100 00010000 00000000 046d6169 6c0a7365 63757269 63617264 02636f02
6e7a0000 010001.
sendto=39
+0.001525
sendto fd=4 addr=140.200.128.13:53
317c0100 00010000 00000000 0a736563 75726963 61726402 636f026e 7a000001
0001.
sendto=34
+0.001499
sendto fd=4 addr=140.200.128.13:53
317d0100 00010000 00000000 026e7309 6e7a6465 7369676e 7302636f 026e7a00
00010001.
sendto=36
+0.001489
sendto fd=4 addr=140.200.128.13:53
317e0100 00010000 00000000 05736166 65730263 6f026e7a 00000100 01.
sendto=29
+0.001441
sendto fd=4 addr=140.200.128.13:53
317f0100 00010000 00000000 026e7309 73656c65 63746976 6502636f 026e7a00
00010001.
sendto=36
+0.001542
sendto fd=4 addr=140.200.128.13:53
31800100 00010000 00000000 09666f72 6566726f 6e740263 6f026e7a 00000100
01.
sendto=33
+0.001473
sendto fd=4 addr=140.200.128.13:53
31810100 00010000 00000000 12736563 75726974 796d616e 6167656d 656e7402
636f026e 7a000001 0001.
sendto=42
+0.001525
sendto fd=4 addr=140.200.128.13:53
31820100 00010000 00000000 09756e64 6572686f 75720263 6f026e7a 00000100
01.
sendto=33
+0.001469
sendto fd=4 addr=140.200.128.13:53
31830100 00010000 00000000 09736563 7572656e 6574036e 6574026e 7a000001
0001.
sendto=34
+0.001535
sendto fd=4 addr=140.200.128.13:53
31840100 00010000 00000000 046d6169 6c157370 65636961 6c696e76 65737469
67617469 6f6e7302 636f026e 7a000001 0001.
sendto=50
+0.001597
sendto fd=4 addr=140.200.128.13:53
31850100 00010000 00000000 096e7a64 65736967 6e730263 6f026e7a 00000100
01.
sendto=33
+0.001526
sendto fd=4 addr=140.200.128.13:53
31860100 00010000 00000000 026e7306 65747261 64650263 6f026e7a 00000100
01.
sendto=33
+0.001451
sendto fd=4 addr=140.200.128.13:53
31870100 00010000 00000000 046d6169 6c056e7a 69706903 6f726702 6e7a0000
010001.
sendto=35
+0.001513
sendto fd=4 addr=140.200.128.13:53
31880100 00010000 00000000 046d6169 6c09756e 64657268 6f757202 636f026e
7a000001 0001.
sendto=38
+0.001508
sendto fd=4 addr=140.200.128.13:53
31890100 00010000 00000000 026e7304 61736973 036f7267 026e7a00 00010001.
sendto=32
+0.001491
sendto fd=4 addr=140.200.128.13:53
318a0100 00010000 00000000 026e7308 626f7571 75657473 02636f02 6e7a0000
010001.
sendto=35
+0.001507
sendto fd=4 addr=140.200.128.13:53
318b0100 00010000 00000000 05616761 74650263 6f026e7a 00000100 01.
sendto=29
+0.001445
read fd=5 buflen=2433
read=EAGAIN
+0.000151
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.866584
select=1 rfds=[4] wfds=[] efds=[]
+1.-544428
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
312f8500 00010001 00020002 05746574 72610263 6f026e7a 00000100 01c00c00
01000100 01518000 04cb6300 fec00c00 02000100 01518000 05026e73 c00cc00c
00020001 00015180 0013036e 73310777 61696b61 746f0261 63026e7a 00c03900
01000100 01518000 04cb6300 fec04a00 01000100 01518000 048cc880 0d.
+0.000996
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000668
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.409348
select=1 rfds=[4] wfds=[] efds=[]
+0.038307
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31308500 00010001 00020002 046d6169 6c056167 61746502 636f026e 7a000001
0001c00c 00010001 00015180 0004cb63 00fe0561 67617465 02636f02 6e7a0000
02000100 01518000 11036e73 31077761 696b6174 6f026163 c03bc032 00020001
00015180 0005026e 73c032c0 49000100 01000151 8000048c c8800dc0 66000100
01000151 800004cb 6300fe.
+0.000984
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000506
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.369551
select=1 rfds=[4] wfds=[] efds=[]
+0.048503
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
312e8500 00010001 00020002 026e7308 73656375 72697479 02636f02 6e7a0000
010001c0 0c000100 01000151 800004cb 6300fe08 73656375 72697479 02636f02
6e7a0000 02000100 01518000 11036e73 31077761 696b6174 6f026163 c03fc033
00020001 00015180 0002c00c c04d0001 00010001 51800004 8cc8800d c00c0001
00010001 51800004 cb6300fe.
+0.000997
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000452
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.319599
select=1 rfds=[4] wfds=[] efds=[]
+0.038521
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31338500 00010001 00020002 026e730a 67696674 6261736b 65740263 6f026e7a
00000100 01c00c00 01000100 01518000 04cb6300 fe0a6769 66746261 736b6574
02636f02 6e7a0000 02000100 01518000 11036e73 31077761 696b6174 6f026163
c043c035 00020001 00015180 0002c00c c0510001 00010001 51800004 8cc8800d
c00c0001 00010001 51800004 cb6300fe.
+0.001008
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000490
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.279580
select=1 rfds=[4] wfds=[] efds=[]
+0.048476
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31348500 00010001 00020002 026e7308 73656375 72697479 0367656e 026e7a00
00010001 c00c0001 00010001 51800004 cb6300fe 08736563 75726974 79036765
6e026e7a 00000200 01000151 80001103 6e733107 7761696b 61746f02 6163c041
c0340002 00010001 51800002 c00cc04f 00010001 00015180 00048cc8 800dc00c
00010001 00015180 0004cb63 00fe.
+0.000998
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000439
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.229667
select=1 rfds=[4] wfds=[] efds=[]
+0.038524
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31358500 00010001 00020002 07626f75 71756574 02636f02 6e7a0000 010001c0
0c000100 01000151 800004cb 6300fec0 0c000200 01000151 80000502 6e73c00c
c00c0002 00010001 51800013 036e7331 07776169 6b61746f 02616302 6e7a00c0
3b000100 01000151 800004cb 6300fec0 4c000100 01000151 8000048c c8800d.
+0.000911
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000464
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.189768
select=1 rfds=[4] wfds=[] efds=[]
+0.038708
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31318500 00010001 00020002 026e7305 61676174 6502636f 026e7a00 00010001
c00c0001 00010001 51800004 cb6300fe 05616761 74650263 6f026e7a 00000200
01000151 80001103 6e733107 7761696b 61746f02 6163c039 c0300002 00010001
51800002 c00cc047 00010001 00015180 00048cc8 800dc00c 00010001 00015180
0004cb63 00fe.
+0.000951
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000436
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.149673
select=1 rfds=[4] wfds=[] efds=[]
+0.048494
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31328500 00010001 00020002 10736563 75726974 79747261 696e696e 6702636f
026e7a00 00010001 c00c0001 00010001 51800004 cb6300fe c00c0002 00010001
51800005 026e73c0 0cc00c00 02000100 01518000 13036e73 31077761 696b6174
6f026163 026e7a00 c0440001 00010001 51800004 cb6300fe c0550001 00010001
51800004 8cc8800d.
+0.000991
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000442
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.099746
select=1 rfds=[4] wfds=[] efds=[]
+0.038540
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31368500 00010001 00020002 0d696e76 65737469 67617469 6f6e0263 6f026e7a
00000100 01c00c00 01000100 01518000 04cb6300 fec00c00 02000100 01518000
05026e73 c00cc00c 00020001 00015180 0013036e 73310777 61696b61 746f0261
63026e7a 00c04100 01000100 01518000 04cb6300 fec05200 01000100 01518000
048cc880 0d.
+0.000944
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000437
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.059825
select=1 rfds=[4] wfds=[] efds=[]
+0.038599
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31378500 00010001 00020002 026e7305 6e7a6970 69036f72 67026e7a 00000100
01c00c00 01000100 01518000 04cb6300 fe056e7a 69706903 6f726702 6e7a0000
02000100 01518000 11036e73 31077761 696b6174 6f026163 c03bc031 00020001
00015180 0002c00c c0490001 00010001 51800004 8cc8800d c00c0001 00010001
51800004 cb6300fe.
+0.000960
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000445
select max=6 rfds=[4,5] wfds=[] efds=[5] to=1.019821
select=1 rfds=[4] wfds=[] efds=[]
+0.048560
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
31398500 00010001 00020002 08736563 75726974 7902636f 026e7a00 00010001
c00c0001 00010001 51800004 cb6300fe c00c0002 00010001 51800013 036e7331
07776169 6b61746f 02616302 6e7a00c0 0c000200 01000151 80000502 6e73c00c
c03c0001 00010001 51800004 8cc8800d c05b0001 00010001 51800004 cb6300fe.
+0.000913
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.000471
select max=6 rfds=[4,5] wfds=[] efds=[5] to=0.969877
select=1 rfds=[4] wfds=[] efds=[]
+0.028575
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=OK addr=140.200.128.13:53
313a8503 00010000 00010000 026e730a 73746f72 65776174 63680263 6f026e7a
00000100 0102636f 026e7a00 00060001 00015180 002c046e 73393907 7761696b
61746f02 6163c028 03736f61 c03b7727 6ec50000 0e100000 07080027 8d000001
5180.
+0.000739
recvfrom fd=4 buflen=512 *addrlen=16
recvfrom=EAGAIN
+0.023574
close fd=4
close=OK
+0.000464
close fd=5
close=OK
+0.000179
|