-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGES
7260 lines (6997 loc) · 497 KB
/
CHANGES
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
-- SEE ./doc/Manual.htm FOR MORE DETAILS --
-- SEE ./README FOR MORE CONCISE RELEASE NOTES --
-- SEE http://www.delegate.org/delegate/updates/ FOR THE LATEST CHANGES --
9.9.13 fix-141031b delegated.c: DGROOT is set but not eval. (141028c)
9.9.13 fix-141028c delegated.c: suppress making LOGFILE until DGROOT is set.
9.9.13 fix-141028b smtp.c: SEGV in sendmail() for NOTIFY by fprintf(NULL,...)
9.9.13 new-141023a conf.c: added DGCONF=${EXEDIR}/../etc/${EXENAME}.conf
10.0.0 new-141005b nntpgw.c: folding long lines
10.0.0 new-141005a nntpgw.c: introduced MHGWCONF=show:all,buttons,source,ngroup,markup,fromaddr,org,time,gmt,citehead,sign
10.0.0 rel-140928d 10.0.0-pre4 internal release --------------
9.9.12 rel-140928c 9.9.12 release --------------
9.9.12 mod-140928a htfilter.[hc]: extracted from httpd.c and http.h
10.0.0 new-140927e commands.c: introduced "-Ftruncate file size"
9.9.12 new-140927b httpd.c: hyper linking uppercase only NAME with "?NAME"
10.0.0 mod-140927a httplog.c: default PROTOLOG to ":%X %D" from "%C %D"
9.9.12 new-140926b any2fdif.c: ignoring lines starting with # in making digest
10.0.0 new-140922b {service,http}.c: introduced CHOKE to choke robots by delay
10.0.0 fix-140922a delegated.c: fixed continuous "get{host|peer}name(0) failed, errno=88 (non-socket)" (140914a)
10.0.0 new-140919b maxima.[hc],*.c: gathered MAXIMA and status info.
10.0.0 fix-140914a delegated.c: putting MainConn on the stack of the service thread on Windows
9.9.12 fix-140913d: dgsign.c: stopped VStr overflow on signing binary file
9.9.12 fix-140913c: dgsign.c: finding '{'XXXSIGN=...} split by buffer
10.0.0 new-140912c: -fb option to negate -f option
9.9.12 fix-140912a access.c: clearing Conn. for testing permission (140713d)
10.0.0 new-140902b caps.c: introduced CAPSKEY for anonymous host
10.0.0 fix-140901a {htccx,httphead}.c: VStr overflow by long Cookie with encoded expire and path (140820e)
10.0.0 new-140830b gates/*: bulding Gates.o from object codes in source distribution
10.0.0 new-140829l rfc822.c: extracting address and comment part from email address
10.0.0 new-140829i smtpgate.c: introduced SMTPGATE Max-Mbox-Name:N
10.0.0 new-140829c smtpgate.c: reject mail with To: "xxx" <xxx@domain> by OPTION:rgm
10.0.0 rel-140828j 10.0.0-pre2 internal release --------------
9.9.12 rel-140828i 9.9.12-pre2 release --------------
9.9.12 mod-140828h {DG9note,DGXnote}.html: merged two notes
9.9.12 fix-140828g master.c: fixed REJECT=proto not to forbid any access to MOUNTed destination
10.0.0 mod-140828f access.c: disabled Ident. protocol by default (enabled by -EId)
10.0.0 new-140828e cgi.c: REMITTABLE=+,-ssi to forbid all of SHTML
10.0.0 new-140828d cgi.c: REMITTABLE=+,-cgi to forbid all of CGI
10.0.0 new-140828c conf.c: added REMITTABLE=+,cgi,ssi by default for HTTP
10.0.0 new-140828b service.c: service_permittetX() to check accessible service
9.9.12 fix-140827c mimehead.c: recover encoding env. when a chacter is poped
9.9.12 new-140826f any2fdif.c: included modifications in 10.0.0 to 9.9.12
9.9.12 fix-140826e mimehead.c: realized UNGETC not by round-robin but stack
9.9.12 fix-140826c mimehead.c: don't split multi-bytes char. into 2 e-words
9.9.12 fix-140826b mimehead.c: MIME header decoding for output line to be folded (140606b)
9.9.12 new-140825c httpx.c: delayed stack error log after stack shrinked
9.9.12 new-140825b conf.c: logging EXEC_PATH at invocation and showing in -Fver
9.9.12 fix-140825a delegated.c: getting path of executable by relative name and without "." in PATH as a service on Windows
9.9.12 mod-140824d netsh.c: using Cygwin user's HOME when run as a service
9.9.12 mod-140824c windows.c: forwarding Cygwin user's HOME to service
9.9.12 new-140823h netsh.c: fallback to c:/cygwin/bin/bash.exe on CYGWIN
9.9.12 new-140823e http.c: don't regard server side reset of CONNECT as non-HTTPS
9.9.12 mod-140823d {inets,rescache}.c: reduced trials of detecting inactive NIS for default RESOLV
10.0.0 mod-140822d dgauth.c: new format of NonceKey into "noncekeyX"
9.9.12 fix-140821e smtpgate.c: folding long Received:
9.9.12 fix-140820g httpx.c: set Host for SSI-include from http://Host
10.0.0 new-140820f {http,access}.c: introduced RELAY=ssi[connMap]
10.0.0 new-140820e ssi.c: return Set-Cookie form SSI#incldue in HTTP-EQUIV
10.0.0 mod-140820b conf.c: the default is changed to LOGDIR='log[date+/y%y/m%m/%d]'
10.0.0 new-140820a Manual.htm: merged Maunaul.htm for DG9 and DGX
9.9.12 new-140819b http.c: return HTTP response 404 if ?part is not found
10.0.0 new-140819a CHANGES: shared CHANGELOG between 9.9 and 10.0
9.9.12 new-140818j httpx.c: return SSI#incldue error and record into LOGFILE
10.0.0 rel-140817o 10.0.0-pre1 internal release --------------
9.9.12 rel-140817n 9.9.12-pre1 release --------------
9.9.12 ref-140817m syncronized between 9.9.12-pre1 and 10.0.0-pre1
9.9.12 new-140817l ssi.c: intrdouced <!--#echo var=STACK_DEPTH -->
9.9.12 new-140817i filter.c: introduced -tee-y option like -t but with year prefix
10.0.0 fix-140817f any2fdif.c: suppressed indexing a link in LINKS duplicatedly
10.0.0 fix-140817e any2fdif.c: fixed full-url in LINKS
9.9.12 fix-140815a cgi.c: stop inheritance of TMPFILE buffer for SHTML from CGI
9.9.12 fix-140814e url.c: corrected making #label be absolute with <BASE> tag (result of new-140727m)
9.9.12 fix-140814c httpx.c: coped with SSI loop in virtual URL (if loop in MOUNT with moved exists)(result of fix-140810e)
9.9.12 new-140813e ssi.c: include HTML text as plain-test by <!--#include virtual=URL#plaintext -->
9.9.12 new-140813d ssi.c: include text asis by <!--#include virtual=URL#asis -->
9.9.12 fix-140813c ssi.c: fixed "#plainpre" to make it work
9.9.11 rel-140813b 9.9.11 release --------------
9.9.11 rel-140813a 9.9.11-pre3 release --------------
9.9.11 new-140812a {http,url}.c: automatic absolutization of "?query" without script name
9.9.11 new-140810f url.c: rewriting response URL based on VBASE
9.9.11 mod-140810e ssi.c: made SSI include use virtual URL by default
9.9.11 new-140810d {ssi,ddi}.c: push/pop VBASE before/after SSI
9.9.11 doc-140810b Manual.htm: modified to use ${SELF} and ${VBASE} to be able to rename
9.9.11 fix-140810a httpx.c: prevented possible stack overflow by deep SSI recursion
9.9.11 new-140809h url.c: introduced ${SELF} prefix for URL to be substituted with self url
9.9.11 new-140809f ssi.c: introduced <!--#config var=VBASE val=URL --> to be used in url.c
9.9.11 new-140809e url.c: introduced ${VBASE} prefix for URL to be substitued with defined VBASE
9.9.11 new-140809d ssi.c: made <PRE> for included plain test by the style "#plainpre"
9.9.11 new-140809c ssi.c: introduced ${QUERY_STRING} and ${QUERY_STRING?sring} in virtual url
9.9.11 fix-140808b ssi.c: convert URLs in included HTML to full-url to be reverse MOUNTed
9.9.11 mod-140807j httpd.c: link "[ALL]" to "base.html?.whole#label"
9.9.11 rel-140807i 9.9.11-pre2 release --------------
10.0.0 new-140807h filetype.c: introduced ".stxt" equal to ".txt"
9.9.11 fix-140807b {bcounter,cache}.c: removed "VStr overflow" with COUNTER enabled
10.0.0 new-140806b {ssi,httphead}.c: returning HTTP header as Set-Cookie in HTTP-EQUIV in HTML
10.0.0 new-140806a {httpx,httphead}.c: forwarding HTTP header as Cookie to URLget() for SSI incldue
10.0.0 new-140804d setup: build ftp://ftp2.delegate.org and ftp://www2.delegate.org
9.9.11 fix-140803i dgsign.c: fixed -Fimp to work (broken in v9.9.7-pre24)
9.9.11 fix-140731c {ssi,httphead}.c: SSI virtual url mapping as virtual host
9.9.11 new-140730d httpd.c: inherit <META> tag for each part
10.0.0 new-140730b nntpgw.c: jumping to article by ?JumpToArticle=group:anum
10.0.0 new-140730a nntpgw.c: coped with access by POST
10.0.0 new-140729d nntpgw.c: hyper link with style
10.0.0 new-140729c nntpgw.c: jumping to reference via INPUT/submit as ?JumpToReference=MessageID
10.0.0 new-140728k any2fdif.c: introduced "-y include" option
9.9.11 new-140728j httpd.c: introduced ".whole" part as Manual.htm?.whole
9.9.11 rel-140727r 9.9.11-pre1 release --------------
10.0.0 new-140727m {url,html}.c: fullify even #label by URICONV=+ URICONV=fullall:+
10.0.0 new-140727g {url,html}.c: make URL relative if applicable in reverse URL rewriting with URICONV=+ URICONV=relative:+ (might be the default in v10)
9.9.11 fix-140727f ssi.c: suppressed rewriting to full-url for local resouces included by SSI
9.9.11 fix-140727a httpd.c: fixed MOUNT="/vpath/* cgi:/rpath/*" for CGI with/without /extra/path like script.cgi/extra/path?query (broken in 8.6.0 030522)
9.9.11 fix-140726a {http,httphead}.c: partializing URL in HTML response included by SSI
9.9.11 fix-140725a httpd.c: added ".htm" to "executable" file, for SSI
9.9.11 new-140724i httpd.c: removing comment in part filter
9.9.11 new-140724h httpd.c: include <STYLE> in the HTTP part filter
9.9.11 fix-140724f http.c: fixed rewriting MOUNTed URL around the input buffer boundary
9.9.11 mod-140724e Manual.htm: made Manual more readable with CSS
9.9.11 new-140723d binary-distribution: added linux2.6_32-dgX_Y_Z
10.0.0 new-140723b httphead.c: introduced "nocache" MountOption
10.0.0 new-140722g {httphead,ssi}.c: introduced "setcookie=name:value" MountOption
10.0.0 new-140722f {mount,httphead}.c: introduced "hascookie=name[:value]"
10.0.0 mod-140722e mount.c: expanded flags to Int64 from int
9.9.11 fix-140722c ftp.c: shown size of uploaded data to local-file larger than 4GB in response message and LOGFILE
9.9.11 fix-140722b ftp.c: putting PROTOLOG(xferlog) for upload (STOR) to local-file
10.0.0 fix-140722a ntod.c: fixed matching failure with xx.xx.xx.xx/mask in netdom
9.9.10 rel-140721f 9.9.10 release --------------
9.9.10 fix-140721d httpx.c: really fixed fix-140720b
9.9.10 mod-140721a delegated.c: added thru-CONNECT for google.com, gogle.co.jp, and facebook.com
9.9.10 rel-140720e 9.9.10-pre3 release --------------
9.9.10 mod-140720d http.c: really included mod-140716d and mod-140716e
9.9.10 fix-140720b httpx.c: forwarding and logging original User-Agent (not DeleGate/SERVER_VER) for SHTML
10.0.0 new-140719a commands.c: created -Ftail-f -- simple tail -f for binary file
10.0.0 mod-140718c gendom.c: aded .afrinic, .arin, .apnic, .jpnic, .lacnic virtual tld
10.0.0 fix-140716i {log,windows}.c: made readlink() returns the character length
9.9.10 rel-140716h 9.9.10-pre2 release --------------
9.9.10 mod-140716e http.c: longer HTPCONF=tout-pack-intvl:10.0 in SSLtunnel (<- 3.0)
9.9.10 mod-140716d http.c: disabled tentative "non half-duplex" detection & rejection over SSLtunnel (re-enabled by HTTPCONF=halfdup)
10.0.0 new-140716a socks.c: connecting to SOCKS via HTTP-proxy
9.9.10 fix-140715c socks.c: SEGV with SERVER=socks plus FORWARD= with CONNECT=s
9.9.10 fix-140715b service.c: could not relay non-HTTP (HTTPS) by PROXY or FORWARD (9.9.8-pre21)
9.9.10 mod-140714a caps.c: changed the RSA key-pair for RSA-signed-CAPSKEY
10.0.0 mod-140710f filetype.c: moved from src/ to rary/
10.0.0 mod-140710e windows.c: don't create symlink if the target file does not exist
10.0.0 mod-140710d windows.c: extend ".lnk" automatically in symlink() and readlink()
10.0.0 mod-140710c windows.c: made readlink not to return ShortPath
10.0.0 mod-140710b windows.c: made readlink to return path separated by "/" (for shell)
10.0.0 mod-140710a windows.c: creating symlink of relative path from current directory
10.0.0 rel-140708c 10.0.0-pre1a release in FreyaSX 0.99.17 --------------
10.0.0 new-140709a commands.c: introduced "-Fsymlink old new"
10.0.0 fix-140708b SXc.{h,c},findex.cc: invocation from non-Command-Prompt terminal
10.0.0 new-140708a makevc.sh: building FreyaSX on Windows
10.0.0 new-140705a gendom.c: representing RIPE whois result to "netname.country.ripe"
10.0.0 new-140704f httpd.c: disabling mypro.xyz with HTTPCONF="mypro.xyz:stop"
10.0.0 new-140704d {conf,httpd}.c: "mypro.xyz" as the alternative of "-.-"
9.9.10 fix-140704a dl.c: added DYLIB=cyg%s-0.9.8.dll for yysh client on Cygwin with STLS=fsv or -ys
10.0.0 mod-140703a any2fdif.c: coped with hops limitation with multiple "-r URL"
10.0.0 fix-140702d any2fdif.c: don't index duplicatedly but rescan links under different context
10.0.0 fix-140702b any2fdif.c: escaped "VStr overflow" in HTML entity encoding
9.9.10 rel-140701b 9.9.10-pre1 release --------------
9.9.10 mod-140630c dl.c: added lib{ssl,crypto}.so.10 for CentOS6.5
9.9.10 fix-140630a X.c: setting SHELL by /etc/passwd when invoked by cron (or inetd or so)
9.9.10 mod-140626i windows.c: set OWNER=curent-user-name for yysh on Windows
9.9.10 new-140626g {winmisc,netsh}.c: no-echo to get password on Windows
9.9.10 new-140626b X.c: yysh periodic sending of TTySize for keep-alive (-tiT option, T=60 bydefault)
9.9.10 fix-140626a netsh.c: a workaround to let HOME env. be inherited on Windows
9.9.10 mod-140625e netsh.c: inherit no opened resources (as socket) to shell
9.9.10 fix-140625d netsh.c: dgforkpty did not work on Windows (since 9.9.7-pre23)
9.9.10 fix-140625c Makefile,link-libs.sh: building on Cygwin (on D: drive)
10.0.0 mod-140621c fsearchcgi.cc: counter size in the file name as "byurl-1024K"
10.0.0 fix-140621b fsearchcgi.cc: counter did not work when CRC32(url) is minus value
10.0.0 fix-140621a DescRecord.cc: uninit. description str. was put when title is long
10.0.0 new-140620c rfc2html.c: hyper linking of references to other RFCs
10.0.0 new-140620a {rfc2html,any2fdif}.c: META-revised to represent the date of document
10.0.0 new-140619i rfc2html.c: using META-author tag to represent author
10.0.0 new-140619h rfc2html.c: using Abstract part as META-description tag
10.0.0 new-140619b rfc2html.c: [prev][next] link skipping nonexistent RFCs
10.0.0 new-140619a fsearchcgi.cc: let sort=date imply sort=url-reverse
10.0.0 new-140618c rfc2html.c: created RFC text to HTML converter
10.0.0 mod-140617e SX.h: reduced diff by "using namespace std; */
10.0.0 new-140616j fsearchcgi.cc: FreyaSX hit/vote counter by URL (_shared/byurl)
9.9.9 rel-140616b 9.9.9 release --------------
9.9.9 fix-140615h mime.c: SEGV on NNTP POST without CHARCODE (140605c)
9.9.9 fix-140615e dgauth.c: don't FATAL error by AUTHORIZER="-dgauth{user:pass}" and don't erase CRYPT=pass:xxxx
9.9.9 new-140615b windows.c: version and SERVER info. into Windows service description
9.9.9 fix-140613b dgauth.c: fixed 2 bytes of buffer overflow by bcopy (9.8.2)
9.9.9 new-140613a {ssleay32,libeay32}.dll: bandled OpenSSL-0.9.8za into win32-dg.zip
9.9.9 fix-140610h windows.c: don't create new console on CYGWIN (if isatty(0)!=0)
9.9.9 rel-140609i 9.9.9-pre2 release
10.0.0 new-140609h {pop,cfi}.c: thru CFI filter for LIST and UIDL
10.0.0 new-140609e filter.c: -Fconnect -ql option to wait reponse for line command
9.9.9 fix-140609d cfi.c: fixed duplicated ".CRLF" for pipelined responses
9.9.9 fix-140609c cfi.c: don't put generated header for BODY only filter
9.9.9 fix-140609b cfi.c: erased "VStr overflow" on NNTP BODY filtering by CFI
9.9.9 fix-140609a cksum.c: -Fcksum freezes with "-f srcfile" by nonexistent srcfile
9.9.9 new-140608c windows.c: introduced SERVCONF="name:xxxx" and "yesall"
9.9.9 fix-140607c svport.c: -Pxxx/tcp with SERVER=udprelay on Windows service
9.9.9 fix-140607b svport.c: distinguish -Pxxx[/udp] from -Pxxx/tcp as service name on Windows <Nacho>
9.9.9 new-140606k config.h: don't detect modification of config.h as spoofing
9.9.9 new-140606b mimehead.c: catenating e-words of the same charset in base64
9.9.9 fix-140606a mimehead.c: removed ISO-2022 space control code in non-ISO-2022-JP
9.9.9 fix-140605d mimehead.c: removed dust generated into MIMEencoded-word
9.9.9 mod-140605c mime.c: char. code conv. for multipart head. with CHARCODE=Chset:tosv
9.9.9 fix-140605b {cfi,rfc822}.c: coped with Output/Content-Type to make header larger
10.0.0 fix-140604d mkmake.c: freezed by large "make -s srcfiles" with small PIPE
10.0.0 fix-140604b any2fdif.c: strip duplicated (old) "[xxx]" in Subject
10.0.0 fix-140604a {nntpgw,smtpgate}.c: strip multiple "[xxx]" in Subject
10.0.0 mod-140603c nntpgw.c: show the last page in round-up range (for refresh)
9.9.9 fix-140603b {cfi,rfc822}.c: enlarged acceptable MIME header (128K <- 64K)<t-okuda>
9.9.9 fix-140603a ftp.c: make relative path only if under cur. dir <Nagakura>
9.9.9 mod-140602f sslway.c: made SSLv2_* optional by OPT(0) (for OpenSSL/1.X) <Albert>
9.9.9 new-140602e dl.c: added lib*.so.1.0.0 for OpenSSL nowadays
10.0.0 mod-140602c nntpgw.c: put Cc in a single line (for vin ;-)
10.0.0 fix-140602a findex.cc: coped with invocation from cron without FDIF argument
10.0.0 fix-140601s fsearchcgi.cc: duplicated key when pfx is not empty
10.0.0 new-140601r fsearchcgi.cc: introduced hidden_key=Key
10.0.0 new-140531d bcounter.c: introduced COUNTERDIR=dirSpec
10.0.0 new-140531a smtpgate.c: applying text-filtering to decoded text/plain part
9.9.12 fix-140530f ssi.c: guessing the Content-Type of <!--#include --> of local file
10.0.0 new-140530d httpd.c: putting generation date in list of directory as httpd
9.9.9 fix-140529c src/Makefile,embed.c: exluded "AppleDouble encoded Macintosh file" of which name begins with "._" from builtin-data
10.0.0 fix-140527i fsearchcgi.cc: substitution of "$cgibase" in template
10.0.0 new-140527f any2fdif.c: <noindex>text</noindex> to skip indexing the text
10.0.0 mod-140527e any2fdif.c: ignore secondary <TITLE> not to index it
10.0.0 new-140526l history.dhtml: introduced guide mode
10.0.0 fix-140526k htmlgen.c: expanded HTML generator buffer (16K <- 2K)
10.0.0 mod-140526g delegate.h: expanded response header (2K <- 256) for Cookie
10.0.0 new-140526f htstats.c: coped with filtering by URL
10.0.0 fix-140526e htstats.c: coped with huge history file > 4GB
10.0.0 new-140526c htstats.c: saving/restoring panel configuraiton into Cookie
10.0.0 new-140526b htstats.c: binary search of a history file by date
10.0.0 new-140526a htstats.c: cueing among divided history files by specified date
10.0.0 new-140525c ssi.c: using LAST_MODIFIED env., if defined, for Last-Modified response
10.0.0 new-140525b cgi.c: introduced LAST_MODIFIED CGI environment
10.0.0 new-140525a cgi.c: translating CGI X-File-Status:lsFormat to Last-Modfied header
10.0.0 new-140524l any2fdif.c: index any relative URL too
10.0.0 new-140524k any2fdif.c: index links upto 16K bytes (<- 2048)
10.0.0 new-140524j any2fdif.c: index links for FORM ACTION and IMG SRC too
10.0.0 mod-140524h ssi.c: return Last-Modified of *.shtml file by default
10.0.0 mod-140524g any2fdif.c: make index with URL of after 301/302 redirection for the -r URL
10.0.0 fix-140524c service.c: uninitialized Connection caused many errors in -Fany2fdif
10.0.0 fix-140524b any2fdif.c: suppressed "VStr overflow" with -Fany2fdif -r (for Links buffer)
10.0.0 fix-140524a any2fdif.c: SEGV in isspace() for values negative or larger than 0xFF (Ubunts)
10.0.0 mod-140523i nntpgw.c: response to /news-group/$ with Moved To the latest article
10.0.0 mod-140523h artbuttons.dhtml: bound the newest button to "/news-group/$"
10.0.0 new-140523e httphead.c: enabled decoding MIME encoded ISO-8859-1 in header
10.0.0 fix-140523b mime.c: fixed char. code conv. for text part out of multi-part
10.0.0 new-140522f htstats.c,history.dhtml: make AUTHORIZER for history viewer mandatory
9.9.9 mod-140522a caps.c: longer CAPSKEY expiration (1 -> 4 weeks)
10.0.0 new-140521b htstats.c: stats local "data:" interpreter at /-/stats/-/data:
10.0.0 mod-140520e robots.txt.c: added "Disallow: /-/admin/" to default /robots.txt
10.0.0 mod-140520d robots.txt.c: added "Disallow: /-/stats/" to default /robots.txt
10.0.0 new-140519e htstats.c,history.dhtml: automatic Refresh of history
10.0.0 new-140519d htstats.c,history.dhtml: history (PROTOLOG of HTTP) viewer
9.9.9 rel-140519- 9.9.9-pre1 release
9.9.9 new-140518m inets.c: auto. detect and exclude inactive NIS from RESOLV
9.9.9 mod-140518e http.c: introduced HTTPCONF=max-ssl-turns:100 (was 6+max-cka*2)
9.9.9 mod-140518d http.c: increased HTTPCONF=max-cka:20 to max-cka:50
9.9.9 mod-140518c http.c: HTTPCONF=max-pack-intvl from 0.3 to 3.0
9.9.9 new-140518b {http,nbio}.c: introduced -Esp to peek SSL packets over SSL-tunnel
9.9.9 mod-140518a {http,http}.c: disabled tentative non-SSL blocking over SSL-tunnel (enabled by -Esb)
9.9.9 fix-140515b httphead.c: returning Moved To "http://-.-/dir" as a proxy
10.0.0 new-140515a {htstats,httpd}.c: http://-.-/-/stats/ history or bookmark ... visualized PROTOLOG
9.9.9 new-140514a dgauth.c: error log of non-writable CRYPT file
10.0.0 new-140513d nntpgw.c: using the Content-Type of text part in multipart mssg.
10.0.0 fix-140513c mime.c: fixed relaying only text/plain part of MIME
10.0.0 fix-140513b JIS.c: detecting ISO-8859-1 and conversion to UTF-8
10.0.0 mod-140513a nntpgw.c,arthead.dhtml: modified the article header of NNTP/HTTP gw.
9.9.8 mod-140512b arthead.dhtml: <FONT face="courier new"> for NNTP/HTTP gw. article
9.9.8 fix-140512a {unix,_-system,__system}.c: compilation on Solaris11 (gcc 4.8.2)
9.9.8 mod-140511c windows.c: seeing LANG env. val. for guessing isatty()
9.9.8 new-140511b windows.c: kind info. for starting as service under Administrator's right
9.9.8 mod-140511a windows.c: retrying 10 times to create service for DeleGate
9.9.8 fix-140509h windows.c: erased "FATAL accept" debug log on Win (9.9.7-pre26)
9.9.8 fix-140509f dgsign.c: keep the file modification time after -Fesign -w
9.9.8 mod-140509d delegated.c: suppressing PORT parameer for for non-daemom (-Fkill)
9.9.8 fix-140509c delegated.c: enabled DGPATH for +=paramsFile for -Ffunc (ex. -Fkill)
9.9.8 new-140509b conf.c: if ${STARTDIR}/DGROOT exists, use it as DGROOT
9.9.8 new-140509a delegated.c: immediate disconnection by SCREEN with -Eri
9.9.8 fix-140506d ftp.c: fixed one-time PASV error after PORT failure
9.9.8 mod-140506c {reshost,env}.c: introduced timeout in yp_match() for RESOLV=nis (TIMEOUT=nis:T)
9.9.8 fix-140506a ftp.c: fixed FTPxHTTP failure on the first command after CWD (by un-initialized var.)
9.9.8 new-140504j {smtp,nntpgw}.c: introduced SMTPCONF=mladmin:E-mail for Sendpass in "Forward" button
9.9.8 new-140504i {smtp,nntpgw}.c: introduced SMTPCONF=mlsolt:Solt for Sendmail password encodeing
9.9.8 new-140504h {smtp,nntpgw}.c: introduced SMTPCONF=mlhost:MlHostName
9.9.8 new-140504g httpd.c: returning ETag response header for builtin icons
9.9.8 mod-140504f {httpd,htmlgen,conf}.c: returning real Last-Modified time of builtin icons
9.9.8 fix-140504e builtin.c: getting modified date of builtin icons
9.9.8 new-140504c nntpgw.c: Pragma: no-cache for Sendmail/Sendpass
9.9.8 new-140504b nntpgw.c: introduced "Sendpass" to send password for Sendmail
9.9.8 new-140504a nntpgw.c: introduced "Sendmail" for forwarding article from NNTP/HTTP
9.9.8 new-140503a make-vs8ce_win8.bat: coped with makeing by VS8 on Win8
9.9.8 fix-140502h windows.c: isatty()=1 if environment SESSIONNAME=Console is set
9.9.8 fix-140502f rsasign: don't put debug info. (# RSASIGN #) into esign (9.9.8-pre2?)
9.9.8 mod-140502e wince.c: moved the default port of win32-dg.exe from -Q80/http to -Q2080/http
9.9.8 fix-140502d http.c: erased warning of casting in fPollIn() arg from double to int
9.9.8 new-140502c Makefile,make-vs8_win8.bat,link-win32_win8.sh: coped with making by Visual Studio 8 on Windows 8
9.9.8 fix-140502b srcsign: coped with sh+echo that interpret echo "\\n"
9.9.8 fix-130723a svport.c: fixed VStr overflow by receiving long host name in addres buffer
9.9.8 fix-130722a vaddr.h: coped with hostname longer than 70 characters (for Windows Azure)
9.9.8 fix-130629a Makefile: added "-lutil" after libsubst for forkpty (Ubuntu)
9.9.8 fix-120313a httphead.c: suppress Set-Cookie rewriting by URICONV <Nicholas>
9.9.8 fix-120202a master.c: SockMux in background (9.9.0-pre2) -> beDaemon() -> wait -> Finish
9.9.8 fix-120131a service.c: don't SOCKS by FORWARD by non-circuit-level proxy
9.9.8 new-111110a sslway.c: showing current cipher desc. with TLSCONF=-vd <Sieveking>
9.9.8 fix-110921a sftp.c: must skip multiple prompts for a mal-password with multiple auth. method
9.9.8 110521d new ftp.c: introduced CMAP="/:FTPWD:ftp:*:*" <k.sasaki>
9.9.8 110521c fix http.c: relaying POST body with fork(), without buffered in.
9.9.8 110513a fix http.c: relaying chunked body of POST <ishihara>
9.9.8 110318a fix credhy.c: detecting bad length of decrypted data
9.9.8 110115 new xflash.c: a geteway for X11-client to Flash as a X server
9.9.8 101227 fix http.c: suppressed VStr overflow for long "Accept-Encoding"
9.9.8 101226 fix mount.c: MOUNT for a HTTPS server with "nvserv" <kondo>
9.9.8 101111 fix sftp.c: introduced waitput=T MountOption for sftp/FTP gw.
9.9.8 101111 fix pop.c: coped with STLS=fcl + SERVER=pop (not SERVER=pop://serv)
9.9.8 101111 new env.c: connection cache shorten by TIMEOUT=cc:T
9.9.8 101111 fix sftp.c: termination on disconnection from SFTP server <vijay>
9.9.8 101107 fix stls.c: enabled STLS=fsv:"ftps" as well as STLS=fsv:"ftp"
9.9.8 101107 fix {sslway,filters}.c: fixed uploading with STLS=fsv,fcl <sf02>
9.9.8 101107 fix {sslway,filters}.c: fixed jamming of socket fd for FSV+FCL
9.9.8 101106 fix ftp.c: fixed slow upload (16sec.) by FTP/SSL with PORT
9.9.8 101106 new ftp.c: FTPCONF="waitssl" to wait SSL before 150 as origin FTP
9.9.8 101031 fix dget.c: waiting uploading complete (by STOR -Fdput ftp://sv)
9.9.8 101031 fix ftp.c: fixed SEGV on upload (STOR) with cached file (6.0.1)
9.9.8 101031 fix ftp.c: STOR as an origin FTP with client over SSL
9.9.8 101013 fix iotimeout.c: VStr-overflow by "Manual.htm?.parts" (pre15)
9.9.8 101011 new stls.c: SERVER=ftps + STLS=fcl:ftps and STLS=fsv:ftp
9.9.8 101004 new pds/regex/*: included "regex" library of H.Spenser
9.9.8 101002 new env.c: added DYCONF=conditions:configuration
9.9.8 100930 fix ntod.c: fixed SEGV with searching 255.255.255.255.in-addr.arpa
9.9.8 100930 fix http.c: dst=xxx MountOption for CONNECT (pre15)<suzuki_h>
9.9.8 100927 fix windows.c: recognition of isatty() on CYGWIN via yysh
9.9.8 100926 fix iotimeout.c: larger fgetsBB() buff. (5.5.0)(enbug by "-Bis")
9.9.8 100925 fix iotimeout.c: fixed slow text relay by pollIZ() (9.9.1-pre5)
9.9.8 100925 fix {nbio,_-select,_-poll}.c: faster IsAlive() without 1ms delay
9.9.8 100925 fix mount.c: multi-thread safer MOUNT
9.9.8 100925 fix String.c: multi-thread safer Strdup()
9.9.8 100925 fix http.c: leave Cont-Leng on slow resp. with "guess" (8.1.0)
9.9.8 100925 fix cgi.c: broken binary CGI resp. with CHARCODE=guess (9.5.0p12)
9.9.8 100924 fix X.c: increased LISTEN for -yf (from 1 to 15)
9.9.8 100921 fix Strftime.c: fixed SEGV on unexpected date format string
9.9.8 100920 fix ftp.c: FTPxHTTP STOR via HTTP-PROXY (POST without Cont-Leng)
9.9.8 100920 fix {ftp,ftpgw}.c: RETR,SIZE,MDTM from FTP server via FTPxHTTP
9.9.8 100918 fix {svport,http}.c: coped with multi-port/off (-Qxx/off,-Qyy/off)
9.9.8 100918 new delegated.c: mux. over YYMUX in a single process DeleGate
9.9.8 100915 new httpd.c: reusing YYMUX connection to servers from SSI #include
9.9.8 100911 fix hostlist.c: matching user in HOSTLIST="Name:user@ahost"(8.0.6)
9.9.8 100905 new http.c: enabled MOUNT="hpPattern = forbidden" for CONNECT
9.9.8 100905 fix resconf.c: scanning "search" list separated by "," <takamori>
9.9.8 100904 fix X.c: removed "YYMUX" log for FTP data-connection (9.9.7)
9.9.8 100904 mod ftp.c: reject FTP PORT bounce, FTPCONF=bounce:no <jacob>
9.9.8 100904 new ftp.c: force EPRT with serv. by FTPCONF=doeprt:sv
9.9.8 100823 new ftp.c: force EPSV with serv. by FTPCONF=doepsv:sv <jimbob>
9.9.8 100814 fix {http,delegated}.c: be StickyServer after CONNECT (9.8.2-p5)
9.9.8 100809 fix http.c: imm. exit of HTTP relay+cache if with "takeover:0"
9.9.8 100809 new delegated.c: SCREEN=reject,accept and ETCDIR/hosts.d/reject
9.9.8 100808 new {hostlist,inets}.c: "Name.mac.list.-" and "Name.ip4.list.-"
9.9.8 100807 fix http.c: don't apply default URL rewriting for MITM <takamori>
9.9.8 100801 new {resolv,dnsnode}.c: expiring DNS-RR cache on mem. by the TTL
9.9.8 100801 new inets.c: intrduced RES_EXPIRE=F/M/R to expire resolv. cache
9.9.8 100723 fix resolv.c: don't on mem. cache for response RR from SERVER=dns
9.9.8 100721 fix delegated.c: proxying DNS by UDPerlay with PERMIT <sarai>
9.9.8 100718 new smtpgate.c: loading SMTPGATE/admin/@common/conf if it exists
9.9.8 100714 fix smtp.c: don't repeat (reuse cached) EHLO after STLS <jdiego>
9.9.8 100707 add url.c: rewriting URL in (') escaped as "'"
9.9.8 100704 fix X.c: fixed thread leak salvaging HTTP via YYMUX over HTTP/yysh
9.9.8 100703 fix httpx.c: SEGV by NULL ptr. on NNTP/HTTP Admin (pre2)
9.9.8 100627 fix udprelay.c: fixed SERVER=dns://host:port on BSD
9.9.8 100627 fix X.c: don't try waiting for startup of ending YYMUX
9.9.8 100627 fix X.c: mutual exclusion for YYMUX alloc/free
9.9.8 100626 fix X.c: mutual exclusion adding YYMUX
9.9.8 100620 fix _-fcloseFILE.c: multi-thread safe fcloseFILE on BSD (pre6)
9.9.8 100620 fix admin.c: scanning uptime with LANG except LANG=c <suzuki_h>
9.9.8 100613 mod nbio.c: don't shorten timeout for CONNECT in HTTP/yyshd
9.9.8 100612 new master.c: "-" prefix for exact protocol matching for SRCIF
9.9.8 100611 new resolv.c: binding DNS resolver port with SRCIF=H:P:dns <chris>
9.9.8 100609 fix X.c: salvaging YYMUX in a single process (as in HTTP/yyhsd)
9.9.8 100604 fix X.c: relaying YCNCT via YYMUX via YYMUX
9.9.8 100603 fix X.c: sweeping YYMUX in shutdown status (by HTTP/yysh server)
9.9.8 100603 fix sftp.c: failure in "Too many open files" <vijay>
9.9.8 100530 new delegated.c: LOGDIR/PORT.http for HTTP/yysh
9.9.8 100529 fix {Makefile,*.c}: making mimekit,resolvy,ntod,ccx,credhy,bdtee,.
9.9.8 100527 fix Makefile,dgctx.h: consistency checking for "Connection"
9.9.8 100527 fix filter.c: revival of FSV="sslway -cert file"(9.9.7-pre1)<rauh>
9.9.8 100526 add {ftp,httpd}.c: supported MLST and STAT via FTPxHTTP
9.9.8 100523 fix smtpgate.c: clear YYMUX on SMTP disconn. (to supp. SIGPIPE)
9.9.8 100523 fix smtp.c: fixed BCC via YYMUX (poll err. by EINTR/SIGPIPE)
9.9.8 100523 mod ddi.c: ignore death of server proc. with multi-session threads
9.9.8 100523 fix X.c: fixed conn. failure (fdopen err.) after SIGINT
9.9.8 100523 fix {delegated,windows}.c: enabled -Fkill for foreground/Win32
9.9.8 100522 fix log.c: fixed server pid in PIDFILE on Win32 (-xx)(9.0.6-pre3)
9.9.8 100521 mod delegated.c: stopped doing randfd() in AcceptByMain
9.9.8 100520 fix {file,delegated}.c: closing /dev/null on HUP <kusunoki>
9.9.8 100520 fix sftp.c: login failure (9.9.7-pre33)<harano>
9.9.8 100519 fix Strftime.c: don't inherit f.d. for localtime() on exec (HUP)
9.9.8 100519 fix X.c: HTTP/yysh HTTPCONF=bugs:thru-304 without <=+=304
9.9.8 100518 new {ftp,httpd}.c: FTPxHTTP: FTP STOR by HTTP POST
9.9.8 100517 mod filetype.c: coped with long content-type name (> 64)
9.9.8 100516 mod timer.c: disabled Timer() with multi-threads
9.9.8 100515 fix {X,http}.c: multi-thread safe HTTP over yysh
9.9.8 100515 fix {X,ddi}.c: HTTP-proxy over yysh in keep-alive <corley>
9.9.8 100511 new X.c: forwarding ftp-data (by YCNCT) over chained YYMUX
9.9.8 100509 new {ftp,ftpgw}.c: enabled SERVER=ftpxhttp MOUNT="/* ftp://serv/*"
9.9.8 100509 new {ftp,httpd,httpx}.c: forw. non-anonymous auth. via FTPxHTTP
9.9.8 100508 new {ftp,httpd}.c: FTPxHTTP by "ftpxhttp" protocol and MountOption
9.9.8 100508 fix fstat.c: space between mode and link count (for FTP LIST)
9.9.8 100502 fix spinach.c: imm. shut of CONNECT (no keep-alive)
9.9.8 100502 fix spinach.c: fixed SEGV on large request message with resolv
9.9.8 100501 new http.c: added HTTPCONF=bugs:thru-304 and "bugs:gen-304"
9.9.8 100501 fix spinach.c: fixed broken POST body (buffered without '\0')
9.9.8 100501 fix spinach.c: RELAY timeout after Content-Length:0 or 204 resp.
9.9.8 100501 fix spinach.c: fixed broken POST (or large GET) with slow resolv
9.9.8 100410 fix httphead.c: SEGV by HTTPCONF="methods:+,a,b" (9.0.3)<sengoku>
9.9.8 100408 new imap.c: redirecting to a IMAP server hinted in ALERT
9.9.8 100405 new url.c: detecting a URL in JavaScript as ({url:"..."
9.9.8 100404 new X.c: added MOUNT="/-/screen/* ..." on yysh server
9.9.7 100330 new smtp.c: supported "AUTH LOGIN" to serv. by MYAUTH <jdiego>
9.9.7 100329 new X.c: relaying to DNS resolver (dns://-.-) over YYMUX/YYSH
9.9.7 100329 fix *.c: printing 64bits pointer with "%X"
9.9.7 100328 new X.c: relaying POP,SMTP on YYMUX/YYSH (-yfd -yfp -yfm)
9.9.7 100327 new X.c: relaying UDP on YYMUX/YYSH (ex. -yf:53.udp:53.udp)
9.9.7 100327 new X.c: YYSH -yf[:port[/[host][/proto]]][:port[/[host][/proto]]]
9.9.7 100327 new X.c: HTTP proxy and SOCKS serv. by DeleGate (-yfh -yfs)
9.9.7 100326 new X.c: FTP serv. by DeleGate by default (-yf) w/o -yfServer
9.9.7 100325 new X.c: forwarding FTP over YYMUX/YYSH (-yf)
9.9.7 100324 fix X.c: fixed data truncation by yysh .get from Win32 (pre23)
9.9.7 100323 new dget.c: implemented "-Fdput ftp://user@host:port/path"
9.9.7 100322 fix X.c: fixed YYMUX server on WinCE (pre24)
9.9.7 100322 fix X.c: fixed disconn. with pending data with compression (-yz)
9.9.7 100321 fix ftpgw.c: don't make empty LIST cache "302 Moved" for dir.
9.9.7 100321 fix X.c: fixed suspended YYMUX/YYSH for VNC with Zlib (-yv -yz)
9.9.7 100320 fix X.c: fixed data truncation on Unix by -Fyysh .get
9.9.7 100320 mod ftpgw.c: mapping empty-resp. or 421 to 503 in FTP/HTTP g.w.
9.9.7 100319 mod nbio.c: relaxed "shorten timeout" with -d1+N (for SOCKS)
9.9.7 100318 new socks.c: connect to SOCKS via FORWARD=xxxx://host:port-_-socks
9.9.7 100318 fix smtp.c: refresh EHLO cache (AUTH) after STARTTLS <dai>
9.9.7 100317 fix thmain.c: too short timeout (5s) with -d1+N(WinCE)(9.9.7-pre1)
9.9.7 100316 fix X.c: fixed YYMUX flow control, excluding from select(in-fds)
9.9.7 100315 new X.c: simple YY proxy without Y-Connection
9.9.7 100314 new tcprelay.c: new SERVER=tcprelay2 (relaying by two threads)
9.9.7 100313 new X.c: relaying to VNC on the YYSH server (-yv)
9.9.7 100313 fix master.c: SEGV with SOCKSTAP or HTMUX=px or ICP (pre21)
9.9.7 100312 fix http.c: HTTP request MOUNT by -Pxxx/https/ssl without SERVER
9.9.7 100312 fix admin.c: acc. HTTPS by -Pxxx/https/ssl with non-HTTP SERVER
9.9.7 100312 fix dget.c: sending auth. by MYAUTH=u:p:https for a HTTPS server
9.9.7 100311 fix X.c: fixed loop in yysh ZCredhy (-yz) on RSM with YYMUX
9.9.7 100310 fix forkspawn.c: unset DYLIB_xxx environ. before forkpty(), SSI
9.9.7 100310 fix cgi.c: unset DYLIB_xxx environ. before CGI
9.9.7 100309 new X.c: slow YYSH disconn. with SSL (without STLS=fcl and -yX)
9.9.7 100309 fix {_-selet,_-poll}.c: don't regard conn. RESET as OOB
9.9.7 100309 fix nbio.c: fixed inf. loop in SSLtunnel on FreeBSD8 <imao>
9.9.7 100309 mod stls.c: longer timeout for SSL detection for -Qxxx/yymux/ssl
9.9.7 100308 new http.c: aded HTTPCONF=thru-type:+,application/microsoftpatch"
9.9.7 100308 new httpd.c: enebled adding HTTPCONF=thru-type:"+,"Type
9.9.7 100308 new X.c: introduced bi-directional auth. by YYKEY (based on RSA)
9.9.7 100307 fix X.c: fixed binary transmission by .get and .put on Win32
9.9.7 100307 fix X.c: sync. after interactive auth. (for -ys -yx -yy -yz)
9.9.7 100307 mod netsh.c: copy dgforkpty.exe to "C:/DeleGate/" and use it
9.9.7 100306 fix wince.c: win32-dg.exe invoking by non-ASCII exec. name (dir.)
9.9.7 100305 fix master.c: repaired auto. STLS for -Pxxxx/admin (since pre21)
9.9.7 100305 fix spinach.c: SEGV in FTP/HTTP g.w. by SERVER=http-sp (WinCE)
9.9.7 100304 new X.c: getting yysh auth. interactively from tty
9.9.7 100304 fix wince.c: invocation by click on Win32(without CLIENTNAME env.)
9.9.7 100304 fix X.c: yysh timeout in serv. disconn. with nested YYMUX over SSL
9.9.7 100304 fix gzip.c: re-loading DLL in child-process on CYGWIN
9.9.7 100303 fix __gethostbyname2.c: making on CYGWIN (1.7)
9.9.7 100303 fix X.c: re-enabled YYMUX (fcloseFILE() with fflush(), pre26)
9.9.7 100303 mod netsh.c: don't inherit descriptors except [0 1 2] to forkpty()
9.9.7 100302 fix netsh.c: relaying forkpty() without threads (for LinuxThreads)
9.9.7 100302 fix gzip.c: Zlib on OpenBSD (z_off_t in z_stream -> ver. error)
9.9.7 100302 fix cgi.c: removed VStr overflow with CFI
9.9.7 100301 new X.c: -yl to log display output to yysh.log (as "script")
9.9.7 100228 new sslway.c: new lib. for RSA encryption with simple interfaces
9.9.7 100227 fix gzip.c: suppressed repetitive loading and setup of Zlib
9.9.7 100227 fix netsh.c: fixed strange dup. echo in forkpty() + LinuxThreads
9.9.7 100227 fix gzip.c: fixed SEGV by yysh -yx when Zlib is not available
9.9.7 100227 fix netsh.c: doing "stty sane" before exec() for forkpty() on OSF1
9.9.7 100227 fix netsh.c: setegid() and seteuid() before exec() in dgforkpty
9.9.7 100226 new X.c: -yf and -yh to relay to client-side FTP and HTTP server
9.9.7 100225 fix X.c: mutex of fdopen()/fcloseFILE() to be multi-thread safe
9.9.7 100225 fix X.c: fixed broken Z-Credhy on partial fread()
9.9.7 100224 fix X.c: miss-detection of OOB by PRI reading from disconn. socket
9.9.7 100224 new X.c: -jX to apply JP CHARCODE conv. to "-Fyysh -jX command"
9.9.7 100223 new X.c: -yz to apply "deflate" by Zlib to YYSH
9.9.7 100222 new X.c: -yc to apply Credhy encryption to YYSH
9.9.7 100221 fix sslway.c: don't wirte 's' to fd[0] on SSL connect/accept error
9.9.7 100220 fix filter.c: fixed leak of terminated (SSLway) threads
9.9.7 100219 fix {X,service}.c: fixed coincident resumption of nested YYMUX
9.9.7 100218 fix filter.c: fixed jamming by parallel SSLway invocation
9.9.7 100218 fix X.c: resumption of nested YYMUX (yysh -yy via YYMUX) with STLS
9.9.7 100217 fix X.c: resumption of nested YYMUX (yysh -yy via YYMUX)
9.9.7 100216 fix X.c: yysh -yy resumption with STLS=fsv:yysh (not -ys)
9.9.7 100216 new X.c: YYSH .put and .get
9.9.7 100216 fix X.c: finishing YYMUX with thread-id with 32bits MSB (neg. int)
9.9.7 100215 fix X.c: breaking retrial of SockMux over YYMUX
9.9.7 100214 new {X,service}.c: -yyco and -yyac to apply YYMUX for any protocol
9.9.7 100214 new X.c: FTP PASV over YYMUX (as a sub-channel in YYMUX)
9.9.7 100214 mod X.c: removing duplicated dir. in PATH env.
9.9.7 100214 mod ftp.c: don't YYMUX data-conn. if cntrl-conn. is not via YYMUX
9.9.7 100214 fix ftp.c: coped with FTP ABOR (EINTR) via YYMUX
9.9.7 100213 fix X.c: fixed ftp-data conn. failure after YYMUX resumption
9.9.7 100213 fix X.c: fixed salvaging client-side list of active YYMUX sessions
9.9.7 100213 fix X.c: fixed resumption by a YYMUX client with YYMUX=host:port
9.9.7 100213 fix {conf,file}.c: finding full-path of executable (not directory)
9.9.7 100213 fix dgsign.c: loop in getting the MD5 of exec. (reading from dir.)
9.9.7 100213 new X.c: relaying OOB over YYMUX
9.9.7 100212 new X.c: X DISPLAY in AF_UNIX (-yxu) /tmp/.X11-unix/Xd DISPLAY=:d
9.9.7 100212 fix X.c: loop in SERVER=y11 + -Fy11 : xcom (pre24 DISPLAY, chain)
9.9.7 100212 new X.c: supported relaying FTP PORT connections on a YYMUX
9.9.7 100212 new inets.c: RESOLV="+" to detect auto. default even with -Fxxx
9.9.7 100211 mod inets.c: no resolver checking with WWW.DeleGate.ORG for -Fxxx
9.9.7 100211 mod inets.c: disabling RES_ORDER env. when RESOLV is specified
9.9.7 100211 new X.c: chaining X DISPLAY through chained yysh
9.9.7 100209 new X.c: enabled YYMUX resumption with auth. in Credhy
9.9.7 100209 fix X.c: resumption of YYMUX over YYSH with auth.
9.9.7 100209 fix X.c: fixed resumption of YYMUX for -Fyysh -yy or -yx
9.9.7 100209 new X.c: enabled STARTTLS (negotiated SSL) for YYSH (-ys)
9.9.7 100208 fix X.c: waiting YYMUX fin. over YYSH proxied by YYMUX
9.9.7 100208 fix X.c: don't start YYMUX serv. over YYSH in version mismatch
9.9.7 100207 fix X.c: terminating waiting YYMUX proxy on server-side disconn.
9.9.7 100206 new X.c: enabling Y11 over yysh (-yx) and YYMUX over yysh (-yy)
9.9.7 100206 fix X.c: coped with repetitive X connections more than 128th
9.9.7 100205 fix delegated.c: don't be Sticky with -Q6023/yysh SERVER=http
9.9.7 100204 fix {X,netsh}.c: freezing on SSL req. to non-SSL yysh serv./Win32
9.9.7 100204 fix spinach.c: fixed SEGV on accept() error by uninit. ptr.
9.9.7 100204 fix master.c: fixed SEGV in SockMux as a thread on OSF1/ALPHA
9.9.7 100204 fix X.c: applying SSL for YYMUX on a retrial in resumption
9.9.7 100203 new X.c: added Credhy key agreement + Authorization: Credhy-Basic
9.9.7 100203 new X.c: enabled YYCONF="SHELL:/bin/tcsh -l" "bash -l" or so
9.9.7 100203 fix {http,iotimeout}.c: TIMEOUT=io:0 caused unconditional timeout
9.9.7 100202 fix X.c: don't block disconn. of the YYSH conn. by b.g. proc.
9.9.7 100202 new X.c: smaller YYMUX buffer for yysh (Y-Max-Pending: nego.)
9.9.7 100202 new {_-select,_-poll}.c: PollIns immediate timeout by TIMEOUT_IMM
9.9.7 100202 fix X.c: fixed unfair YYMUX scheduling for input from FILE
9.9.7 100131 new passwd.c: trying getlogin() if getpwuid() is unavail.(MacOSX)
9.9.7 100130 fix *.{hc}: SEGV by 64bit data (as ptr.) with format spec as "%X"
9.9.7 100129 fix ystring.h: logging output (double float) on OSF/1 + ALPHA
9.9.7 100129 mod {dgforkpty,netsh}.c: minimum binary of dgforkpty.exe
9.9.7 100128 fix service.c: SEGV at start by fdopen() err. on unavail. mem.
9.9.7 100128 fix X.c: fixed SEGV by fd jamming with multi-threads (-d1+N)
9.9.7 100127 fix X.c: fixed the leak of memory and FILEs in SERVER=yymux
9.9.7 100127 fix netsh.c: exit on remote shutdown with dgforkpty
9.9.7 100126 new X.c: yysh with JP CHARCODE conv. (-je -ju -js -jj -jt)
9.9.7 100126 fix {netsh,windows}.c: no console win. for yysh win32-dg.exe
9.9.7 100126 fix netsh.c: dgforkpty.exe under dir. name including space
9.9.7 100126 new X.c: YYCONF=HOME:/home/user and YYCONF=SHELL:/bin/sh
9.9.7 100124 mod svconf.c: the default port# of yymux = 6060/TCP (<= 6011)
9.9.7 100124 fix netsh.c: terminating bash/CYGWIN on remote shutdown
9.9.7 100124 fix X.c: fixed YYMUX resumption error
9.9.7 100124 new X.c: introduced -Fyy yy:command together with SERVER=yy
9.9.7 100123 new X.c: internal yy commands {.lst .get .put .add} for yysh
9.9.7 100123 new X.c: serving as SERVER=yysh by SERVER=yymux
9.9.7 100123 new X.c: enabled YYMUX with -Fy11
9.9.7 100122 new X.c: supported YYMUX via SOCKS
9.9.7 100122 new netsh.c: key-input '~' followed by '.'
9.9.7 100121 new X.c: added AUTHORIZER SERVER=yysh and MYAUTH=user:pass:yysh
9.9.7 100121 fix {netsh,X}.c: sending window size change (in Telnet command)
9.9.7 100119 fix netsh.c: SEGV on OSF/1 and KuroBox (don't do syslog/daemonlog comsuming large stack in child thread)
9.9.7 100119 new netsh.c: pty/Win32 by dgforkpty/CYGWIN + DeleGate/Win32
9.9.7 100117 new dgforkpty.c: doing forkpty() in root privilege (for KuroBox)
9.9.7 100117 fix __forkpty.c: enabled forkpty() for NetBSD and OpenBSD
9.9.7 100117 new sgTTy.c: set/get tty mode and size (extracted from COSMOS)
9.9.7 100116 new X.c: yysh for Win32 (without tty control)
9.9.7 100115 new X.c: enabled -Fyysh host:port".ssl"
9.9.7 100115 fix X.c: YYMUX closing on YYCONNECT error
9.9.7 100114 new master.c: -Pxxxx in srcList of FORWARD=url-_-p:d:srcList
9.9.7 100114 new {inets,ftp}.c: relaying ftp-data conn. (PASV) via YYMUX
9.9.7 100114 fix {stls,service}.c: relaying ftp-data conn. as a MASTER over ssl
9.9.7 100114 fix {ftp,socks}.c: ftp-data conn. via upstream SOCKS over ssl
9.9.7 100114 new delegated.c: redirecting stdin in service to NUL (-Eni)
9.9.7 100113 fix delegated.c: stdout/stderr in service on Win32 (enbug -Bse)
9.9.7 100113 new delegated.c: added STDOUTLOG=file-pattern
9.9.7 100112 fix service.c: SERVER=Any with -Pxxx/delegate as SERVER=delegate
9.9.7 100112 new master.c: FORWARD=p://h:p/ssl and ROUTE=p://h:p/ssl
9.9.7 100112 new socks.c: enabled SOCKS=h:p/ssl or SOCKS=h:p/-5/-r/ssl
9.9.7 100112 new {X,master,service}.c: enabled YYMUX=h:p/ssl MASTER=h:p/ssl
9.9.7 100112 new {filter,stls,svport}.c: introduced -Pxx/ssl or -Pxx/proto/ssl
9.9.7 100111 new X.c: SERVER=yysh as a remote shell
9.9.7 100111 new {telnet,netsh}.c: SERVER=telnet://yytelnet.-
9.9.7 100110 new {ftp,ftpgw}.c: enabled HTTP MOUNT or -Fdget for ftps/STLS
9.9.7 100110 new service.c: enabled STLS=fsv:proto with MASTER
9.9.7 100109 fix stls.c: don't apply SSL for ftp-data with STLS=fsv:ftp
9.9.7 100109 fix delegate.h: multi-thread safe protocol conditional STLS
9.9.7 100109 fix filter.c: STLS=fsv:ftp,ftp-ddata matching (enbug "-Bsp")
9.9.7 100109 fix X.c: immediate shut on remote X command error
9.9.7 100109 new X.c: relaying stdin from local to remote X command (Unix)
9.9.7 100109 new X.c: relaying stdout from remote X command (on Unix only)
9.9.7 100109 fix X.c: 1st invocation freezes by an un-init. flag (pre20)
9.9.7 100108 fix X.c: waiting process with LinuxThreads (RedHat6,7,Vine4)
9.9.7 100108 new X.c: relaying stderr from remote X command (on Unix only)
9.9.7 100108 fix X.c: passing arguments to remote X command (pre19)
9.9.7 100107 new X.c: salvaging dangling processes at server-side
9.9.7 100107 new X.c: conditional/multiple YYMUX=host[:port[:proto:dst:src]]
9.9.7 100107 fix dget.c: enabled -Fdget STLS=fsv:proto with SOCKS
9.9.7 100107 fix socks.c: enabled SERVER=proto STLS=fsv:proto with SOCKS
9.9.7 100107 new X.c: enabled MYAUTH=user:pass:yymux (or y11)
9.9.7 100107 new X.c: enabled AUTHORIZER (Basic) for SERVER=yymux (or y11)
9.9.7 100107 fix X.c: breaking Sticky on SIGTERM with YYMUX
9.9.7 100106 fix {http,socks5,dget}.c: shutting YYMUX chan. normally on exit
9.9.7 100106 fix {ftp,nntp,pop,imap}.c: shutting YYMUX normally on SIGTERM
9.9.7 100106 fix nntp.c: SEGV in "ondemand" server (9.9.5)
9.9.7 100106 new X.c: supported STLS=fsv for YYMUX=server and -Fy11
9.9.7 100106 new X.c: supported STLS=fcl for SERVER=yymux and SERVER=y11
9.9.7 100106 new X.c: immediate rejection based on client's address
9.9.7 100105 new X.c: using DISPLAY env. as a local X server for Y11
9.9.7 100105 fix vsaddr.c: coped with =XXXX in .af-local (%3A0.launch-xxx...)
9.9.7 100105 fix X.c: yyMux trying relaying SHUT on SIGINT to YYproxy
9.9.7 100105 fix X.c: yyMux resuming via YYproxy
9.9.7 100103 fix X.c: yyMux start resuming after long idle with periodic ping
9.9.7 100102 fix X.c: yyMux coped with SIGPIPE for other thread with -d1+N
9.9.7 100102 fix X.c: yyMux resuming with non SERVER=yy (SERVER=http -Qxxx/yy)
9.9.7 100102 fix X.c: swift and normal exit on remote shutdown (on Win32)
9.9.7 100101 fix X.c: cleaning file and thread (for -d1+N multi-threads mode)
9.9.7 100101 fix X.c: swift but normal exit on local X process termination
9.9.7 091230 new X.c: YYMUX=host:port and CONNECT=y to connect via YYMUX serv.
9.9.7 091229 new X.c: -Fyy px//sv with SERVER=yymux to be used like -Fconnect
9.9.7 091229 new X.c: SERVER=yymux with resumption to replace SERVER=tcprelay
9.9.7 091227 new X.c: resending dropped data after resuming the Y11 connection
9.9.7 091226 new {yshell,wince}.c: HTTP based remote desktop controler for Win
9.9.7 091225 mod {http,master}.c: don't reject access to self by REMITTABLE=proto/port MountOption
9.9.7 091225 new wince.c: win32-dg.exe added -Q443/https on Win32
9.9.7 091225 new wince.c: win32-dg.exe enabled https://host/-/screen/ on Win32
9.9.7 091225 mod wince.c: win32-dg.exe force new console with -WC on Win32
9.9.7 091225 fix {windows,ystring}.c: coped with non-ASCII stat() and fopen()
9.9.7 091224 fix windows.c: broken environ. with non-ASCII value (dir. name)
9.9.7 091224 fix X.c: immediate exit and Y11 reset on X command error
9.9.7 091223 new wince.c: making process list on Win32
9.9.7 091223 new windows.c: X clients in b.g. without console and sockets
9.9.7 091222 new wince.c: "-WW" to force to be windows app.
9.9.7 091222 new wince.c: "-WC" to have console and "-WCA" for console app.
9.9.7 091222 new wince.c: assigning a console to win32-dg.exe
9.9.7 091222 new wince.c: win32-dg.exe with "SERVER=" as a console app.
9.9.7 091222 new wince.c: win32-dg.exe with "-F", "-f" as a f.g. console app.
9.9.7 091222 fix delegated.c: returning exit(code) from -Ffunc
9.9.7 091222 new X.c: -Fy11 {-ys|-yc} for Y11 coupler (Y11CQ)
9.9.7 091221 new X.c: rejecting command not begin with "x" nor include "X11"
9.9.7 091220 new X.c: interpretive Y11 proxy to detect non-Y11 protocol
9.9.7 091220 new X.c: proxying by -Fy11 "proxy//server"
9.9.7 091220 new X.c: local X client on the remote X server (-Fy11 : command)
9.9.7 091220 fix X.c: trial to close X for bash/xterm on CYGWIN
9.9.7 091218 mod X.c: STREAM buffered input from the multiplexed connection
9.9.7 091218 new X.c: version negotiation header "Y-Version:Y11R1"
9.9.7 091218 fix X.c: loop on EOS from X client (unsigned int)
9.9.7 091217 fix svport.c: enabled -Q1234/off in common.conf[.txt]
9.9.7 091217 new X.c: added a protocol to exchange the amount of pending data
9.9.7 091217 fix X.c: fixed getting broken packet on partial header recept
9.9.7 091217 fix X.c: SEGV on trial of reading huge data (invalid packet)
9.9.7 091217 fix X.c: fixed removing additional windows (relaying reset)
9.9.7 091217 fix X.c: fixed broken Y11 after an additional window connection
9.9.7 091217 fix {__pthread_create,__pthread_kill}.c: for AIX with -DQSC
9.9.7 091217 fix {___beginthread,__lwp_create,___lwp_create}.c: disabled
9.9.7 091217 fix pop.c: fixed POP proxy with AUTHORIZER=-man (9.9.6-pre7)
9.9.7 091216 fix _-strcasestr.c: a fix for AIX with -DQSC <Antonio>
9.9.7 091216 new X.c: made RELAY=y11 mandatory to work as a Y11 proxy
9.9.7 091216 fix {_-strcasestr,yp_match}.c: building with -DQSC on CYGWIN
9.9.7 091216 fix X.c: fixed freezing on a fast initial packt from X client
9.9.7 091216 new X.c: proxying Y11 by "Y11 y11://host:port/xcommand HTTP/1.1"
9.9.7 091215 fix *.c,file.h.c: huge empty file with -DSTAT64 -DQSC <suzuki_h>
9.9.7 091214 fix X.c: fixed SERVER=x://-.- and added SERVER=x://x.-
9.9.7 091214 fix file.h: coped with -DSTAT64 without C++ on Linux <suzuki_h>
9.9.7 091213 new X.c: enabled multiplexing a Y11 connection
9.9.7 091213 new X.c: SERVER=x://-.- to export the local X server
9.9.7 091212 new X.c: introduced "Y11" protocol, SERVER=y11 and -Fy11
9.9.7 091212 fix filter.c: fixed waiting filter command on Win32
9.9.7 091212 new vsaddr.c: =XX in .af-local (X://X0.=2EX11-unix.tmp.af-local)
9.9.7 091210 fix cgi.c: added unsetenv() declaration for HP-UX
9.9.7 091210 fix builtin.c: added allow_unaligned_data_access() for HP-UX cc
9.9.7 091210 fix spinach.c: fixed undef. ptr ref. on accept() err. in "http-sp"
9.9.7 091209 fix *.c: send_file() to Send_file() for AIX with -DQSC (9.0.5)
9.9.7 091209 fix ystring.h: enlarged CriticalSec & heapLock (32*(void*) <- 16*)
9.9.7 091209 fix {http,gethostbyname2,_-sysconf}.c: -DQSC on HP-UX (__hpux)
9.9.7 091207 fix spinach.c: binary POST over "http-sp"
9.9.7 091207 mod win32-dg.res: embedded icon of DeleGate
9.9.7 091205 fix windows.c: fixed waiting thread with timeout on Win32
9.9.7 091204 new wince.c: ported WinCE-version to Win32
9.9.7 091203 fix nbio.c: inf. "OOB?" on WinCE for CONNECT on -Q80 (9.9.6-pre2)
9.9.7 091203 fix mkmake.c: adding "-lm" in the detection of CC cap. on NetBSD
9.9.7 091202 fix _-strcasestr.c: for make with -DQSC on HP-UX
9.9.7 091202 new thmain.c: doing accept() by a single thread with -d1+N (WinCE)
9.9.7 091202 fix sslway.c: fixed host name for TLSxSNI to MOUNTed server <rauh>
9.9.6 091201 fix spinach.c: SEGV or broken logging on KuroBox "http-sp" (VARGS)
9.9.6 091129 fix sftp.c: coped with ABOR in LIST over sftp/FTP
9.9.6 091127 fix sftp.c: coped with slow resp. for LIST over sftp/FTP <vijay>
9.9.6 091127 fix Makefiile: don't use "-MT" option for CC on Unix
9.9.6 091126 new http.c: "-Ess" to reject non-HTTPS/SSL client via SSLtunnel
9.9.6 091126 fix delegated.c: clean-up X/Telnet sess. at Telnet fin.(9.9.5 -Xi)
9.9.6 091125 new pop.c: enabled AUTHORIZER for POP with "-map"
9.9.6 091125 new access.c: introduced AUTHORIZER=-map{inPat}{localPat}{fwdPat}
9.9.6 091123 fix mkmake.c: getting -DQSC in DELEGATE_CONF
9.9.6 091123 fix strcasestr.c: with -DQSC on Solaris
9.9.6 091123 fix file.h: -DQSC with -DSTAT64 on Linux <suzuki_h>
9.9.6 091122 new Makefile.QSC: a makefile to comple DeleGate without C++
9.9.6 091122 fix mkmake.c: fixed detection of avail. of ##,__VA_ARGS__
9.9.6 091122 fix mkmake.c: seeing LDFLAGS (as -MD) to detecting avail. lib.
9.9.6 091121 fix snprintf.c: for OSF/1 without snprintf()/vsnprintf()
9.9.6 091121 new ystring.h: making without C++ (with -DQSC)
9.9.6 091120 fix *.c: for compilation on OSF/1 (with -DNONCPLUS)
9.9.6 091120 fix inets.c: fixed SEGV in http-sp and -Ecc on Win32 (pre3)
9.9.6 091119 mod http.c: encoding the 405 response in quoted-printable
9.9.6 091119 new yshell.c: matching by AUTHORIZER="authServ:ysh:-:-Qxxxx"
9.9.6 091119 new conf.c: "-Dam" to disable auto. MAXIMA=delegated:N adjusting
9.9.6 091119 fix delegated.c: fixed SEGV on "/-/admin/logging" without -d1
9.9.6 091119 fix fpoll.c: compilation on Solaris10/SPARC with -m64 <fmontiton>
9.9.6 091118 mod syslog.c: erasing duplicated lines
9.9.6 091118 mod pam.c: trying dl-version of PAM (disabled by -Dpd)
9.9.6 091117 new sslway.c: cert. by addr. as CERTDIR/sa.xx.xx.xx.xx.pem
9.9.6 091117 new caps.c: notice about how to repaire "seems interpolated"
9.9.6 091117 fix unsetenv_.c: unsetenv() for c++ / Solaris9 (9.9.4)
9.9.6 091116 new spinach.c: timeout of slow resp. and long idle keep-alive
9.9.6 091114 new spinach.c: faster Time() with GetTickCount() on WinCE
9.9.6 091114 fix spinach.c: don't timeout client-req. for Ecc (pre2)
9.9.6 091113 fix wince.c: removed useless log for close() and time() on WinCE
9.9.6 091112 new access.c: added AUTHORIZER="-fwd,..." to forward auth.
9.9.6 091112 new ftp.c: introduced MountOption "servon={init,user,pass}"
9.9.6 091111 new {inets,spinach}.c: sorting HOSTS cache by access frequency
9.9.6 091110 new {access,ftp}.c: introduced AUTHORIZER="-strip{@},..."
9.9.6 091110 fix httphead.c: SERVER=http://odst.-:- with PROXY <NoSFeRaTU>
9.9.6 091109 new spinach.c: /-/ysh/spinach to control spinach
9.9.6 091108 fix spinach.c: mutex among socket(),accept() and close()
9.9.6 091106 new spinach.c: connection timeout for idling client and server
9.9.6 091105 new spinach.c: flush pending input before doing close() socket
9.9.6 091104 new ident.c: "-DId" to completely disalbe the Ident protocol
9.9.6 091104 fix sox.c: fixed possible dup. invocation of closeQ() thread
9.9.6 091103 new nbio.c: implemented IsAlive() detection on WinCE
9.9.6 091102 new spinach.c: timeout for waiting request from a client
9.9.6 091102 new spinach.c: avoided delay in close() by select() peer's reset
9.9.6 091101 fix spinach.c: fixed stall in select() after connection error
9.9.6 091031 new spinach.c: sharing and reusing buffers between relays
9.9.6 091030 fix spinach.c: coped with "Proxy-Connection" (as Safari)
9.9.6 091028 fix spinach.c: disconn. client imm. after conn. err. to server
9.9.6 091027 fix spinach.c: discard dangling results from "Resolver" (pre2)
9.9.6 091026 fix spinach.c: fixed to close socket left after connection failure
9.9.6 091026 fix _-select.c: relaying OOB on Win32 (for Telnet)(9.4.0-pre4)
9.9.6 091025 fix spinach.c: fixed loop+stall on immediate connection failure
9.9.6 091024 fix spinach.c: immediate sweep of closed server in keep-alive
9.9.6 091023 new spinach.c: closing sockets by a background thread "Closer"
9.9.6 091023 new spinach.c: added a background thread for "Resolver"
9.9.6 091015 new sftp.c: "-Esf" applying SOCKS, SRCIF,... for conn. to sftp/SSH
9.9.6 091015 new smtp.c: SMTPCONF="bcc:x@y:*" or CMAP="x@y:SMTPBCC:*:*:*"
9.9.6 091010 fix hostlist.c: "-EHa" for access control for multi-homed host
9.9.6 091006 fix ystring.c: SEGV in dir. under /-/admin/ (9.9.4-pre11)<rghetta>
9.9.6 091004 fix caps.c: CAPSKEY for Win2K without a ServicePack
9.9.6 091002 fix spinach.c: "http-sp" file-descriptor jamming after recv()==0
9.9.5 090929 fix spinach.c: fixed thread-stack shortage in "http-sp" and -Ecc
9.9.5 090928 fix spinach.c: "http-sp" stall on long req. (head. or POST body)
9.9.5 090926 fix spinach.c: waiting HTTP req. EOH before resp. in "http-sp"
9.9.5 090926 fix {http,htmlgen}.c: putting vhost URL in "protocol error" mssg.
9.9.5 090925 new nntp.c: enabled MYAUTH=user:pass:nntp
9.9.5 090925 fix nntp.c: postpone the conn. to server with auth. <florent>
9.9.5 090924 new spinach.c: "http-sp" reusing keep-alive serv. on client reset
9.9.5 090923 fix nntp.c: fixed loop in hostcmpX() without NNTPCONF="ondemand"
9.9.5 090923 fix _-mutex.c: revival of mutex on Unix (9.9.4-pre9)
9.9.5 090923 new nntp.c: added GROUP cache (not by ACTIVE LIST cache)
9.9.5 090920 new nntp.c: introduced NNTPCONF="ondemand" and MountOption
9.9.5 090918 fix smtp.c: EHLO before STARTTLS for SERVER=smtp://serv STLS=fcl
9.9.5 090917 fix socks5.c: SEGV by RES_NS=x.x.x.x//y.y.y.y on SOCKS err.(9.8.2)
9.9.5 090917 new socks5.c: SRCIF=clif.-:0:socks-udp-tocl not to retry bind()
9.9.5 090917 new socks5.c: SRCIF=0.0.0.0:0:socks-udp-tosv to be RFC compliant
9.9.5 090917 fix socks5.c: coped with UDP ASSOC with DST.ADDR/PORT = 0.0.0.0:0
9.9.5 090917 fix spinach.c: don't reset clnt unexp. on unknown serv. or timeout
9.9.5 090916 new spinach.c: suported connection-timeout in "http-sp"
9.9.5 090915 new spinach.c: light select/read/write by cached handle/fd on Win
9.9.5 090915 new wince.c: auto. SYSLOG to 192.168.*.255 if exists
9.9.5 090914 fix smtpgate.c: coped with CAPSKEY request in quoted-printable
9.9.5 090913 fix spinach.c: /-/builtin/icons/ for "http-sp"
9.9.5 090913 fix iotimeout.c: removed overhead by fgetBuffered() on WinCE
9.9.5 090913 fix wince.c: fixed lost data by freadTIMEOUT() on WinCE
9.9.5 090913 fix wince.c: implemented fgetsByBlock() from tmpfile() on WinCE
9.9.5 090911 new spinach.c: enabled FTP/HTTP gw. by "http-sp" (with -d1+N)
9.9.5 090910 fix iotimeout.c: fixed slow cache read on Win (0.2sec. / 4KB text)(9.9.1-pre5)
9.9.5 090910 fix http.c: coped with thread-gzip on Win95 (poll for pipe)
9.9.5 090910 fix windows.c: coped with mutex on Win95 (no TryEnterCriticalSec.)
9.9.5 090910 fix windows.c: coped with thread waiting on Win95 (negative tid)
9.9.5 090910 new ftp.c: added FTPCONF="nopasv,doepsv" to accept EPSV only
9.9.5 090910 fix http.c: fixed possible SEGV in a single-process mode (-d1)
9.9.5 090909 fix http.c: frozen gzip thread on Win2K (9.8.2-pre15)<T.Akiyama>
9.9.5 090908 new ftp.c: added FTPCONF=noepsv to stop announcement of EPSV
9.9.5 090907 mod wince.c: changed to "-Q8080/http-sp" from "-Q8080/http" (dflt)
9.9.5 090906 new inets.c: "-Edr" to set DONTROUTE to local-segment (WinCE)
9.9.5 090906 new spinach.c: supported dial-up on connect() failure in "http-sp"
9.9.5 090905 fix resolv.c: "-Ens" to inactivate (sorting) no-resp. DNS server
9.9.5 090901 mod wince,winmo.c: displaying IP-address of WiFi and Modem at HOME
9.9.5 090901 new spinach.c: pool and reusing HTTP server in keep-alive
9.9.5 090829 fix http.c: has been so slow for 304 resp. with Content-Length in proxy keep-alive with Safari (-Bcs)
9.9.5 090829 fix spinach.c: supported switching servers in a keep-alive client
9.9.5 090829 fix spinach.c: http-sp relay after immediate connect() success.
9.9.5 090827 fix delegated.c: finishing f.g. -d1+N on Win32 (before WinXP/SP2)
9.9.5 090827 fix windows.c: fixed http://WinCE/-/screen/ + gzip (9.9.4-pre8)
9.9.5 090826 fix http.c: fixed truncation by bad Content-Length in gunzip/FTOCL
9.9.5 090825 new svconf.c: "http-sp" for HTTP simplified proxy instead of "ecc"
9.9.5 090823 new spinach.c: -Ecc option for multi-session threads(-d1+N)(WinCE)
9.9.5 090823 new spinach.c: adding lacking Host: header in HTTP/ecc relay
9.9.5 090823 new spinach.c: added -Q8888/ecc for WinCE
9.9.5 090822 fix http.c: revival of HTTP for WinCE (9.9.4-pre10)
9.9.5 090821 fix htaccept.c: possible freeze in restart on HTMUX server reboot
9.9.5 090820 mod ftp.c: "-Efp" reusing the same port num. for PASV repetitively
9.9.5 090819 fix src/Makefile: upd. ADMIN in auto. -Fimp from src/DELEGATE_CONF
9.9.5 090819 new delegated.c: "-Xi" to force imm. _exit() on SIGTERM
9.9.5 090819 fix delegated.c: Telnet server stopped with "x" (9.8.2)<castillon>
9.9.5 090819 fix delegated.c: X/Telnet does not start without built-in ADMIN
9.9.5 090818 fix ftp.c: don't reuse PASV port disconnected by the client
9.9.5 090817 new inets.c: -Dfb to suppress binding port# in FTP PASV client
9.9.5 090815 new ystring.c: -dr to test error code(return value) from functions
9.9.5 090815 fix delegated.c: possible SEGV in execFunc() to "%X" on Win64
9.9.5 090815 fix *.c: possible SEGV with printf/scanf "%X" for 64bits pointer
9.9.5 090814 fix htmlgen.c: fixed SEGV with verify=crc32 MountOption
9.9.5 090813 fix notify.c: fixed SEGV on notifying ABORT on 64bits ptr. CPU
9.9.5 090813 fix *.c: clean up of warnings by recent gcc (char* to const char*)
9.9.5 090812 new {mount,sslway}.c: introduced "sni=hostname" MountOption
9.9.5 090811 fix Strftime.c: imm. _exit() on SIGTERM in localtime()
9.9.5 090810 fix sysconf.h: enabled pthread on NetBSD and OpenBSD
9.9.5 090809 fix log.c: fixed duplicate free() with "-dp" (9.8.2-pre19)
9.9.5 090808 fix dl.c: modified dlopen() to cope with loading SSL on OpenBSD
9.9.5 090806 mod delegate.h,http.c: coped with compilation on AIX
9.9.5 090807 fix httpd.c: right finalizing client-context from MOUNT for ".dgp"
9.9.5 090805 fix delegated.c: fixed possible freezing with RIDENT=client
9.9.5 090805 new {delegated,caps}.c: new client counter on shared memory (-Esc)
9.9.5 090804 fix pstitle.c: removing spaces in pstitle on MacOSX (Darwin/9)
9.9.4 090729 fix delegated.c: closing PORT=xxx on SIGTERM (for SockMux -r)
9.9.4 090729 fix Thread.c: fixed SEGV by thread-id overflow on 64bits OS
9.9.4 090729 fix http.c: repaired client-side keep-alive in MITM
9.9.4 090729 fix ddi.c: leak/SEGV in FSV SSLway thread in MITM in keep-alive
9.9.4 090729 fix http.c: fixed leak of zombi SSLway thread for FSV in MITM
9.9.4 090728 fix distrib.c: fixed possible file-desc. jam. in multi-threads
9.9.4 090727 mod master.c: allowing group-ID 3(sys) to do SUDO and OWNER
9.9.4 090727 fix delegated.c: immediate _exit on SIGQUIT with pending Xf
9.9.4 090726 fix ystring.c: immediate _exit on signal in Xmalloc()
9.9.4 090726 fix filter.c: forcing safe putenv() "-Ete" for SSLway (pre11)
9.9.4 090725 fix Strftime.c: fixed freezing in localtime() in SSL thread
9.9.4 090724 fix Thread.c: SEGV in thread_wait broken id on 64bits OS (9.9.3)
9.9.4 090720 fix ftp.c: disabling PORT to serv. from PASV with FTPCONF=noport
9.9.4 090720 mod inets.c: stop retrial with SRCIF="*:0:ftp-data-pasv-src"
9.9.4 090717 new inets.c: -Dfb to disable retrying conn. with binding <Benawi>
9.9.4 090713 fix ystring.h: platform independent strcasestr() <iijimak>
9.9.4 090712 fix ystring.c: suppressed Xfflush(fp) for fileno(fp)<0
9.9.4 090711 fix master.c: fixed freezing in the negotiation for SSLtunnel
9.9.4 090711 fix filter.c: auto. "-Ete" for SSLway environ. to avoid SEGV
9.9.4 090709 fix stls.c: frozen in MITM waiting req. from disconn. SSL/fcl.
9.9.4 090707 fix gzip.c: imm. _exit on SIG in gzdopen()/non-dgzlib(Zlib-DGv3)
9.9.4 090705 fix {http,file}.c: imm. _exit() on SIGTERM with pending Xfputs()
9.9.4 090705 fix shutter.c: fixed freezing in mutex/localtime() on SIGSEGV
9.9.4 090704 fix log.c: freezing on signal in exit() on Fedora10 with SELinux
9.9.4 090701 fix http.c: applying X-Request: for FTOCL (9.2.3)<Hansen>
9.9.4 090628 fix log.c: ignore signals during exit() doing flushlbf()
9.9.4 090627 fix {http,file}.c: imm. _exit on SIGTERM with pending Xfclose()
9.9.4 090627 new env.c: "-Dts" to disable MTSS (multi-thread safe signal)
9.9.4 090627 fix forkspawn.c: uGetpid() unique among threads on LinuxThreads
9.9.4 090626 fix ystring.c: protected Xputenv() from signals
9.9.4 090625 fix delegated.c: freezing after longjmp/SIGALRM in SIGPIPE handler
9.9.4 090625 fix __sigaction.c: make with CFLAGS=-g (without -O)
9.9.4 090625 fix file.c: fixed frozen mutex by longjmp on signal in fclose()
9.9.4 090623 fix {forkspawn,abort}.c: simply exit() for abort() during fork()
9.9.4 090623 fix delegated.c: fixed SEGV on disk-full (detecting ENOSPC/fwrite)
9.9.4 090623 fix nbio.c: coped with signal (SIGPIPE) in PollIn() for IsAlive()
9.9.4 090622 fix cgi.c: fixed SEGV on SSLway (auto. on FreeBSD-7 or "-Ete")
9.9.4 090621 fix process.c: fixed SEGV in ResponseFilter on SIGTERM (FreeBSD)
9.9.4 090621 new Strftime.c: "-Etm" to force self-made gmtime() and localtime()
9.9.4 090621 fix __pthread_create.c: SEGV on thread_wait non-existent 64bits id
9.9.4 090621 new Strftime.c: self-made signal safe gmtime() and localtime()
9.9.4 090620 fix delegated.c: fixed SEGV+freeze on writing to mmap on disk-full
9.9.4 090620 mod {delegate,log}.c: blocking all lputLog() in the parent process
9.9.4 090618 fix forkspawn.c: made Fork() atomic not to be interrupted
9.9.4 090618 fix delegated.c: fixed freezing on exit with active Sticky
9.9.4 090618 fix Thread.c: inherit CSC-SSigMask enabled in parent to children
9.9.4 090618 fix delegated.c: SEGV by delayed longjmp into ended EXEC_client()
9.9.4 090615 fix _-mutex.c: initializing mutex/CSC after fork()
9.9.4 090614 fix ysignal.h: signal blocking for multi-thread CSC by SSigMask
9.9.4 090613 fix Thread.c: reduced needless mutex for threadidx (without -dN)
9.9.4 090612 fix sslway.c: immediate thread_exit from SSLway thread on SIGTERM
9.9.4 090612 fix {delegated,filter}.c: detecting SIGTERM in waiting SSL thread
9.9.4 090612 fix ystring.c: blocked Xsprintf and Xfread from interrupt
9.9.4 090611 fix ystring.c: blocked Xfree and Xmalloc from interrupt by signal
9.9.4 090611 fix cgi.c: fixed broken SSL environ var. on interrupt
9.9.4 090611 fix Strftime.c: fixed frozen gmtime() in interrupted localtime()
9.9.4 090611 fix http.c: reduced needless mutex for HTTP (without -dN)
9.9.4 090611 fix log.c: blocked fputLog() from interrupt (not to freeze)
9.9.4 090611 fix forkspawn.c: fixed frozen Fork() with threads on interrupt
9.9.4 090610 fix Thread.c: timeout CSC to avoid "spin_lock" on signal (9.8.2)
9.9.4 090609 fix subin/install.sh: for FreeBSD and Solaris10
9.9.4 090608 fix subin/install.sh: added lib. for CHROOT on Linux
9.9.4 090607 new mount.c: matching with the host in Referer: by udst={Hosts}
9.9.4 090607 fix htccx.c: don't scan META in ResponseFilter for non-HTML
9.9.4 090604 new mount.c: MOUNT to rewrite Referer ("where=ref" MountOption)
9.9.4 090603 fix filter.c: broken/frozen CFI output/input with "-fv" option
9.9.4 090602 fix http.c: don't buffer POST body with FTOSV CFI <ogawa>
9.9.4 090531 fix cache.c: fixed broken FTP cache on parallel cache updates
9.9.4 090529 new dget.c: showing MD5 in -Fdget (with -Emi)
9.9.4 090529 new ftp.c: logging MD5 in xferlog as size.md5 (with -Emi)
9.9.4 090531 mod http.c: disabled chunked enc. for PowerSketch/Viewer <yito>
9.9.4 090528 new filter.c: added ORIGINAL_SERVER_NAME/PORT for NAT <venere>
9.9.4 090528 fix Makefile: making under a dir. with space char. in the name
9.9.4 090528 fix service.c: re-enabled SERVER=exec (9.8.6-pre1)<venere>
9.9.4 090526 fix spinach.c: -Ecc don't reuse serv. of diff. port via SOCKS
9.9.4 090525 new spinach.c: SERVER=ecc as a tiny and simple HTTP proxy
9.9.4 090524 fix http.c: Connection: "closed" to "close" (9.6.2)
9.9.4 090523 fix spinach.c: fixed frozen -Ecc process on client-side reset
9.9.4 090521 new {ftp,stls}.c: STLS=fsv,im0.5 for timeout of implicit FTPS
9.9.4 090521 new anonymous-*.pem: new builtin certificate for anon. users
9.9.4 090520 fix admin.c: /-/admin Directory viewer for file largher than 2GB
9.9.4 090519 new ftp.c: connecting to FTPS server via FTP proxy with STLS=fsv
9.9.4 090518 fix fstat.c: displaying/sorting files largher than 2GB
9.9.4 090518 fix spinach.c: disabled -Ecc for FTP (for PORT)
9.9.4 090515 new admin.c: implemented {next,prev} in /-/admin/ file viewer
9.9.4 090514 fix smtp.c: fixed SEGV on SMTPCONF=reject:nomx (9.2.4)<osamura>
9.9.3 090509 mod spinach.c: -Ecc don't reuse connection for POST method
9.9.3 090509 fix spinach.c: fixed -Ecc frozen on EAGAIN to server-bound data
9.9.3 090506 fix dget.c: retrial on disconnected keep-alive in -Fdget
9.9.3 090505 mod httpd.c: requires AUTHORIZER for access to /-/bench?
9.9.3 090504 mod nbio.c: removed "SSL record head" in LOGFILE with MITM
9.9.3 090501 fix spinach.c: fixed destroying aborted connections (-Ecc)
9.9.3 090429 new http.c: retrying on 503 or empty response with -Ecc
9.9.3 090427 fix spinach.c: fixed -Ecc infinite loop by PS_HUP/poll()/connect()
9.9.3 090427 fix Thread.c: fixed duplicated thread with -Eti or 64bis (pre2)
9.9.3 090427 mod http.c: suppressed gzip for 404 to be retried
9.9.3 090424 mod http.c: suppressed gzip for slow "push server"
9.9.3 090423 fix {socks,service}.c: enabled -Ecc with PROXY, SOCKS and MASTER
9.9.3 090423 new access.c: conv. AUTHORIZER=-userpass:u:p to -list{u:p}
9.9.3 090423 mod _-select.c: imm. detect conn. reset by PS_PRI on Win32 (-Ecc)
9.9.3 090422 fix delegated.c: frozen ERESTART in foreground/Win32 (9.9.0-pre4)
9.9.3 090422 fix caps.c: enabled -Bx option as a service on Win32
9.9.3 090422 fix caps.c: enabled -Ecc as a service on Win32 and on HUP restart
9.9.3 090422 fix {http,spinach}.c: -Ecc abandon CCSV on incomplete resp. recv.
9.9.3 090420 fix http.c: retrying on server error on reused connection by -Ecc
9.9.3 090420 mod http.c: keep-alive on ContLeng:0
9.9.3 090420 fix http.c: fixed SEGV by duplicate fclose() in MITM
9.9.3 090418 fix nbio.c: fixed frozen MITM (in IsAlive() PollIn()+Peek1())
9.9.3 090416 new mime.c: MIMECONV=alt:flat to enumerate all alternatives
9.9.3 090415 new spinach.c: implemented -Ecc in non-blocking mode
9.9.3 090415 new mime.c: MIMECONV=alt:first to filter out secondary alt.
9.9.3 090414 new access.c: AUTHORIZER=-hostlist/Name with HOSTLIST=Name:List
9.9.3 090410 new spinach.c: new -Ecc option (for shared HTTP conn. cache)
9.9.3 090402 fix http.c: don't rewrite MD5 (9.0.5)
9.9.3 090402 fix http.c: removing "Content-Encoding:x-gzip" after unzip<sasaki>
9.9.3 090401 fix httphead.c: putting Content-MD5 in base64 (not in hex-dec)
9.9.3 090329 fix tcprelay.c: cleaning STLS=fsv SSL thread with SERVER=tcprelay
9.9.3 090329 new {Thread,env,unix}.c: -Eti to force thread-id mapping in 32bits
9.9.3 090328 fix Thread.c: error or SEGV in pthread_join()/thread_wait() with 64bits pthread_t
9.9.3 090322 new distrib.c: introduced MAXIMA=bps:128k as param. and MOUNT opt.
9.9.3 090321 new log.c: sweeping ACTDIR/sockets/* at the start-up or -Fsweepf
9.9.3 090321 fix distrib.c: removing AF_UNIX sockets left under ACTDIR/sockets on HTTP resp. in gzip (9.6.3-pre6)
9.9.3 090317 new master.c: routing by method (FORWARD=p://sv-_-http//POST)
9.9.2 090311 fix String.c: fixed loop in fgetsZ() on NFS ESTALE (9.2.4)<eddie>
9.9.2 090311 fix http.c: don't forbid SSLtunnel by HTMUX=sv with REMITTABLE=+,https (9.9.0-pre1)
9.9.2 090311 fix http.c: don't forbid MITM by RELAY="vhost:http" (pre6)
9.9.2 090310 new reshost.c: "#!max=N" in hosts-file to limit results <guill>
9.9.2 090309 fix url.c: re-enabled RELAY="nojava" (disabled in 7.9.11)
9.9.2 090309 fix conf.c: added RELAY="vhost,nojava:http:{*:80}:.localnet"
9.9.2 090308 mod ftp.c: regarding MOUNT=".. ftps://serv/.." as ftps://serv:990
9.9.2 090307 mod delegated.c: set TLSCONF=shutdown by default for SERVER=ftp
9.9.2 090305 new fstat.c: -Fls -ll -l f1 f2 ... with LSTFMT=%Y/%m/%d-%H:%M:%S
9.9.2 090304 fix caps.c: don't inherit pointer val. in the CAPSKEY env.
9.9.2 090303 fix ftp.c: fixed banner lines to end with CRLF (for recent lftp)
9.9.2 090303 fix ftp.c: coped with "Transmit3" with FTP over TLS (long resp)
9.9.2 090303 fix caps.c: sharing CAPSKEY beween Win32 and CYGWIN
9.9.2 090302 fix ftp.c: permit ftp/ftps gw. by default (without REMITTABLE)
9.9.2 090301 fix dgsign.c: getting signs of self via CGI (and ssh,rsh)
9.9.2 090301 fix delegated.c: -Fkill on Win32 "full-path of ..." (9.4.0-pre8)
9.9.2 090226 mod stls.c: relaying non-SSL data via SERVER=ftps with STLS=-fcl
9.9.2 090222 fix windows.c: fixed stat() for directory on Win32
9.9.2 090222 fix windows.c: enabled CAPSKEY in DeleGate as a service on Win32
9.9.2 090220 fix ystring.c: converting "%ll" to "%l" on "__alpha"
9.9.2 090220 fix Makefile,*.c: building on OSF1 (with make CFLAGS="-DNONCPLUS")
9.9.2 090218 fix http.c: removed delay in SSI-include for STLS for -Pxxx/admin
9.9.2 090218 fix {ssi,http}.c: forw. "user:pass@" in URL on SSI-include with AUTHORIZER (9.2.2)
9.9.2 090218 fix ssi.c: breaking SSI interpretation on client-disconnection
9.9.2 090217 new ssi.c: introduced <!--#echo var="relbase">
9.9.2 090217 new ssi.c: introduced <!--#exec cmd="pushbase path"> for file=...
9.9.2 090216 mod dl.c: added lib*.so.4 (for libssl.so.4 on Vine4)
9.9.2 090215 fix ftpgw.c: putting 502 code in PROTOLOG on FTP/HTTP conn. error
9.9.2 090215 mod Makefile,mkmake.c: loop in make src/Makefile with clock-skew
9.9.2 090214 fix gethostbyname2.c: SEGV by recursion with unknown-host on Solaris,HPUX (9.9.1-pre4)
9.9.2 090209 fix ftp.c: fixed a compilation problem (pre1)
9.9.2 090208 fix sftp.c: waiting upload completion before next command
9.9.2 090207 new sftp.c: TMPDIR param. for tmp. file to be TMPDIR/dg-sftpgw/*
9.9.2 090207 fix http.c: don't close non-reg. NULLFP() (/dev/null) (9.6.3-pre4)
9.9.2 090206 fix file.c: disabled dupclosed() for NULLFP() (enabled by -Bd)
9.9.2 090206 fix file.c: disabled fclose() for NULLFP() (enabled by -Bf)
9.9.2 090205 fix mkcpp.c: building on CYGWIN
9.9.2 090205 new httpd.c: extended time server for UTS as /-/date?zone=uts&...
9.9.2 090204 new spinach.c: a simple seed of protocol interpreter
9.9.2 090201 new sftp.c: MountOption to limt max. file size as "datamax=16g"
9.9.2 090128 new pilsner.c: a simple seed of common string processor
9.9.2 090123 new inets.c: added "_-DontRoute.host" preifx
9.9.2 090123 new inets.c: intduced "_-xxxxxx.host" generic preifx
9.9.1 090118 new ahy2fdif.c: added <METAX name=LANGUAGE>code</METAX>
9.9.1 090118 new ahy2fdif.c: added <METAX name=CHARCODE>code</METAX>
9.9.1 090118 new any2fdif.c: getting charcode from CHARCODE=code by -Fany2fdif
9.9.1 090118 new cgi.c: CHARCODE=thru MountOption to disable SVCC/CCX for CGI
9.9.1 090118 new any2fdif.c: guessing input-charcode to be used by m17n-lib
9.9.1 090117 fix smtpgate.c: finding out user-text in a split quoted-printable
9.9.1 090117 fix smtpgate.c: finding out user-text in a long line