-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnweb.log
12326 lines (10284 loc) · 319 KB
/
nweb.log
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
INFO: nweb starting:2003:1156
ERROR: system call:bind Errno=98 exiting pid=1156
INFO: nweb starting:2003:1166
ERROR: system call:bind Errno=98 exiting pid=1166
INFO: nweb starting:3003:1179
INFO: nweb starting:5005:1203
INFO: nweb starting:5009:5146
INFO: nweb starting:5009:5273
INFO: nweb starting:5009:5338
INFO: nweb starting:5009:5778
INFO: nweb starting:5003:5804
INFO: nweb starting:3005:5818
INFO: nweb starting:5009:2799
ERROR: system call:bind Errno=98 exiting pid=2799
INFO: nweb starting:5009:2837
ERROR: system call:bind Errno=98 exiting pid=2837
INFO: nweb starting:5009:2875
ERROR: system call:bind Errno=98 exiting pid=2875
INFO: nweb starting:5009:2930
ERROR: system call:bind Errno=98 exiting pid=2930
INFO: nweb starting:5009:3010
ERROR: system call:bind Errno=98 exiting pid=3010
INFO: nweb starting:5009:3139
ERROR: system call:bind Errno=98 exiting pid=3139
INFO: nweb starting:5009:3207
ERROR: system call:bind Errno=98 exiting pid=3207
INFO: nweb starting:5009:3273
ERROR: system call:bind Errno=98 exiting pid=3273
INFO: nweb starting:5009:3381
ERROR: system call:bind Errno=98 exiting pid=3381
INFO: nweb starting:7000:3462
INFO: nweb starting:7001:3513
INFO: nweb starting:7002:3561
INFO: nweb starting:7003:3613
INFO: nweb starting:7005:3702
INFO: nweb starting:7006:3796
INFO: nweb starting:7007:3849
INFO: nweb starting:7008:3903
INFO: nweb starting:7009:3965
INFO: nweb starting:7010:4024
INFO: nweb starting:7011:4085
INFO: nweb starting:7012:4135
INFO: nweb starting:7013:4208
INFO: nweb starting:6119:4219
INFO: nweb starting:7014:4280
INFO: nweb starting:2115:4332
INFO: nweb starting:7015:4406
INFO: nweb starting:7016:4457
INFO: nweb starting:2118:4485
INFO: nweb starting:2118:4494
INFO: nweb starting:2118:4503
INFO: nweb starting:2119:4512
INFO: nweb starting:2120:4523
INFO: nweb starting:7017:4615
INFO: nweb starting:7017:4663
INFO: nweb starting:7017:4706
INFO: nweb starting:2201:4723
INFO: nweb starting:7018:4772
INFO: nweb starting:7020:4838
INFO: nweb starting:7021:4889
INFO: nweb starting:7022:4997
INFO: nweb starting:7023:5095
INFO: nweb starting:7024:5216
INFO: nweb starting:7025:5300
INFO: nweb starting:7026:5403
INFO: nweb starting:7027:5496
INFO: nweb starting:7028:5913
INFO: nweb starting:7029:5969
ERROR: system call:accept Errno=9 exiting pid=5969
FORBIDDEN: failed to read browser request:
INFO: nweb starting:7030:6029
FORBIDDEN: failed to read browser request:
INFO: nweb starting:7030:6070
FORBIDDEN: failed to read browser request:
INFO: nweb starting:7031:6095
FORBIDDEN: failed to read browser request:
INFO: nweb starting:7033:6231
ERROR: system call:accept Errno=9 exiting pid=6231
INFO: nweb starting:7034:6312
FORBIDDEN: failed to read browser request:
INFO: nweb starting:7035:6381
FORBIDDEN: failed to read browser request:
INFO: nweb starting:7036:6459
INFO: nweb starting:7037:6532
FORBIDDEN: failed to read browser request:
INFO: nweb starting:7038:6640
INFO: nweb starting:7039:6705
FORBIDDEN: failed to read browser request:
INFO: nweb starting:7040:6801
INFO: nweb starting:7041:6892
INFO: nweb starting:7042:6977
INFO: nweb starting:7042:7278
INFO: nweb starting:7042:7481
INFO: nweb starting:7042:7625
INFO: nweb starting:7042:7707
ERROR: system call:accept Errno=9 exiting pid=7707
INFO: nweb starting:7042:7773
ERROR: system call:accept Errno=9 exiting pid=7773
INFO: nweb starting:7042:7827
INFO: nweb starting:7042:7895
INFO: nweb starting:7042:7949
INFO: nweb starting:7042:8001
INFO: nweb starting:7042:8067
INFO: nweb starting:7042:8153
INFO: nweb starting:7042:8219
ERROR: system call:accept Errno=9 exiting pid=8219
INFO: nweb starting:7042:8276
ERROR: system call:accept Errno=9 exiting pid=8276
INFO: nweb starting:7042:8333
ERROR: system call:accept Errno=9 exiting pid=8333
INFO: nweb starting:7042:8398
INFO: nweb starting:7042:8455
INFO: nweb starting:7042:8609
INFO: nweb starting:7042:8675
INFO: nweb starting:7042:8717
INFO: nweb starting:7042:8810
ERROR: system call:accept Errno=9 exiting pid=8810
INFO: nweb starting:7024:8844
ERROR: system call:accept Errno=9 exiting pid=8844
INFO: nweb starting:7024:8877
ERROR: system call:accept Errno=9 exiting pid=8877
INFO: nweb starting:7024:8900
ERROR: system call:accept Errno=9 exiting pid=8900
INFO: nweb starting:7024:8976
INFO: nweb starting:7024:8984
INFO: nweb starting:7025:8997
INFO: nweb starting:7025:9006
INFO: nweb starting:7042:9050
INFO: nweb starting:7043:9097
INFO: nweb starting:7043:9139
INFO: nweb starting:7043:9392
INFO: nweb starting:7043:9432
INFO: nweb starting:7043:9495
INFO: nweb starting:7043:9553
INFO: nweb starting:7043:9635
ERROR: system call:accept Errno=9 exiting pid=9635
INFO: nweb starting:7055:9695
ERROR: system call:accept Errno=9 exiting pid=9695
INFO: nweb starting:7044:413
ERROR: system call:accept Errno=9 exiting pid=413
INFO: nweb starting:7044:477
ERROR: system call:accept Errno=9 exiting pid=477
INFO: nweb starting:7044:530
INFO: nweb starting:7044:583
INFO: nweb starting:7044:647
INFO: request:GET /index.html HTTP/1.0****:0
INFO: SEND:index.html:0
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:0
INFO: nweb starting:7044:751
INFO: request:GET /index.html HTTP/1.0****:0
INFO: SEND:index.html:0
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:0
INFO: request:GET /index.html HTTP/1.0****:0
INFO: SEND:index.html:0
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:0
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: nweb starting:7044:849
ERROR: system call:bind Errno=98 exiting pid=849
INFO: nweb starting:7044:887
INFO: request:GET /index.html HTTP/1.0****:0
INFO: SEND:index.html:0
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:0
INFO: nweb starting:7044:1299
INFO: nweb starting:7044:1404
INFO: nweb starting:7044:1451
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: request:GET /index.html HTTP/1.0****:2
INFO: SEND:index.html:2
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:2
INFO: nweb starting:7044:1546
INFO: nweb starting:7044:1807
INFO: nweb starting:7044:1883
INFO: nweb starting:7044:1896
ERROR: system call:bind Errno=98 exiting pid=1896
INFO: nweb starting:7044:1935
INFO: request:GET /index.html HTTP/1.1**Host: localhost:7044**Connection: keep-alive**Cache-Control: max-age=0**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:1
INFO: nweb starting:7044:1991
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: nweb starting:7044:2046
ERROR: system call:bind Errno=98 exiting pid=2046
INFO: nweb starting:7044:2084
ERROR: system call:bind Errno=98 exiting pid=2084
INFO: nweb starting:7045:2138
INFO: request:GET /index.html HTTP/1.1**Host: localhost:7045**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
FORBIDDEN: failed to read browser request:
INFO: nweb starting:8001:256
INFO: request:GET /index.html HTTP/1.1**Host: localhost:8001**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: request:GET /index.html HTTP/1.1**Host: localhost:8001**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:2
INFO: SEND:index.html:2
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:2
FORBIDDEN: failed to read browser request:
INFO: nweb starting:7045:355
INFO: request:GET /index.html HTTP/1.1**Host: localhost:7045**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: request:GET /favicon.ico HTTP/1.1**Host: localhost:7045**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**DNT: 1**sec-ch-ua-mobile: ?0**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8**Sec-Fetch-Site: same-origin**Sec-Fetch-Mode: no-cors**Sec-Fetch-Dest: image**Referer: http://localhost:7045/index.html**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:2
NOT FOUND: failed to open file:favicon.ico
INFO: nweb starting:7045:458
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: request:GET /index.html HTTP/1.0****:2
INFO: SEND:index.html:2
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:2
INFO: request:GET /index.html HTTP/1.0****:3
INFO: SEND:index.html:3
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:3
INFO: request:GET /index.html HTTP/1.0****:4
INFO: SEND:index.html:4
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:4
INFO: request:GET /index.html HTTP/1.0****:5
INFO: SEND:index.html:5
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:5
INFO: request:GET /index.html HTTP/1.0****:6
INFO: SEND:index.html:6
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:6
INFO: request:GET /index.html HTTP/1.0****:7
INFO: SEND:index.html:7
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:7
INFO: request:GET /index.html HTTP/1.1**Host: localhost:7045**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:8
INFO: SEND:index.html:8
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:8
INFO: request:GET /index.html HTTP/1.1**Host: localhost:7045**Connection: keep-alive**Cache-Control: max-age=0**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:9
INFO: SEND:index.html:9
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:9
INFO: request:GET /index.html HTTP/1.1**Host: localhost:7045**Connection: keep-alive**Cache-Control: max-age=0**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:10
INFO: SEND:index.html:10
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:10
INFO: request:GET /index.html HTTP/1.1**Host: localhost:7045**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:11
INFO: SEND:index.html:11
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:11
INFO: request:GET /index.html HTTP/1.1**Host: localhost:7045**Connection: keep-alive**Cache-Control: max-age=0**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:12
INFO: SEND:index.html:12
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:12
INFO: request:GET /index.html HTTP/1.1**Host: localhost:7045**Connection: keep-alive**Cache-Control: max-age=0**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:13
INFO: SEND:index.html:13
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:13
INFO: request:GET /index.html HTTP/1.1**Host: localhost:7045**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9****:14
INFO: SEND:index.html:14
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:14
INFO: request:GET /index.html HTTP/1.1**Host: localhost:7045**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9****:15
INFO: SEND:index.html:15
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:15
INFO: request:GET /index.html HTTP/1.1**Host: localhost:7045**Connection: keep-alive**Cache-Control: max-age=0**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:16
INFO: SEND:index.html:16
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:16
FORBIDDEN: failed to read browser request:
INFO: nweb starting:7045:647
INFO: nweb starting:7045:688
INFO: nweb starting:7045:748
INFO: nweb starting:7046:806
INFO: nweb starting:7046:858
INFO: nweb starting:7046:905
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: nweb starting:7046:976
ERROR: system call:bind Errno=98 exiting pid=976
INFO: nweb starting:7046:1043
ERROR: system call:bind Errno=98 exiting pid=1043
INFO: nweb starting:7046:1108
ERROR: system call:bind Errno=98 exiting pid=1108
INFO: nweb starting:7047:1161
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: nweb starting:7048:1252
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: request:GET /index.html HTTP/1.0****:2
INFO: SEND:index.html:2
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:2
INFO: request:GET /inde.html HTTP/1.0****:3
NOT FOUND: failed to open file:inde.html
INFO: nweb starting:7048:1413
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: request:GET /inde.html HTTP/1.0****:2
NOT FOUND: failed to open file:inde.html
INFO: nweb starting:7048:1473
INFO: request:GET /index.html HTTP/1.1**Host: localhost:7048**Connection: keep-alive**Cache-Control: max-age=0**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**Upgrade-Insecure-Requests: 1**DNT: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: cross-site**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: request:GET /favicon.ico HTTP/1.1**Host: localhost:7048**Connection: keep-alive**Pragma: no-cache**Cache-Control: no-cache**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**DNT: 1**sec-ch-ua-mobile: ?0**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8**Sec-Fetch-Site: same-origin**Sec-Fetch-Mode: no-cors**Sec-Fetch-Dest: image**Referer: http://localhost:7048/index.html**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:2
NOT FOUND: failed to open file:favicon.ico
INFO: nweb starting:7048:1535
INFO: request:GET /indxx.html HTTP/1.1**Host: localhost:7048**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:1
NOT FOUND: failed to open file:indxx.html
INFO: nweb starting:7048:1599
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: request:GET /index.html HTTP/1.0****:2
INFO: SEND:index.html:2
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:2
INFO: request:GET /inde.html HTTP/1.0****:3
NOT FOUND: failed to open file:inde.html
INFO: nweb starting:7048:1749
INFO: nweb starting:7048:1794
INFO: nweb starting:7048:1869
INFO: request:GET /inde.html HTTP/1.0****:1
NOT FOUND: failed to open file:inde.html
INFO: nweb starting:7048:1934
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: request:GET /inde.html HTTP/1.0****:2
NOT FOUND: failed to open file:inde.html
INFO: nweb starting:7048:2020
INFO: nweb starting:7048:2079
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: nweb starting:7048:2161
INFO: nweb starting:7048:2199
INFO: nweb starting:7048:2244
INFO: nweb starting:7048:2348
INFO: nweb starting:7048:2449
INFO: nweb starting:7048:2489
INFO: nweb starting:7048:2570
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: request:GET /index.html HTTP/1.0****:2
INFO: SEND:index.html:2
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:2
INFO: request:GET /index.html HTTP/1.0****:3
INFO: SEND:index.html:3
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:3
INFO: request:GET /inde.html HTTP/1.0****:4
NOT FOUND: failed to open file:inde.html
INFO: request:GET /index.html HTTP/1.0****:5
INFO: SEND:index.html:5
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:5
INFO: nweb starting:7048:256
INFO: nweb starting:7048:303
INFO: request:GET /index.html HTTP/1.0****:1
INFO: nweb starting:7048:998
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: request:GET /index.html HTTP/1.0****:2
INFO: SEND:index.html:2
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:2
INFO: request:GET /index.html HTTP/1.0****:3
INFO: SEND:index.html:3
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:3
INFO: request:GET /indx.html HTTP/1.0****:4
NOT FOUND: failed to open file:indx.html
INFO: request:GET /index.html HTTP/1.0****:5
INFO: SEND:index.html:5
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:5
INFO: nweb starting:7048:1089
ERROR: system call:bind Errno=98 exiting pid=1089
INFO: nweb starting:7049:1139
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: request:GET /index.html HTTP/1.0****:2
INFO: nweb starting:7049:1397
ERROR: system call:bind Errno=98 exiting pid=1397
INFO: nweb starting:7050:1449
INFO: request:GET /index.html HTTP/1.0****:1
INFO: nweb starting:7050:1564
INFO: request:GET /nigel.jpg HTTP/1.0****:1
INFO: SEND:nigel.jpg:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 10184
Connection: close
Content-Type: image/jpg
:1
INFO: nweb starting:7050:1651
ERROR: system call:bind Errno=98 exiting pid=1651
INFO: nweb starting:7051:1695
INFO: request:GET /index.html HTTP/1.0****:1
INFO: SEND:index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: nweb starting:7051:501
INFO: request:GET ./nigel.jpg HTTP/1.0****:1
NOT FOUND: failed to open file:/nigel.jpg
INFO: request:GET ./index.html HTTP/1.0****:2
NOT FOUND: failed to open file:/index.html
INFO: request:GET ./index.html HTTP/1.0****:3
NOT FOUND: failed to open file:/index.html
INFO: request:GET ./index.html HTTP/1.0****:4
NOT FOUND: failed to open file:/index.html
INFO: request:GET ./index.html HTTP/1.0****:5
INFO: nweb starting:7051:686
ERROR: system call:bind Errno=98 exiting pid=686
INFO: nweb starting:7052:775
INFO: request:GET ./index.html HTTP/1.0****:1
INFO: SEND:/index.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 248
Connection: close
Content-Type: text/html
:1
INFO: request:GET ./ind.html HTTP/1.0****:2
NOT FOUND: failed to open file:/ind.html
INFO: request:GET ./nigel.jpg HTTP/1.0****:3
INFO: SEND:/nigel.jpg:3
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 10184
Connection: close
Content-Type: image/jpg
:3
INFO: nweb starting:7052:1766
INFO: nweb starting:7053:1816
INFO: nweb starting:7053:1979
INFO: nweb starting:7053:2030
INFO: nweb starting:7053:2075
INFO: nweb starting:7053:2137
INFO: request:GET /1.html HTTP/1.0****:1
NOT FOUND: failed to open file:.html
INFO: nweb starting:7053:2251
INFO: request:GET /1.html HTTP/1.0****:1
INFO: request:GET /2.html HTTP/1.0****:2
INFO: request:GET /3.html HTTP/1.0****:3
INFO: request:GET /4.html HTTP/1.0****:4
INFO: request:GET /5.html HTTP/1.0****:5
NOT FOUND: failed to open file:.html
NOT FOUND: failed to open file:.html
NOT FOUND: failed to open file:.html
INFO: nweb starting:7053:2342
INFO: nweb starting:7053:2401
INFO: request:GET /1.html HTTP/1.0****:1
INFO: request:GET /2.html HTTP/1.0****:2
INFO: request:GET /3.html HTTP/1.0****:3
INFO: request:GET /4.html HTTP/1.0****:4
INFO: request:GET /5.html HTTP/1.0****:5
INFO: SEND:5.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 170
Connection: close
Content-Type: text/html
:1
NOT FOUND: failed to open file:>
<TITLE>nweb
</TITLE>
<BODY BGCOLOR="lightblue">
<H1>nweb Test page</H1>
<!-- <IMG SRC="nigel.jpg"> -->
<p>
5
</table>
</BODY>
</HTML>
NOT FOUND: failed to open file:>
<TITLE>nweb
</TITLE>
<BODY BGCOLOR="lightblue">
<H1>nweb Test page</H1>
<!-- <IMG SRC="nigel.jpg"> -->
<p>
5
</table>
</BODY>
</HTML>
NOT FOUND: failed to open file:>
<TITLE>nweb
</TITLE>
<BODY BGCOLOR="lightblue">
<H1>nweb Test page</H1>
<!-- <IMG SRC="nigel.jpg"> -->
<p>
5
</table>
</BODY>
</HTML>
INFO: nweb starting:7053:2461
ERROR: system call:bind Errno=98 exiting pid=2461
INFO: nweb starting:7054:2511
INFO: request:GET /1.html HTTP/1.0****:1
INFO: request:GET /2.html HTTP/1.0****:2
INFO: request:GET /3.html HTTP/1.0****:3
INFO: request:GET /4.html HTTP/1.0****:4
INFO: request:GET /5.html HTTP/1.0****:5
INFO: nweb starting:7055:2583
INFO: request:GET /1.html HTTP/1.0****:1
INFO: request:GET /2.html HTTP/1.0****:2
INFO: request:GET /3.html HTTP/1.0****:3
INFO: nweb starting:7055:2664
INFO: request:GET /1.html HTTP/1.0****:1
INFO: request:GET /2.html HTTP/1.0****:2
INFO: nweb starting:7055:2759
INFO: request:GET /1.html HTTP/1.0****:1
INFO: request:GET /2.html HTTP/1.0****:2
INFO: nweb starting:7055:2819
ERROR: system call:bind Errno=98 exiting pid=2819
INFO: nweb starting:7056:2869
INFO: request:GET /1.html HTTP/1.0****:1
INFO: request:GET /2.html HTTP/1.0****:2
INFO: request:GET /3.html HTTP/1.0****:3
INFO: request:GET /4.html HTTP/1.0****:4
INFO: request:GET /5.html HTTP/1.0****:5
INFO: SEND:1.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 141
Connection: close
Content-Type: text/html
:1
NOT FOUND: failed to open file:OLOR="lightblue">
<H1>nweb Test page</H1>
<!-- <IMG SRC="nigel.jpg"> -->
<p>
1
</table>
</BODY>
</HTML>
NOT FOUND: failed to open file:page</H1>
<!-- <IMG SRC="nigel.jpg"> -->
<p>
1
</table>
</BODY>
</HTML>
NOT FOUND: failed to open file:pg"> -->
<p>
1
</table>
</BODY>
</HTML>
INFO: request:GET /1.html HTTP/1.0****:6
INFO: nweb starting:7056:2966
ERROR: system call:bind Errno=98 exiting pid=2966
INFO: nweb starting:7056:3042
INFO: request:GET /1.html HTTP/1.0****:1
INFO: request:GET /2.html HTTP/1.0****:2
INFO: request:GET /3.html HTTP/1.0****:3
INFO: request:GET /4.html HTTP/1.0****:4
INFO: request:GET /5.html HTTP/1.0****:5
INFO: SEND:1.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 141
Connection: close
Content-Type: text/html
:1
NOT FOUND: failed to open file:OLOR="lightblue">
<H1>nweb Test page</H1>
<!-- <IMG SRC="nigel.jpg"> -->
<p>
1
</table>
</BODY>
</HTML>
NOT FOUND: failed to open file:page</H1>
<!-- <IMG SRC="nigel.jpg"> -->
<p>
1
</table>
</BODY>
</HTML>
INFO: nweb starting:7056:3148
ERROR: system call:bind Errno=98 exiting pid=3148
INFO: nweb starting:7056:3202
ERROR: system call:bind Errno=98 exiting pid=3202
INFO: nweb starting:7057:3249
INFO: request:GET /1.html HTTP/1.0****:1
INFO: request:GET /2.html HTTP/1.0****:2
INFO: request:GET /3.html HTTP/1.0****:3
INFO: request:GET /4.html HTTP/1.0****:4
INFO: request:GET /5.html HTTP/1.0****:5
INFO: SEND:1.html:1
INFO: nweb starting:7057:3362
ERROR: system call:bind Errno=98 exiting pid=3362
INFO: nweb starting:7058:3410
INFO: request:GET /1.html HTTP/1.0****:1
INFO: request:GET /2.html HTTP/1.0****:2
INFO: request:GET /3.html HTTP/1.0****:3
INFO: request:GET /4.html HTTP/1.0****:4
INFO: request:GET /5.html HTTP/1.0****:5
INFO: SEND:1.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 141
Connection: close
Content-Type: text/html
:1
INFO: SEND:2.html:2
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 170
Connection: close
Content-Type: text/html
:2
INFO: SEND:3.html:3
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 170
Connection: close
Content-Type: text/html
:3
INFO: SEND:4.html:4
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 170
Connection: close
Content-Type: text/html
:4
INFO: SEND:5.html:5
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 170
Connection: close
Content-Type: text/html
:5
INFO: nweb starting:7058:3565
INFO: request:GET /1.html HTTP/1.0****:1
INFO: request:GET /1.html HTTP/1.0****:2
INFO: request:GET /1.html HTTP/1.0****:3
INFO: request:GET /1.html HTTP/1.0****:4
INFO: request:GET /1.html HTTP/1.0****:5
INFO: SEND:1.html:1
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 141
Connection: close
Content-Type: text/html
:1
INFO: SEND:1.html:2
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 141
Connection: close
Content-Type: text/html
:2
INFO: SEND:1.html:3
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 141
Connection: close
Content-Type: text/html
:3
INFO: SEND:1.html:4
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 141
Connection: close
Content-Type: text/html
:4
INFO: SEND:1.html:5
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0
Content-Length: 141
Connection: close
Content-Type: text/html
:5
INFO: nweb starting:7058:3745
INFO: request:GET /1.jpg HTTP/1.1**Host: localhost:7058**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:1
INFO: request:GET /2.jpg HTTP/1.1**Host: localhost:7058**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:2
INFO: request:GET /3.jpg HTTP/1.1**Host: localhost:7058**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:3
INFO: request:GET /4.jpg HTTP/1.1**Host: localhost:7058**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:4
INFO: request:GET /5.jpg HTTP/1.1**Host: localhost:7058**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**sec-ch-ua-mobile: ?0**DNT: 1**Upgrade-Insecure-Requests: 1**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9**Sec-Fetch-Site: none**Sec-Fetch-Mode: navigate**Sec-Fetch-User: ?1**Sec-Fetch-Dest: document**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:5
NOT FOUND: failed to open file:1.jpg
NOT FOUND: failed to open file:2.jpg
NOT FOUND: failed to open file:3.jpg
INFO: request:GET /favicon.ico HTTP/1.1**Host: localhost:7058**Connection: keep-alive**sec-ch-ua: "Chromium";v="88", "Google Chrome";v="88", ";Not A Brand";v="99"**DNT: 1**sec-ch-ua-mobile: ?0**User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36**Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8**Sec-Fetch-Site: same-origin**Sec-Fetch-Mode: no-cors**Sec-Fetch-Dest: image**Referer: http://localhost:7058/3.jpg**Accept-Encoding: gzip, deflate, br**Accept-Language: en-US,en;q=0.9,he-IL;q=0.8,he;q=0.7****:6
INFO: nweb starting:7058:3803
INFO: request:GET /1.jpg HTTP/1.0****:1
INFO: request:GET /2.html HTTP/1.0****:2
INFO: request:GET /1.jpg HTTP/1.0****:3
INFO: request:GET /1.jpg HTTP/1.0****:4
INFO: request:GET /1.jpg HTTP/1.0****:5
NOT FOUND: failed to open file:1.jpg
INFO: SEND:2.html:2
INFO: Header:HTTP/1.1 200 OK
Server: nweb/23.0