summaryrefslogtreecommitdiff
path: root/regress/case-datapluscnamewait.sys
blob: ff188ee8ae49bff021117faa4b979eed444a2fbf (plain)
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
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
adnstest default
292/170.99.219.194.in-addr.arpa
 start 933809632.795174
 socket type=SOCK_DGRAM
 socket=4
 +0.000201
 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=172.18.45.6:53
     311f0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.005997
 sendto fd=4 addr=172.18.45.6:53
     31200100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.016139
 sendto fd=4 addr=172.18.45.6:53
     31210100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000500 01.
 sendto=45
 +0.006108
 sendto fd=4 addr=172.18.45.6:53
     31220100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.015626
 sendto fd=4 addr=172.18.45.6:53
     31230100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000c00 01.
 sendto=45
 +0.006041
 sendto fd=4 addr=172.18.45.6:53
     31240100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000d00 01.
 sendto=45
 +0.016937
 sendto fd=4 addr=172.18.45.6:53
     31250100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.005443
 sendto fd=4 addr=172.18.45.6:53
     31260100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001000 01.
 sendto=45
 +0.015782
 sendto fd=4 addr=172.18.45.6:53
     31270100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.006303
 sendto fd=4 addr=172.18.45.6:53
     31280100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.015591
 sendto fd=4 addr=172.18.45.6:53
     31290100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.006039
 sendto fd=4 addr=172.18.45.6:53
     312a0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000c00 01.
 sendto=45
 +0.017765
 sendto fd=4 addr=172.18.45.6:53
     312b0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.006116
 sendto fd=4 addr=172.18.45.6:53
     312c0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.015294
 sendto fd=4 addr=172.18.45.6:53
     312d0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.006158
 select max=5 rfds=[4] wfds=[] efds=[] to=1.838661
 select=1 rfds=[4] wfds=[] efds=[]
 +0.000324
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31238180 00010003 00040004 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000c00 01c00c00 0c000100 029ef300 13057072 6f787908
     73636f70 6c696665 02677200 c00c0005 00010002 9ef50021 03313730 03313638
     02393903 32313903 31393407 696e2d61 64647204 61727061 00c05800 0c000100
     029ef300 02c039c0 5c000200 0100029e f3001004 696e666f 08666f72 74686e65
     74c048c0 5c000200 0100029e f3000805 6e736865 72c098c0 5c000200 0100029e
     f3000805 6e737468 65c098c0 5c000200 0100029e f3000c09 74656972 65736961
     73c098c0 93000100 010004be 5d00048b 5b0111c0 af000100 01000542 de0004c1
     5c1e13c0 c3000100 01000542 a40004c1 5c6e01c0 d7000100 01000542 a40004c2
     dbe302.
 +0.007330
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     312a8180 00010003 00040004 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000c00 01c00c00 0c000100 029ef300 13057072 6f787908
     73636f70 6c696665 02677200 c00c0005 00010002 9ef50021 03313730 03313638
     02393903 32313903 31393407 696e2d61 64647204 61727061 00c05800 0c000100
     029ef300 02c039c0 5c000200 0100029e f3001004 696e666f 08666f72 74686e65
     74c048c0 5c000200 0100029e f3000805 6e736865 72c098c0 5c000200 0100029e
     f3000805 6e737468 65c098c0 5c000200 0100029e f3000c09 74656972 65736961
     73c098c0 93000100 010004be 5d00048b 5b0111c0 af000100 01000542 de0004c1
     5c1e13c0 c3000100 01000542 a40004c1 5c6e01c0 d7000100 01000542 a40004c2
     dbe302.
 +0.002315
 sendto fd=4 addr=172.18.45.6:53
     312e0100 00010000 00000000 0570726f 78790873 636f706c 69666502 67720000
     010001.
 sendto=35
 +0.005642
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000159
 select max=5 rfds=[4] wfds=[] efds=[] to=1.822891
 select=1 rfds=[4] wfds=[] efds=[]
 +0.007207
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     312e8180 00010001 00040004 0570726f 78790873 636f706c 69666502 67720000
     010001c0 0c000100 01000288 460004c2 db63aa08 73636f70 6c696665 02677200
     00020001 000542de 0011056e 73617468 08666f72 74686e65 74c03cc0 33000200
     01000542 de000805 6e736865 72c050c0 33000200 01000542 de000805 6e737468
     65c050c0 33000200 01000542 de000c09 74656972 65736961 73c050c0 4a000100
     01000542 a40004c1 5c9603c0 67000100 01000542 de0004c1 5c1e13c0 7b000100
     01000542 a40004c1 5c6e01c0 8f000100 01000542 a40004c2 dbe302.
 +0.001427
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000219
 select max=5 rfds=[4] wfds=[] efds=[] to=1.814038
 select=0 rfds=[] wfds=[] efds=[]
 +2.-185431
 sendto fd=4 addr=172.18.45.6:53
     311f0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.001281
 select max=5 rfds=[4] wfds=[] efds=[] to=0.004185
 select=0 rfds=[] wfds=[] efds=[]
 +0.008703
 sendto fd=4 addr=172.18.45.6:53
     31200100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.001091
 select max=5 rfds=[4] wfds=[] efds=[] to=0.010530
 select=0 rfds=[] wfds=[] efds=[]
 +0.018894
 sendto fd=4 addr=172.18.45.6:53
     31210100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000500 01.
 sendto=45
 +0.001185
 sendto fd=4 addr=172.18.45.6:53
     31220100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.001033
 select max=5 rfds=[4] wfds=[] efds=[] to=0.017193
 select=0 rfds=[] wfds=[] efds=[]
 +0.017773
 sendto fd=4 addr=172.18.45.6:53
     31240100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000d00 01.
 sendto=45
 +0.001148
 select max=5 rfds=[4] wfds=[] efds=[] to=0.015209
 select=0 rfds=[] wfds=[] efds=[]
 +0.018840
 sendto fd=4 addr=172.18.45.6:53
     31250100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.001149
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000663
 select=0 rfds=[] wfds=[] efds=[]
 +0.008852
 sendto fd=4 addr=172.18.45.6:53
     31260100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001000 01.
 sendto=45
 +0.001085
 select max=5 rfds=[4] wfds=[] efds=[] to=0.006508
 select=0 rfds=[] wfds=[] efds=[]
 +0.009065
 sendto fd=4 addr=172.18.45.6:53
     31270100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.001094
 select max=5 rfds=[4] wfds=[] efds=[] to=0.002652
 select=0 rfds=[] wfds=[] efds=[]
 +0.009275
 sendto fd=4 addr=172.18.45.6:53
     31280100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.001088
 select max=5 rfds=[4] wfds=[] efds=[] to=0.007880
 select=0 rfds=[] wfds=[] efds=[]
 +0.008377
 sendto fd=4 addr=172.18.45.6:53
     31290100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.001077
 select max=5 rfds=[4] wfds=[] efds=[] to=0.022230
 select=0 rfds=[] wfds=[] efds=[]
 +0.028895
 sendto fd=4 addr=172.18.45.6:53
     312b0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.001155
 sendto fd=4 addr=172.18.45.6:53
     312c0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.001072
 select max=5 rfds=[4] wfds=[] efds=[] to=0.012518
 select=0 rfds=[] wfds=[] efds=[]
 +0.017777
 sendto fd=4 addr=172.18.45.6:53
     312d0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.001095
 select max=5 rfds=[4] wfds=[] efds=[] to=1.838996
 select=0 rfds=[] wfds=[] efds=[]
 +2.-161506
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000502
 select=0 rfds=[] wfds=[] efds=[]
 +0.009962
 sendto fd=4 addr=172.18.45.6:53
     311f0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.001211
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000000
 select=0 rfds=[] wfds=[] efds=[]
 +0.000001
 sendto fd=4 addr=172.18.45.6:53
     31200100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.001066
 select max=5 rfds=[4] wfds=[] efds=[] to=0.018231
 select=0 rfds=[] wfds=[] efds=[]
 +0.017752
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000479
 select=0 rfds=[] wfds=[] efds=[]
 +0.009982
 sendto fd=4 addr=172.18.45.6:53
     31210100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000500 01.
 sendto=45
 +0.001151
 sendto fd=4 addr=172.18.45.6:53
     31220100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.001038
 select max=5 rfds=[4] wfds=[] efds=[] to=0.008299
 select=0 rfds=[] wfds=[] efds=[]
 +0.008021
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000278
 select=0 rfds=[] wfds=[] efds=[]
 +0.009792
 sendto fd=4 addr=172.18.45.6:53
     31240100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000d00 01.
 sendto=45
 +0.001143
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009331
 select=0 rfds=[] wfds=[] efds=[]
 +0.008852
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000479
 select=0 rfds=[] wfds=[] efds=[]
 +0.009985
 sendto fd=4 addr=172.18.45.6:53
     31250100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.001184
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000000
 select=0 rfds=[] wfds=[] efds=[]
 +0.000001
 sendto fd=4 addr=172.18.45.6:53
     31260100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001000 01.
 sendto=45
 +0.001060
 select max=5 rfds=[4] wfds=[] efds=[] to=0.008400
 select=0 rfds=[] wfds=[] efds=[]
 +0.007976
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000424
 select=0 rfds=[] wfds=[] efds=[]
 +0.009931
 sendto fd=4 addr=172.18.45.6:53
     31270100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.001097
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000000
 select=0 rfds=[] wfds=[] efds=[]
 +0.000001
 sendto fd=4 addr=172.18.45.6:53
     31280100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.000764
 select max=5 rfds=[4] wfds=[] efds=[] to=0.008465
 select=0 rfds=[] wfds=[] efds=[]
 +0.008502
 sendto fd=4 addr=172.18.45.6:53
     31290100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.000787
 select max=5 rfds=[4] wfds=[] efds=[] to=0.029148
 select=0 rfds=[] wfds=[] efds=[]
 +0.028673
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000475
 select=0 rfds=[] wfds=[] efds=[]
 +0.009961
 sendto fd=4 addr=172.18.45.6:53
     312b0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.001131
 sendto fd=4 addr=172.18.45.6:53
     312c0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.001027
 select max=5 rfds=[4] wfds=[] efds=[] to=0.008360
 select=0 rfds=[] wfds=[] efds=[]
 +0.007873
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000487
 select=0 rfds=[] wfds=[] efds=[]
 +0.009998
 sendto fd=4 addr=172.18.45.6:53
     312d0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.001092
 select max=5 rfds=[4] wfds=[] efds=[] to=1.838948
 select=0 rfds=[] wfds=[] efds=[]
 +2.-161498
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000446
 select=0 rfds=[] wfds=[] efds=[]
 +0.009968
 sendto fd=4 addr=172.18.45.6:53
     311f0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.001172
 sendto fd=4 addr=172.18.45.6:53
     31200100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.001037
 select max=5 rfds=[4] wfds=[] efds=[] to=0.018281
 select=0 rfds=[] wfds=[] efds=[]
 +0.017811
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000470
 select=0 rfds=[] wfds=[] efds=[]
 +0.009988
 sendto fd=4 addr=172.18.45.6:53
     31210100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000500 01.
 sendto=45
 +0.001156
 sendto fd=4 addr=172.18.45.6:53
     31220100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.001034
 select max=5 rfds=[4] wfds=[] efds=[] to=0.008294
 select=0 rfds=[] wfds=[] efds=[]
 +0.007805
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000489
 select=0 rfds=[] wfds=[] efds=[]
 +0.010003
 sendto fd=4 addr=172.18.45.6:53
     31240100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000d00 01.
 sendto=45
 +0.001162
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009304
 select=0 rfds=[] wfds=[] efds=[]
 +0.008831
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000473
 select=0 rfds=[] wfds=[] efds=[]
 +0.009990
 sendto fd=4 addr=172.18.45.6:53
     31250100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.001153
 sendto fd=4 addr=172.18.45.6:53
     31260100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001000 01.
 sendto=45
 +0.001036
 select max=5 rfds=[4] wfds=[] efds=[] to=0.008446
 select=0 rfds=[] wfds=[] efds=[]
 +0.007809
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000637
 select=0 rfds=[] wfds=[] efds=[]
 +0.010143
 sendto fd=4 addr=172.18.45.6:53
     31270100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.001092
 sendto fd=4 addr=172.18.45.6:53
     31280100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.000740
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000000
 select=0 rfds=[] wfds=[] efds=[]
 +0.000001
 sendto fd=4 addr=172.18.45.6:53
     31290100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.000706
 select max=5 rfds=[4] wfds=[] efds=[] to=0.037740
 select=0 rfds=[] wfds=[] efds=[]
 +0.037284
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000456
 select=0 rfds=[] wfds=[] efds=[]
 +0.009974
 sendto fd=4 addr=172.18.45.6:53
     312b0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.001135
 sendto fd=4 addr=172.18.45.6:53
     312c0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.001077
 select max=5 rfds=[4] wfds=[] efds=[] to=0.008299
 select=0 rfds=[] wfds=[] efds=[]
 +0.007902
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000397
 select=0 rfds=[] wfds=[] efds=[]
 +0.010170
 sendto fd=4 addr=172.18.45.6:53
     312d0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.000771
 select max=5 rfds=[4] wfds=[] efds=[] to=1.839018
 select=0 rfds=[] wfds=[] efds=[]
 +2.-161432
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000450
 select=0 rfds=[] wfds=[] efds=[]
 +0.009951
 sendto fd=4 addr=172.18.45.6:53
     311f0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.000533
 sendto fd=4 addr=172.18.45.6:53
     31200100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.000467
 select max=5 rfds=[4] wfds=[] efds=[] to=0.019507
 select=0 rfds=[] wfds=[] efds=[]
 +0.019027
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000480
 select=0 rfds=[] wfds=[] efds=[]
 +0.009995
 sendto fd=4 addr=172.18.45.6:53
     31210100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000500 01.
 sendto=45
 +0.000505
 sendto fd=4 addr=172.18.45.6:53
     31220100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.000453
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009525
 select=0 rfds=[] wfds=[] efds=[]
 +0.009036
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000489
 select=0 rfds=[] wfds=[] efds=[]
 +0.009993
 sendto fd=4 addr=172.18.45.6:53
     31240100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000d00 01.
 sendto=45
 +0.000504
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009975
 select=0 rfds=[] wfds=[] efds=[]
 +0.009493
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000482
 select=0 rfds=[] wfds=[] efds=[]
 +0.009994
 sendto fd=4 addr=172.18.45.6:53
     31250100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.000528
 sendto fd=4 addr=172.18.45.6:53
     31260100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001000 01.
 sendto=45
 +0.000454
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009647
 select=0 rfds=[] wfds=[] efds=[]
 +0.009014
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000633
 select=0 rfds=[] wfds=[] efds=[]
 +0.010175
 sendto fd=4 addr=172.18.45.6:53
     31270100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.000499
 sendto fd=4 addr=172.18.45.6:53
     31280100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.000450
 sendto fd=4 addr=172.18.45.6:53
     31290100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.000447
 select max=5 rfds=[4] wfds=[] efds=[] to=0.038859
 select=0 rfds=[] wfds=[] efds=[]
 +0.038404
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000455
 select=0 rfds=[] wfds=[] efds=[]
 +0.009958
 sendto fd=4 addr=172.18.45.6:53
     312b0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.000474
 sendto fd=4 addr=172.18.45.6:53
     312c0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.000453
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009854
 select=0 rfds=[] wfds=[] efds=[]
 +0.009107
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000747
 select=0 rfds=[] wfds=[] efds=[]
 +0.010102
 sendto fd=4 addr=172.18.45.6:53
     312d0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.000502
 select max=5 rfds=[4] wfds=[] efds=[] to=1.839433
 select=0 rfds=[] wfds=[] efds=[]
 +2.-161012
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000445
 select=0 rfds=[] wfds=[] efds=[]
 +0.010011
 sendto fd=4 addr=172.18.45.6:53
     311f0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.000502
 sendto fd=4 addr=172.18.45.6:53
     31200100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.000455
 select max=5 rfds=[4] wfds=[] efds=[] to=0.019499
 select=0 rfds=[] wfds=[] efds=[]
 +0.019014
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000485
 select=0 rfds=[] wfds=[] efds=[]
 +0.009983
 sendto fd=4 addr=172.18.45.6:53
     31210100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000500 01.
 sendto=45
 +0.000498
 sendto fd=4 addr=172.18.45.6:53
     31220100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.000458
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009533
 select=0 rfds=[] wfds=[] efds=[]
 +0.009049
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000484
 select=0 rfds=[] wfds=[] efds=[]
 +0.009996
 sendto fd=4 addr=172.18.45.6:53
     31240100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000d00 01.
 sendto=45
 +0.000500
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009979
 select=0 rfds=[] wfds=[] efds=[]
 +0.009494
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000485
 select=0 rfds=[] wfds=[] efds=[]
 +0.009996
 sendto fd=4 addr=172.18.45.6:53
     31250100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.000564
 sendto fd=4 addr=172.18.45.6:53
     31260100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001000 01.
 sendto=45
 +0.000452
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009644
 select=0 rfds=[] wfds=[] efds=[]
 +0.008982
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000662
 select=0 rfds=[] wfds=[] efds=[]
 +0.010145
 sendto fd=4 addr=172.18.45.6:53
     31270100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.000527
 sendto fd=4 addr=172.18.45.6:53
     31280100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.000453
 sendto fd=4 addr=172.18.45.6:53
     31290100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.000449
 select max=5 rfds=[4] wfds=[] efds=[] to=0.038846
 select=0 rfds=[] wfds=[] efds=[]
 +0.038396
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000450
 select=0 rfds=[] wfds=[] efds=[]
 +0.009997
 sendto fd=4 addr=172.18.45.6:53
     312b0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.000504
 sendto fd=4 addr=172.18.45.6:53
     312c0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.000454
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009631
 select=0 rfds=[] wfds=[] efds=[]
 +0.009036
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000595
 select=0 rfds=[] wfds=[] efds=[]
 +0.010011
 sendto fd=4 addr=172.18.45.6:53
     312d0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.000494
 select max=5 rfds=[4] wfds=[] efds=[] to=1.839591
 select=0 rfds=[] wfds=[] efds=[]
 +2.-160907
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000498
 select=0 rfds=[] wfds=[] efds=[]
 +0.009988
 sendto fd=4 addr=172.18.45.6:53
     311f0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.000516
 sendto fd=4 addr=172.18.45.6:53
     31200100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.000455
 select max=5 rfds=[4] wfds=[] efds=[] to=0.019493
 select=1 rfds=[4] wfds=[] efds=[]
 +0.005671
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     311f8180 00010001 00010000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01c00c00 05000100 029ee900 21033137 30033136
     38023939 03323139 03313934 07696e2d 61646472 04617270 6100c03d 00060001
     00000258 00380974 65697265 73696173 08666f72 74686e65 74026772 000a686f
     73746d61 73746572 c0707709 a5220000 54600000 0e100036 ee800002 a300.
 +0.001103
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000252
 select max=5 rfds=[4] wfds=[] efds=[] to=0.012467
 select=0 rfds=[] wfds=[] efds=[]
 +0.011997
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000470
 select=0 rfds=[] wfds=[] efds=[]
 +0.009991
 sendto fd=4 addr=172.18.45.6:53
     31210100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000500 01.
 sendto=45
 +0.000503
 sendto fd=4 addr=172.18.45.6:53
     31220100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.000454
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009523
 select=0 rfds=[] wfds=[] efds=[]
 +0.009039
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000484
 select=0 rfds=[] wfds=[] efds=[]
 +0.009993
 sendto fd=4 addr=172.18.45.6:53
     31240100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000d00 01.
 sendto=45
 +0.000596
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009885
 select=0 rfds=[] wfds=[] efds=[]
 +0.009400
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000485
 select=0 rfds=[] wfds=[] efds=[]
 +0.009995
 sendto fd=4 addr=172.18.45.6:53
     31250100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.000496
 sendto fd=4 addr=172.18.45.6:53
     31260100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001000 01.
 sendto=45
 +0.000452
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009685
 select=1 rfds=[4] wfds=[] efds=[]
 +0.005326
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31258180 00010001 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01c00c00 05000100 029ee900 21033137 30033136
     38023939 03323139 03313934 07696e2d 61646472 04617270 6100.
 +0.000679
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000223
 select max=5 rfds=[4] wfds=[] efds=[] to=0.003457
 select=0 rfds=[] wfds=[] efds=[]
 +0.002820
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000637
 select=0 rfds=[] wfds=[] efds=[]
 +0.010141
 sendto fd=4 addr=172.18.45.6:53
     31270100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.000502
 sendto fd=4 addr=172.18.45.6:53
     31280100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01.
 sendto=45
 +0.000452
 sendto fd=4 addr=172.18.45.6:53
     31290100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.000445
 select max=5 rfds=[4] wfds=[] efds=[] to=0.038919
 select=1 rfds=[4] wfds=[] efds=[]
 +0.004982
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31278180 00010001 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01c00c00 05000100 029ee900 21033137 30033136
     38023939 03323139 03313934 07696e2d 61646472 04617270 6100.
 +0.000678
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000193
 select max=5 rfds=[4] wfds=[] efds=[] to=0.033066
 select=1 rfds=[4] wfds=[] efds=[]
 +0.003845
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31288180 00010001 00010000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000100 01c00c00 05000100 029ee900 21033137 30033136
     38023939 03323139 03313934 07696e2d 61646472 04617270 6100c03d 00060001
     00000258 00380974 65697265 73696173 08666f72 74686e65 74026772 000a686f
     73746d61 73746572 c0707709 a5220000 54600000 0e100036 ee800002 a300.
 +0.001064
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000234
 select max=5 rfds=[4] wfds=[] efds=[] to=0.027923
 select=1 rfds=[4] wfds=[] efds=[]
 +0.002680
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31298180 00010001 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01c00c00 05000100 029ee900 21033137 30033136
     38023939 03323139 03313934 07696e2d 61646472 04617270 6100.
 +0.000678
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000187
 select max=5 rfds=[4] wfds=[] efds=[] to=0.024378
 select=0 rfds=[] wfds=[] efds=[]
 +0.023895
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000483
 select=0 rfds=[] wfds=[] efds=[]
 +0.009993
 sendto fd=4 addr=172.18.45.6:53
     312b0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01.
 sendto=45
 +0.000504
 sendto fd=4 addr=172.18.45.6:53
     312c0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.000448
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009543
 select=1 rfds=[4] wfds=[] efds=[]
 +0.008307
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     312b8180 00010001 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000f00 01c00c00 05000100 029ee900 21033137 30033136
     38023939 03323139 03313934 07696e2d 61646472 04617270 6100.
 +0.000709
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000195
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000332
 select=0 rfds=[] wfds=[] efds=[]
 +1.-990116
 sendto fd=4 addr=172.18.45.6:53
     312d0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01.
 sendto=45
 +0.000501
 select max=5 rfds=[4] wfds=[] efds=[] to=1.839522
 select=1 rfds=[4] wfds=[] efds=[]
 +0.055562
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     312d8180 00010001 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001100 01c00c00 05000100 029ee800 21033137 30033136
     38023939 03323139 03313934 07696e2d 61646472 04617270 6100.
 +0.000679
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000223
 select max=5 rfds=[4] wfds=[] efds=[] to=1.783058
 select=1 rfds=[4] wfds=[] efds=[]
 +0.111990
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31208180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000200 01.
 +0.000458
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000171
 select max=5 rfds=[4] wfds=[] efds=[] to=1.670439
 select=1 rfds=[4] wfds=[] efds=[]
 +0.084620
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31228180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000600 01.
 +0.000444
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000167
 select max=5 rfds=[4] wfds=[] efds=[] to=1.585208
 select=1 rfds=[4] wfds=[] efds=[]
 +0.105188
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31248180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000d00 01.
 +0.000511
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000168
 select max=5 rfds=[4] wfds=[] efds=[] to=1.479341
 select=1 rfds=[4] wfds=[] efds=[]
 +0.004276
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31268180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00001000 01.
 +0.000441
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000162
 select max=5 rfds=[4] wfds=[] efds=[] to=1.474462
 select=0 rfds=[] wfds=[] efds=[]
 +1.473985
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000477
 select=0 rfds=[] wfds=[] efds=[]
 +0.009985
 sendto fd=4 addr=172.18.45.6:53
     31200100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01.
 sendto=45
 +0.000545
 select max=5 rfds=[4] wfds=[] efds=[] to=0.019932
 select=0 rfds=[] wfds=[] efds=[]
 +0.019448
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000484
 select=1 rfds=[4] wfds=[] efds=[]
 +0.004980
 sendto fd=4 addr=172.18.45.6:53
     31210100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000500 01.
 sendto=45
 +0.000489
 sendto fd=4 addr=172.18.45.6:53
     31220100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.000454
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31208180 00010001 00010000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000200 01c00c00 05000100 02a30000 21033137 30033136
     38023939 03323139 03313934 07696e2d 61646472 04617270 6100c03d 00060001
     00000258 00380974 65697265 73696173 08666f72 74686e65 74026772 000a686f
     73746d61 73746572 c0707709 a5220000 54600000 0e100036 ee800002 a300.
 +0.001060
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000249
 select max=5 rfds=[4] wfds=[] efds=[] to=0.013241
 select=1 rfds=[4] wfds=[] efds=[]
 +0.007284
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31228180 00010001 00010000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01c00c00 05000100 02a30000 21033137 30033136
     38023939 03323139 03313934 07696e2d 61646472 04617270 6100c03d 00060001
     00000258 00380974 65697265 73696173 08666f72 74686e65 74026772 000a686f
     73746d61 73746572 c0707709 a5220000 54600000 0e100036 ee800002 a300.
 +0.001134
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000207
 select max=5 rfds=[4] wfds=[] efds=[] to=0.004616
 select=0 rfds=[] wfds=[] efds=[]
 +0.004131
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000485
 select=0 rfds=[] wfds=[] efds=[]
 +0.009996
 sendto fd=4 addr=172.18.45.6:53
     31240100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000d00 01.
 sendto=45
 +0.000510
 select max=5 rfds=[4] wfds=[] efds=[] to=0.009970
 select=1 rfds=[4] wfds=[] efds=[]
 +0.005957
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31248180 00010001 00010000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000d00 01c00c00 05000100 02a30000 21033137 30033136
     38023939 03323139 03313934 07696e2d 61646472 04617270 6100c03d 00060001
     00000258 00380974 65697265 73696173 08666f72 74686e65 74026772 000a686f
     73746d61 73746572 c0707709 a5220000 54600000 0e100036 ee800002 a300.
 +0.001093
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000200
 select max=5 rfds=[4] wfds=[] efds=[] to=0.002720
 select=0 rfds=[] wfds=[] efds=[]
 +0.002235
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000485
 select=0 rfds=[] wfds=[] efds=[]
 +0.009985
 sendto fd=4 addr=172.18.45.6:53
     31260100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001000 01.
 sendto=45
 +0.000495
 select max=5 rfds=[4] wfds=[] efds=[] to=0.059970
 select=1 rfds=[4] wfds=[] efds=[]
 +0.007581
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31268180 00010001 00010000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00001000 01c00c00 05000100 02a30000 21033137 30033136
     38023939 03323139 03313934 07696e2d 61646472 04617270 6100c03d 00060001
     00000258 00380974 65697265 73696173 08666f72 74686e65 74026772 000a686f
     73746d61 73746572 c0707709 a5220000 54600000 0e100036 ee800002 a300.
 +0.001095
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000204
 select max=5 rfds=[4] wfds=[] efds=[] to=0.051090
 select=0 rfds=[] wfds=[] efds=[]
 +0.050594
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000496
 select=0 rfds=[] wfds=[] efds=[]
 +0.010020
 sendto fd=4 addr=172.18.45.6:53
     312c0100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01.
 sendto=45
 +0.000510
 select max=5 rfds=[4] wfds=[] efds=[] to=1.884517
 select=1 rfds=[4] wfds=[] efds=[]
 +1.-971134
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     312c8180 00010001 00010000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000600 01c00c00 05000100 02a2ff00 21033137 30033136
     38023939 03323139 03313934 07696e2d 61646472 04617270 6100c03d 00060001
     00000257 00380974 65697265 73696173 08666f72 74686e65 74026772 000a686f
     73746d61 73746572 c0707709 a5220000 54600000 0e100036 ee800002 a300.
 +0.001129
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000209
 select max=5 rfds=[4] wfds=[] efds=[] to=1.854313
 select=1 rfds=[4] wfds=[] efds=[]
 +0.294993
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     312d8180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00001100 01.
 +0.000451
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000174
 select max=5 rfds=[4] wfds=[] efds=[] to=1.558695
 select=1 rfds=[4] wfds=[] efds=[]
 +0.012449
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     312c8180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000600 01.
 +0.000443
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000195
 select max=5 rfds=[4] wfds=[] efds=[] to=1.545608
 select=1 rfds=[4] wfds=[] efds=[]
 +0.033254
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     312b8180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000f00 01.
 +0.000442
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000165
 select max=5 rfds=[4] wfds=[] efds=[] to=1.511747
 select=1 rfds=[4] wfds=[] efds=[]
 +0.033698
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31298180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000200 01.
 +0.000445
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000165
 select max=5 rfds=[4] wfds=[] efds=[] to=1.477439
 select=1 rfds=[4] wfds=[] efds=[]
 +0.087089
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31288180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000100 01.
 +0.000475
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000165
 select max=5 rfds=[4] wfds=[] efds=[] to=1.389710
 select=1 rfds=[4] wfds=[] efds=[]
 +0.013746
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31278180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00001100 01.
 +0.000440
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000165
 select max=5 rfds=[4] wfds=[] efds=[] to=1.375359
 select=1 rfds=[4] wfds=[] efds=[]
 +0.019341
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31268180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00001000 01.
 +0.000440
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000165
 select max=5 rfds=[4] wfds=[] efds=[] to=1.355413
 select=1 rfds=[4] wfds=[] efds=[]
 +0.027349
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31258180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000f00 01.
 +0.000442
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000167
 select max=5 rfds=[4] wfds=[] efds=[] to=1.327455
 select=1 rfds=[4] wfds=[] efds=[]
 +1.-481849
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31248180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000d00 01.
 +0.000476
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000178
 select max=5 rfds=[4] wfds=[] efds=[] to=0.808650
 select=1 rfds=[4] wfds=[] efds=[]
 +0.004046
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31228180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000600 01.
 +0.000443
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000223
 select max=5 rfds=[4] wfds=[] efds=[] to=0.803938
 select=1 rfds=[4] wfds=[] efds=[]
 +0.003854
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31208180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000200 01.
 +0.000442
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000169
 select max=5 rfds=[4] wfds=[] efds=[] to=0.799473
 select=1 rfds=[4] wfds=[] efds=[]
 +0.004099
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     311f8180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000100 01.
 +0.000431
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000159
 select max=5 rfds=[4] wfds=[] efds=[] to=0.794784
 select=0 rfds=[] wfds=[] efds=[]
 +0.799306
 sendto fd=4 addr=172.18.45.6:53
     31210100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000500 01.
 sendto=45
 +0.000587
 select max=5 rfds=[4] wfds=[] efds=[] to=1.999413
 select=1 rfds=[4] wfds=[] efds=[]
 +1.089275
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     312d8180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00001100 01.
 +0.000477
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000179
 select max=5 rfds=[4] wfds=[] efds=[] to=0.909482
 select=1 rfds=[4] wfds=[] efds=[]
 +1.-954601
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     312c8180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000600 01.
 +0.000444
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000166
 select max=5 rfds=[4] wfds=[] efds=[] to=0.863473
 select=1 rfds=[4] wfds=[] efds=[]
 +0.176995
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     312b8180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000f00 01.
 +0.000520
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000236
 select max=5 rfds=[4] wfds=[] efds=[] to=0.685722
 select=1 rfds=[4] wfds=[] efds=[]
 +0.009094
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31298180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000200 01.
 +0.000441
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000165
 select max=5 rfds=[4] wfds=[] efds=[] to=0.676022
 select=1 rfds=[4] wfds=[] efds=[]
 +0.004004
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31288180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000100 01.
 +0.000437
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000160
 select max=5 rfds=[4] wfds=[] efds=[] to=0.671421
 select=1 rfds=[4] wfds=[] efds=[]
 +0.003792
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31278180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00001100 01.
 +0.000441
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000189
 select max=5 rfds=[4] wfds=[] efds=[] to=0.666999
 select=1 rfds=[4] wfds=[] efds=[]
 +0.108860
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31268180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00001000 01.
 +0.000450
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000164
 select max=5 rfds=[4] wfds=[] efds=[] to=0.557525
 select=1 rfds=[4] wfds=[] efds=[]
 +0.378539
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31258180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000f00 01.
 +0.000446
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000165
 select max=5 rfds=[4] wfds=[] efds=[] to=0.178375
 select=1 rfds=[4] wfds=[] efds=[]
 +0.021040
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31248180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000d00 01.
 +0.000485
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000162
 select max=5 rfds=[4] wfds=[] efds=[] to=0.156688
 select=1 rfds=[4] wfds=[] efds=[]
 +0.004025
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31228180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000600 01.
 +0.000434
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000160
 select max=5 rfds=[4] wfds=[] efds=[] to=0.152069
 select=1 rfds=[4] wfds=[] efds=[]
 +0.003840
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31208180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000200 01.
 +0.000436
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000160
 select max=5 rfds=[4] wfds=[] efds=[] to=0.147633
 select=1 rfds=[4] wfds=[] efds=[]
 +0.135825
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     311f8180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000100 01.
 +0.000442
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000164
 select max=5 rfds=[4] wfds=[] efds=[] to=0.011202
 select=0 rfds=[] wfds=[] efds=[]
 +0.010716
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000486
 select=0 rfds=[] wfds=[] efds=[]
 +0.009980
 sendto fd=4 addr=172.18.45.6:53
     31210100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000500 01.
 sendto=45
 +0.000496
 select max=5 rfds=[4] wfds=[] efds=[] to=1.999504
 select=1 rfds=[4] wfds=[] efds=[]
 +2.-383424
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     312b8180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000f00 01.
 +0.000484
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000222
 select max=5 rfds=[4] wfds=[] efds=[] to=0.382222
 select=1 rfds=[4] wfds=[] efds=[]
 +0.004359
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31298180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000200 01.
 +0.000454
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000163
 select max=5 rfds=[4] wfds=[] efds=[] to=0.377246
 select=1 rfds=[4] wfds=[] efds=[]
 +0.003697
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31288180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000100 01.
 +0.000440
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000161
 select max=5 rfds=[4] wfds=[] efds=[] to=0.372948
 select=1 rfds=[4] wfds=[] efds=[]
 +0.003846
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31278180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00001100 01.
 +0.000439
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000191
 select max=5 rfds=[4] wfds=[] efds=[] to=0.368472
 select=1 rfds=[4] wfds=[] efds=[]
 +0.101004
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31268180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00001000 01.
 +0.000442
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000163
 select max=5 rfds=[4] wfds=[] efds=[] to=0.266863
 select=1 rfds=[4] wfds=[] efds=[]
 +0.004860
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31258180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000f00 01.
 +0.000458
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000162
 select max=5 rfds=[4] wfds=[] efds=[] to=0.261383
 select=1 rfds=[4] wfds=[] efds=[]
 +0.003486
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31248180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000d00 01.
 +0.000436
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000207
 select max=5 rfds=[4] wfds=[] efds=[] to=0.257254
 select=1 rfds=[4] wfds=[] efds=[]
 +0.005999
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31228180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000600 01.
 +0.000444
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000163
 select max=5 rfds=[4] wfds=[] efds=[] to=0.250648
 select=1 rfds=[4] wfds=[] efds=[]
 +0.003548
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31208180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000200 01.
 +0.000437
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000159
 select max=5 rfds=[4] wfds=[] efds=[] to=0.246504
 select=1 rfds=[4] wfds=[] efds=[]
 +0.003713
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     311f8180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000100 01.
 +0.000464
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000161
 select max=5 rfds=[4] wfds=[] efds=[] to=0.242166
 select=0 rfds=[] wfds=[] efds=[]
 +0.241706
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000460
 select=0 rfds=[] wfds=[] efds=[]
 +0.009972
 sendto fd=4 addr=172.18.45.6:53
     31210100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000500 01.
 sendto=45
 +0.000493
 select max=5 rfds=[4] wfds=[] efds=[] to=1.999507
 select=0 rfds=[] wfds=[] efds=[]
 +2.-00956
 select max=5 rfds=[4] wfds=[] efds=[] to=0.000463
 select=0 rfds=[] wfds=[] efds=[]
 +0.009960
 sendto fd=4 addr=172.18.45.6:53
     31210100 00010000 00000000 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000500 01.
 sendto=45
 +0.000477
 select max=5 rfds=[4] wfds=[] efds=[] to=1.999523
 select=1 rfds=[4] wfds=[] efds=[]
 +1.-273409
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     312c8180 00010000 00000000 03313730 03313638 02393903 32313903 31393407
     696e2d61 64647204 61727061 00000600 01.
 +0.000463
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000177
 select max=5 rfds=[4] wfds=[] efds=[] to=1.272292
 select=1 rfds=[4] wfds=[] efds=[]
 +0.110798
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=OK addr=172.18.45.6:53
     31218180 00010001 00050005 03313730 02393903 32313903 31393407 696e2d61
     64647204 61727061 00000500 01c00c00 05000100 01ade800 21033137 30033136
     38023939 03323139 03313934 07696e2d 61646472 04617270 6100c044 00020001
     0000bc71 00170974 65697265 73696173 08666f72 74686e65 74026772 00c04400
     02000100 00bc7100 0d026e73 04726970 65036e65 7400c044 00020001 0000bc71
     0008056e 73617468 c070c044 00020001 0000bc71 0008056e 73746865 c070c044
     00020001 0000bc71 0008056e 73686572 c070c066 00010001 00054576 0004c2db
     e302c089 00010001 00029904 0004c100 00c1c0a2 00010001 0004c1d7 0004c15c
     9603c0b6 00010001 000484f0 0004c15c 6e01c0ca 00010001 00054600 0004c15c
     1e13.
 +0.001965
 recvfrom fd=4 buflen=512 *addrlen=16
 recvfrom=EAGAIN
 +0.000301
 close fd=4
 close=OK
 +0.000256