forked from pgul/binkd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HISTORY
2848 lines (2142 loc) · 87.9 KB
/
HISTORY
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
2020/01/30 10:21:49 1.1a-101 git
client.c,2.109,2.110
Fix an out-of-bounds error on sockaddrs.
The `invalidAddresses` vector in `client.c` is used
to hold invalid addresses `binkd` should not use.
However, the array was of type `struct sockaddr`,
which is not large enough to hold all of the
protocol-specific data of the `struct sockaddr_*`
structures. As a result, `binkd` would access
out-of-bounds memory when examining elements of
the array.
Fixed by redefining `invalidAddresses` to be an
array of type `struct sockaddr_storage`, which is
guaranteed by POSIX to be large enough to hold all
data associated with a socket address for any
protocol family.
Signed-off-by: Dan Cross <[email protected]>
2020/01/30 10:21:13 1.1a-100 git
client.c,2.108,2.109 ftnnode.c,2.50,2.51 iphdr.h,2.28,2.29 protocol.c,2.236,2.237 readcfg.c,2.113,2.114 readcfg.h,2.44,2.45
Fix use-after-free bug in get_host_and_port.
Don't use pointer assignment in this function,
but rather, copy into a fixed-length buffer.
Fixes #15
Signed-off-by: Dan Cross <[email protected]>
2019/01/23 09:16:18 git
binkdfaq-en.txt,2.7,2.8 binkdfaq-ru.txt,2.7,2.8
add a question on non-ASCII domains
2018/05/14 22:32:57 git
configure,2.56,2.57 configure.in,2.56,2.57
Updated autoconf scripts
2018/05/14 22:32:47 1.1a-99 git
readcfg.c,2.112,2.113
Added missing ifdef in readcfg
2018/05/14 22:32:38 1.1a-98 git
client.c,2.107,2.108
Added breaks to AFF for loops
2018/05/14 22:32:27 git
.ggg.swp,2.1,NONE
Soft AF force code added
2018/05/14 22:32:19 1.1a-97 git
.ggg.swp,NONE,2.1 btypes.h,2.14,2.15 client.c,2.106,2.107 ftnnode.c,2.49,2.50 ftnnode.h,2.25,2.26 readcfg.c,2.111,2.112
Soft AF force code added
2017/12/16 12:33:14 git
binkdfaq-en.txt,2.6,2.7 binkdfaq-ru.txt,2.6,2.7
A reference to a node that no longer exists in the nodelist was deleted
2017/12/15 19:40:18 git
binkdfaq-en.txt,2.5,2.6
The URL for protocol description was fixed
2017/12/10 10:33:17 1.1a-96 git
perlhooks.c,2.92,2.93
Compatibility with perl 5.26
2017/12/02 17:21:45 git
binkdfaq-en.txt,2.4,2.5 binkdfaq-ru.txt,2.5,2.6
Dead web links were deleted
2016/11/27 08:38:18 1.1a-95 git
tools.c,2.82,2.83
Fixed compilation warnings
2016/03/28 18:29:09 1.1a-94 git
perlhooks.c,2.91,2.92
Fixed "Modification of a read-only value attempted" error
2016/03/28 18:08:43 1.1a-93 git
perlhooks.c,2.90,2.91
Fixed "Modification of a read-only value attempted" error
2016/01/27 23:31:08 1.1a-92 git
server.c,2.65,2.66
Safe servmgr shudown on error
2016/01/27 21:40:15 1.1a-91 git
sem.c,1.3,1.4
Fixed timeout on wait unix semaphore
2016/01/27 21:23:45 1.1a-90 git
binkd.c,2.125,2.126 client.c,2.105,2.106 rfc2553.c,2.7,2.8 rfc2553.h,2.4,2.5
Fixed SIGHUP handler in unix pthread version
2016/01/25 16:56:09 git
Makefile.in,2.24,2.25
add option -s 'strip symbol tables' to 'make install' in unix Makefile(.in)
2016/01/25 09:47:40 git
Makefile.dep,2.16,2.17
Removed delay on exit multithread client-only by signal
2016/01/25 09:47:39 git
Makefile.dep,2.29,2.30
Removed delay on exit multithread client-only by signal
2016/01/25 09:34:15 1.1a-89 git
client.c,2.104,2.105
Fixed exit by signal on multithread clientonly mode
2016/01/24 23:32:38 1.1a-88 git
binkd.c,2.124,2.125 breaksig.c,2.8,2.9 common.h,2.18,2.19
Signal handling in pthread version on FreeBSD
2016/01/24 23:00:48 1.1a-87 git
perlhooks.c,2.89,2.90
Fixed segfault after session without perl hooks
2016/01/24 22:54:12 1.1a-86 git
binkd.c,2.123,2.124 breaksig.c,2.7,2.8 server.c,2.64,2.65 server.h,2.7,2.8
Servmgr returned to main thread
But signal handler does not call exit(), just set binkd_exit flag
2016/01/24 13:37:09 1.1a-85 git
server.c,2.63,2.64 server.h,2.6,2.7
Fixed warning on multithread version
2016/01/24 13:33:08 1.1a-84 git
binkd.c,2.122,2.123 exitproc.c,2.47,2.48
Run servmgr as non-main thread on multithread version
2016/01/24 13:27:10 git
configure,2.55,2.56 configure.in,2.55,2.56
Fixed gettid syscall detection in configure
2016/01/24 12:28:41 git
configure,2.54,2.55 configure.in,2.54,2.55
gettid syscall exists but not working on Max OS X
2016/01/24 12:28:08 1.1a-83 git
sem.c,1.2,1.3
pthread version without clock_gettime() - Mac OS X
2016/01/24 11:54:14 1.1a-82 git
branch.c,2.17,2.18 md5b.c,2.13,2.14 sys.h,2.46,2.47
Fixed warnings for unix multithread version
2016/01/20 16:52:07 1.1a-81 git
client.c,2.103,2.104
Removed the memset. static variables are guaranteed to be initialized to 0, even by older compilers.
2016/01/20 16:51:28 1.1a-80 git
client.c,2.102,2.103
Made the file "global" var static. This should make the var auto initialized to 0 for C99 compatible compilers. But left in the memset just in case.
Expanded tab characters in client.c
2016/01/20 16:51:24 1.1a-79 git
client.c,2.101,2.102
Code of previous commit tested and fixed.
2016/01/20 16:50:19 1.1a-78 git
client.c,2.100,2.101
Initialization warning fixed
2016/01/19 15:22:22 1.1a-77 git
client.c,2.99,2.100
Check for "illegal" IP nrs 0.0.0.0 and [::] before trying to make a connection
Using an array for the addresses and initializing outside of branch code.
2016/01/19 15:22:15 1.1a-76 git
.gitignore,NONE,2.1 client.c,2.98,2.99
Check for "illegal" IP nrs 0.0.0.0 and [::] before trying to make a connection
2015/10/09 20:54:11 1.1a-75 git
perlhooks.c,2.88,2.89
Typo in perlhooks function call
Signed-off-by: Pavel Gulchuk <[email protected]>
2015/10/09 12:12:41 1.1a-74 git
perlhooks.c,2.87,2.88
Fixed error "attempt to change r/o variable" on perl 5.20
Signed-off-by: Pavel Gulchuk <[email protected]>
2015/09/15 22:47:08 dukelsky
howto-en.texi,1.3,1.4 howto-ru.texi,1.5,1.6
Email addresses had incorrect syntax
2015/07/03 17:30:22 dukelsky
binkd.cfg,2.62,2.63 binkd.conf,1.7,1.8
FIX: English usage
2015/06/25 16:37:05 dukelsky
binkdfaq-en.txt,2.3,2.4 binkdfaq-ru.txt,2.4,2.5
URLs for VIREQ/x binaries. Thanks to Max Vasilyev 2:5057/77
2015/06/18 09:42:10 1.1a-73 git
client.c,2.97,2.98
Improve logging
2015/06/07 22:52:10 1.1a-72 gul
rename.c,2.1,2.2
More clean non-destructive rename() on unix
2015/04/27 19:15:52 gul
binkd9x-en.txt,2.2,2.3
replace “см.” with “see” in `binkd9x-en.txt`
2015/04/27 19:13:54 gul
binkd9x-en.txt,2.1,2.2 binkd9x-ru.txt,2.1,2.2 binkdfaq-ru.txt,2.3,2.4
Convert documentation to UTF-8
Previously it was a mess of CP866, KOI8-R, and Windows-1251.
2015/04/27 19:13:24 gul
binkd-ug-ru.htm,1.19,1.20 binkp10-en.txt,1.1,1.2 binkp10-ru.txt,1.1,1.2 binkp11-en.txt,1.1,1.2 binkp11-ru.txt,1.1,1.2 binkplic-ru.html,1.1,1.2 howto-en.texi,1.2,1.3 howto-ru.texi,1.4,1.5 nd-mode-ru.txt,1.1,1.2
Convert documentation to UTF-8
Previously it was a mess of CP866, KOI8-R, and Windows-1251.
2015/04/10 23:01:50 gul
README.md,2.1,2.2
rewrite `README.md` using GitHub Flavored Markdown
2015/04/10 23:01:12 gul
README.md,NONE,2.1 README,2.2,NONE
rename `README` to `README.md` (implying GitHub Flavored Markdown)
2015/04/08 20:10:51 1.1a-71 gul
Config.h,2.715,2.716 assert.h,2.0,2.1 binkd.c,2.121,2.122 binlog.c,2.14,2.15 binlog.h,2.3,2.4 branch.c,2.16,2.17 breaksig.c,2.6,2.7 bsy.c,2.13,2.14 bsy.h,2.2,2.3 btypes.h,2.13,2.14 client.c,2.96,2.97 client.h,2.0,2.1 common.h,2.17,2.18 compress.c,2.5,2.6 compress.h,2.3,2.4 confopt.h,2.11,2.12 crypt.c,2.4,2.5 crypt.h,2.5,2.6 exitproc.c,2.46,2.47 ftnaddr.c,2.12,2.13 ftnaddr.h,2.7,2.8 ftndom.c,2.8,2.9 ftndom.h,2.6,2.7 ftnnode.c,2.48,2.49 ftnnode.h,2.24,2.25 ftnq.c,2.42,2.43 ftnq.h,2.11,2.12 getw.c,2.10,2.11 getw.h,2.2,2.3 https.c,2.29,2.30 https.h,2.5,2.6 inbound.c,2.52,2.53 inbound.h,2.10,2.11 iphdr.h,2.27,2.28 iptools.c,2.21,2.22 iptools.h,2.9,2.10 md5b.c,2.12,2.13 md5b.h,2.6,2.7 perlhooks.c,2.86,2.87 perlhooks.h,2.17,2.18 prothlp.c,2.11,2.12 prothlp.h,2.6,2.7 protoco2.h,2.33,2.34 protocol.c,2.235,2.236 protocol.h,2.5,2.6 readcfg.c,2.110,2.111 readcfg.h,2.43,2.44 readdir.h,2.6,2.7 readflo.c,2.6,2.7 readflo.h,2.4,2.5 rfc2553.c,2.6,2.7 rfc2553.h,2.3,2.4 run.c,2.14,2.15 run.h,2.3,2.4 sem.h,2.15,2.16 server.c,2.62,2.63 server.h,2.5,2.6 setpttl.h,2.0,2.1 srif.c,2.23,2.24 srif.h,2.6,2.7 srv_gai.c,2.8,2.9 srv_gai.h,2.4,2.5 sys.h,2.45,2.46 tools.c,2.81,2.82 tools.h,2.30,2.31 xalloc.c,2.6,2.7 zlibdl.c,2.15,2.16 zlibdl.h,2.19,2.20daemonize.c,2.8,2.9 daemonize.h,2.1,2.2 getfree.c,2.1,2.2 rename.c,2.0,2.1 sem.c,1.1,1.2 setpttl.c,2.3,2.4
CVS macros '$Log' and partially '$Id' removed from source code
2015/04/08 16:26:20 gul 1.1a-70 gul
binkd9x-en.txt,NONE,2.1 binkd9x-ru.txt,NONE,2.1 binkdfaq-en.txt,NONE,2.1 binkdfaq-ru.txt,NONE,2.1 release-notes.txt,NONE,2.1 !README.FIX,2.63,NONE !README.perl,2.17,NONE !SRIF.TXT,2.0,NONE binkd9x.txt,2.14,NONE binkd9x.txt.en,1.1,NONE binkdfaq.txt.en,1.77,NONE binkdfaq.txt.ru,1.100,NONE readme.ND,2.1,NONE
Documentation files renamed
2015/01/14 09:42:29 1.1a-69 gul
protocol.c,2.234,2.235
Improve logging
2014/12/14 19:48:21 1.1a-68 gul
client.c,2.95,2.96 https.c,2.28,2.29 https.h,2.4,2.5
Fixed outgoing connects via proxy
2014/12/12 08:27:41 1.1a-67 gul
readcfg.c,2.109,2.110
Fixed iport/oport output in dumpcfg mode
2014/12/12 07:41:57 1.1a-66 gul
binkd.c,2.120,2.121 srv_gai.h,2.3,2.4
Compilation flag FSP1035 renamed to FTS5004
2014/09/21 14:59:39 1.1a-65 gul
binkd.c,2.119,2.120
Fixed broken iport/oport in config on win32
2014/09/21 11:44:53 1.1a-64 gul
binkd.c,2.118,2.119 client.c,2.94,2.95 protocol.c,2.233,2.234 protocol.h,2.4,2.5 server.c,2.61,2.62
Write configured remote hostname and port in log line "outgoing session with ..."
2014/08/19 09:41:39 1.1a-63 gul
ns_parse.h,1.3,1.4
OS/2 compilation
2014/08/18 19:57:57 1.1a-62 gul
ns_parse.h,1.2,1.3
Fixed OS/2 compilation
2014/08/18 07:49:04 1.1a-61 gul
sys.h,2.44,2.45
Fix MSVC + IPV6
2014/08/18 07:32:21 1.1a-60 gul
win9x.c,2.29,2.30
Fixed binkd9x compilation
2014/08/14 10:37:22 1.1a-59 gul
client.c,2.93,2.94
Fix 100% cpu load when called with "-p" option
2014/08/14 09:42:34 1.1a-58 gul
rfc2553.h,2.2,2.3 srv_gai.c,2.7,2.8 srv_gai.h,2.2,2.3
Fixed compilation on unix
2014/08/14 09:42:05 1.1a-57 gul
ns_parse.c,1.2,1.3
Fixed compilation on unix
2014/08/13 23:51:26 1.1a-56 gul
binkd.c,2.117,2.118 iphdr.h,2.26,2.27 iptools.c,2.20,2.21 md5b.c,2.11,2.12 run.c,2.13,2.14 server.c,2.60,2.61 srv_gai.c,2.6,2.7 sys.h,2.43,2.44 tools.c,2.80,2.81
Fixed IPv6 support with MSVC build
2014/08/13 23:50:57 1.1a-55 gul
TCPErr.c,2.16,2.17 WSock.c,2.4,2.5 breaksig.c,2.24,2.25 getfree.c,2.12,2.13 sem.c,2.9,2.10 service.c,2.58,2.59 tray.c,2.13,2.14 w32tools.c,2.20,2.21 win9x.c,2.28,2.29
Fixed IPv6 support with MSVC build
2014/08/09 20:08:10 1.1a-54 gul
https.c,2.27,2.28
Fixed outbount port number when using socks4
2014/08/09 16:58:05 1.1a-53 gul
server.c,2.59,2.60
Fix servmgr exit after incoming session (broken in 1.1a-50)
2014/08/04 00:02:00 1.1a-52 gul
client.c,2.92,2.93
More clean sleep in some rare OS
2014/08/03 23:58:59 1.1a-51 gul
client.c,2.91,2.92
Fix in previous patch (typo, clientmgr was broken)
2014/08/02 12:54:06 1.1a-50 gul
client.c,2.90,2.91 common.h,2.16,2.17 server.c,2.58,2.59
Fix in signal handling
2014/02/02 09:46:49 1.1a-49 gul
server.c,2.57,2.58
Set FD_CLOEXEC on listening socket
2014/02/02 09:12:34 1.1a-48 gul
inbound.c,2.51,2.52
Fix generate unique name for inbound file (broken in 1.1a-24)
2014/01/14 10:20:12 1.1a-47 gul
protocol.c,2.232,2.233 todo.lst,2.52,2.53
Possible segfault on some systems in rare case
2014/01/13 15:42:29 1.1a-46 gul
branch.c,2.15,2.16
pthread creating error handling, detach created threads
2014/01/13 14:33:41 1.1a-45 gul
branch.c,2.14,2.15 sys.h,2.42,2.43
configure and small changes for multithread unix version
2014/01/13 14:33:13 1.1a-44 gul
sem.c,NONE,1.1
configure and small changes for multithread unix version
2014/01/13 12:33:21 1.1a-43 gul
binkd.c,2.116,2.117 branch.c,2.13,2.14 sys.h,2.41,2.42
Unix multithread version
2014/01/12 15:26:03 1.1a-42 gul
Config.h,2.686,2.687 binkd.c,2.115,2.116 branch.c,2.12,2.13 breaksig.c,2.5,2.6 client.c,2.89,2.90 exitproc.c,2.45,2.46 ftnnode.c,2.47,2.48 perlhooks.c,2.85,2.86 protocol.c,2.231,2.232 sem.h,2.14,2.15 server.c,2.56,2.57 sys.h,2.40,2.41
unix (linux) pthread version
2014/01/06 15:53:19 1.1a-41 gul
inbound.c,2.50,2.51
Change inbound file mode 0755 to 0666
2013/12/11 15:06:15 1.1a-40 stas
run.c,2.12,2.13
Fix warning "missing sentinel in function call"
2013/11/25 21:49:54 1.1a-39 stream
ftnq.c,2.41,2.42
Fix possibly uninitialized variable: A node could be held to random time if it was an error during processing of .hld file
2013/11/25 21:46:05 1.1a-38 stream
daemonize.c,2.7,2.8
Add include (last one, I hope)/Fix UNIX build
2013/11/18 08:49:31 1.1a-37 stream
compress.c,2.4,2.5
Add required include
2013/11/15 14:00:43 1.1a-36 stream
sys.h,2.39,2.40
Fix EMX build
2013/11/08 20:22:34 1.1a-35 stream
sys.h,2.38,2.39
Build on MSVC 2000
2013/11/08 14:02:48 1.1a-34 stream
branch.c,2.11,2.12 perlhooks.c,2.84,2.85
Fix order of dependent includes
2013/11/08 14:02:18 1.1a-33 stream
sem.c,2.5,2.6
Fix order of dependent includes
2013/11/07 18:22:05 1.1a-32 stream
binkd.c,2.114,2.115 binlog.c,2.13,2.14 bsy.c,2.12,2.13 btypes.h,2.12,2.13 client.c,2.88,2.89 exitproc.c,2.44,2.45 ftnaddr.c,2.11,2.12 ftndom.c,2.7,2.8 ftnnode.c,2.46,2.47 ftnq.c,2.40,2.41 getw.c,2.9,2.10 https.c,2.26,2.27 inbound.c,2.49,2.50 inbound.h,2.9,2.10 perlhooks.c,2.83,2.84 perlhooks.h,2.16,2.17 prothlp.c,2.10,2.11 prothlp.h,2.5,2.6 protoco2.h,2.32,2.33 protocol.c,2.230,2.231 readcfg.c,2.108,2.109 readcfg.h,2.42,2.43 readflo.c,2.5,2.6 srif.c,2.22,2.23 sys.h,2.37,2.38 tools.c,2.79,2.80 xalloc.c,2.5,2.6
Lot of fixes to support 2G+ files. Supports 2G+ on Windows/MSVC
2013/11/07 18:21:36 1.1a-31 stream
dirwin32.c,2.3,2.4
Lot of fixes to support 2G+ files. Supports 2G+ on Windows/MSVC
2013/10/23 22:25:59 1.1a-30 stream
!README.FIX,2.62,2.63 ftnq.c,2.39,2.40 protocol.c,2.229,2.230 run.c,2.11,2.12 sys.h,2.36,2.37
EWOULDBLOCK, O_BINARY, O_NOINHERIT could be defined to wrong value
2013/10/23 22:22:01 1.1a-29 stream
dirwin32.c,2.2,2.3 dirwin32.h,2.4,2.5
Fix incorrect type and crash on Win64
2013/06/29 10:20:51 1.1a-28 gul
protocol.c,2.228,2.229
Fix warning on windows
2013/02/24 09:51:00 1.1a-27 gul
perlhooks.c,2.82,2.83
Fixed $ip var in perlhooks
2013/02/04 14:47:13 1.1a-26 gul
!README.FIX,2.61,2.62 !README.perl,2.16,2.17 binkd.cfg,2.61,2.62 binkd.conf,1.6,1.7 perlhooks.c,2.81,2.82 protoco2.h,2.31,2.32 protocol.c,2.227,2.228 readcfg.c,2.107,2.108 readcfg.h,2.41,2.42 rfc2553.c,2.5,2.6 server.c,2.55,2.56 server.h,2.4,2.5
New config option "listen"
2013/02/04 13:36:22 1.1a-25 gul
inbound.c,2.48,2.49
Fix in prev patch
2013/02/03 23:37:46 1.1a-24 gul
!README.FIX,2.60,2.61 Config.h,2.667,2.668 binkd.cfg,2.60,2.61 binkd.conf,1.5,1.6 btypes.h,2.11,2.12 inbound.c,2.47,2.48 inbound.h,2.8,2.9 protocol.c,2.226,2.227 readcfg.c,2.106,2.107 readcfg.h,2.40,2.41
New option "rename-style [postfix|extension]"
2013/02/03 09:28:52 1.1a-23 gul
protocol.c,2.225,2.226
Possible segfault on after_session perl hook
2013/01/24 19:36:54 1.1a-22 gul
inbound.c,2.46,2.47 sys.h,2.35,2.36
Compilation on unix
2013/01/24 19:33:42 1.1a-21 gul
tools.c,2.78,2.79
Syntax error
2013/01/24 19:25:38 1.1a-20 gul
binkd.c,2.113,2.114 bsy.c,2.11,2.12 getw.c,2.8,2.9 getw.h,2.1,2.2 inbound.c,2.45,2.46 iphdr.h,2.25,2.26 iptools.c,2.19,2.20 protoco2.h,2.30,2.31 protocol.c,2.224,2.225 run.c,2.10,2.11 sys.h,2.34,2.35 todo.lst,2.51,2.52 tools.c,2.77,2.78
Support "-pipe" option on Win32
2012/11/06 07:05:57 1.1a-19 stas
run.c,2.9,2.10
more comprehensible diagnostic message
2012/11/02 13:25:36 1.1a-18 green
run.c,2.8,2.9
Check return value of pipe() call
2012/10/28 23:30:17 1.1a-17 green
readcfg.c,2.105,2.106 tools.c,2.76,2.77 tools.h,2.29,2.30
Corrected Segfault in config error reporting on 64bit architectures
2012/09/24 12:09:37 1.1a-16 gul
client.c,2.87,2.88
Avoid compilation warning
2012/09/24 03:26:53 1.1a-15 gul
client.c,2.86,2.87 ftnnode.c,2.45,2.46 protocol.c,2.223,2.224 rfc2553.c,2.4,2.5
Resolve logic changed
2012/09/22 22:20:10 1.1a-14 gul
run.c,2.7,2.8 run.h,2.2,2.3
Compilation under mingw
2012/09/22 08:17:20 1.1a-13 gul
protocol.c,2.222,2.223
Fix compilation under Windows
2012/09/20 17:18:49 1.1a-12 gul
client.c,2.85,2.86
Minor fix in pipe processing
2012/09/20 17:13:10 1.1a-11 gul
client.c,2.84,2.85
Minor memory leak
2012/09/20 17:10:45 1.1a-10 gul
client.c,2.83,2.84
Bugfix in previous patch
2012/09/20 15:17:27 1.1a-9 gul
binkd.c,2.112,2.113 binkd.cfg,2.58,2.59 binkd.conf,1.3,1.4 btypes.h,2.10,2.11 client.c,2.82,2.83 ftnnode.c,2.44,2.45 ftnnode.h,2.23,2.24 iphdr.h,2.24,2.25 perlhooks.c,2.80,2.81 protoco2.h,2.29,2.30 protocol.c,2.221,2.222 protocol.h,2.3,2.4 readcfg.c,2.104,2.105 run.c,2.6,2.7 run.h,2.1,2.2 server.c,2.54,2.55 srif.c,2.21,2.22
Added "call via external pipe" (for example ssh) functionality.
Added "-a", "-f" options, removed obsoleted "-u" and "-i" (for win32).
2012/07/07 10:19:29 1.1a-8 gul
Config.h,2.650,2.651
X64 option for binkd-msvc build
2012/07/07 00:42:20 1.1a-7 green
rfc2553.c,2.3,2.4
Corrected potential double-free
2012/07/05 23:56:44 1.1a-6 green
rfc2553.c,2.2,2.3
Corrected mutex handling for multi-threaded environments
2012/06/26 14:42:06 1.1a-5 gul
perlhooks.c,2.79,2.80
Leave expected password unchanged if unmodified in on_handhsake hook
2012/06/26 12:55:48 1.1a-4 gul
protocol.c,2.220,2.221
MD5 password is not mandatory on incoming
2012/06/26 12:44:31 1.1a-3 gul
protocol.c,2.219,2.220
Code style
2012/06/25 09:15:39 1.1a-2 gul
tools.c,2.75,2.76
Cosmetics
2012/06/21 09:56:55 1.1a-1 gul
!README,2.4,2.5 !README.FIX,2.56,2.57 Config.h,2.642,2.643 binkd.8,2.7,2.8 binkdfaq.txt.en,1.64,1.65 binkdfaq.txt.ru,1.85,1.86
Version 1.1a
2012/06/21 01:41:50 1.0a-614 green
btypes.h,2.9,2.10 ftnnode.c,2.43,2.44 ftnnode.h,2.22,2.23
1 hour timeout for defnode resolutions
2012/06/21 00:48:14 1.0a-613 green
ftnnode.c,2.42,2.43
Reduce number of DNS resolutions during outbound scan
2012/06/17 03:21:43 1.0a-612 green
readcfg.c,2.103,2.104
Segmentation violation in config dump
2012/06/07 18:47:00 1.0a-611 green
client.c,2.81,2.82
Really try all addresses returned by getaddrinfo()
2012/05/14 09:15:02 1.0a-610 gul
binkd.c,2.111,2.112 client.c,2.80,2.81 common.h,2.15,2.16 readcfg.c,2.102,2.103 server.c,2.53,2.54 sys.h,2.33,2.34 reapchld.inc,2.5,NONE
More safe signal handling
2012/05/13 20:26:42 1.0a-609 gul
!README.perl,2.14,2.15 perlhooks.c,2.78,2.79 protoco2.h,2.28,2.29 protocol.c,2.218,2.219
Possibility to specify $passwd for session in on_handshake() perl hook
2012/03/10 08:57:02 1.0a-608 gul
protocol.c,2.217,2.218
Improved error reporting on seek error
2012/02/18 18:43:41 1.0a-607 green
srv_gai.c,2.5,2.6
Corrected linking issues on Win32
2012/02/18 18:40:02 1.0a-606 green
perlhooks.c,2.77,2.78
perl_parse() may alter environment, though not used
2012/02/02 10:42:47 1.0a-605 gul
confopt.h,2.10,2.11
Fixed gcc version for emx/klibc (by Max Vasilyev)
2012/01/31 01:02:17 1.0a-604 green
protocol.c,2.216,2.217
Corrected FTS-1027 support, allow list of hash algos
2012/01/27 20:25:48 1.0a-603 green
client.c,2.79,2.80 protocol.c,2.215,2.216
Improved getpeername() error handling
2012/01/27 00:58:37 1.0a-602 green
protocol.c,2.214,2.215
Workaround for OS/2 kLIBC 0.6.4, getpeername() always returns -1
2012/01/26 20:50:10 1.0a-601 green
protocol.c,2.213,2.214
Ensure the host information is not invalid
2012/01/26 11:47:32 1.0a-600 gul
perlhooks.c,2.76,2.77
Avoid usage SvPV_nolen missing in perl 5.00553
2012/01/25 23:03:16 1.0a-599 green
confopt.h,2.9,2.10 iphdr.h,2.23,2.24
Some changes to enable compilation on OS/2 with GCC/kLIBC
2012/01/24 19:06:08 1.0a-598 gul
service.c,2.56,2.57
Remove third arg in binkd_main() call
2012/01/23 23:18:47 1.0a-597 green
ns_parse.c,1.2,1.3
Fix regression in OS/2 / Watcom build
2012/01/23 23:02:03 1.0a-596 green
resolv.imp,NONE,1.1 ns_parse.c,1.1,1.2 ns_parse.h,1.1,1.2
Add FSP1035 support for EMX (using own import library)
2012/01/23 20:11:04 1.0a-595 gul
w32tools.h,2.11,2.12
Fixed declaration of binkd_main() (no 3rd param)
2012/01/22 22:40:58 1.0a-594 green
srv_gai.c,2.4,2.5
Replaces index (deprecated) with strchr
2012/01/22 15:54:15 1.0a-593 green
!README.FIX,2.55,2.56 binkd.cfg,2.57,2.58 binkd.conf,1.2,1.3 btypes.h,2.8,2.9 client.c,2.78,2.79 ftnnode.c,2.41,2.42 ftnnode.h,2.21,2.22 readcfg.c,2.101,2.102
Allow limiting IPv4/6 usage per node using new flags -4/-6
2012/01/22 14:27:09 1.0a-592 green
srv_gai.c,2.3,2.4
No SRV lookup for IP addresses
2012/01/22 03:27:51 1.0a-591 green
srv_gai.h,2.1,2.2
Implement FSP1035 support for OS/2/Watcom
2012/01/22 03:27:23 1.0a-590 green
ns_parse.c,NONE,1.1 ns_parse.h,NONE,1.1
Implement FSP1035 support for OS/2/Watcom
2012/01/22 02:19:49 1.0a-589 green
iptools.c,2.18,2.19
Post lookup without host requires AI_PASSIVE
2012/01/21 20:49:25 1.0a-588 green
binkd.c,2.110,2.111
Make environment usage ISO C compliant (no 3-args main())
2012/01/08 21:18:07 1.0a-587 green
protocol.c,2.212,2.213 server.c,2.52,2.53
Improved hostname lookup and logging
2012/01/08 19:35:00 1.0a-586 green
client.c,2.77,2.78 ftnaddr.c,2.10,2.11 ftnaddr.h,2.6,2.7 ftnnode.c,2.40,2.41 iphdr.h,2.22,2.23 perlhooks.c,2.75,2.76 protocol.c,2.211,2.212 readcfg.c,2.100,2.101 readcfg.h,2.39,2.40 server.c,2.51,2.52 srif.c,2.20,2.21 srv_gai.c,2.2,2.3
Avoid using MAXHOSTNAMELEN
2012/01/08 18:23:54 1.0a-585 green
binkd.c,2.109,2.110 confopt.h,2.8,2.9 iphdr.h,2.21,2.22
Fixed compilation in Cygwin/MinGW
2012/01/08 16:09:06 1.0a-584 green
client.c,2.76,2.77 ftnnode.c,2.39,2.40 https.c,2.25,2.26 iptools.c,2.17,2.18 protocol.c,2.210,2.211 server.c,2.50,2.51
Corrected initialization of getaddrinfo hints
2012/01/08 15:21:20 1.0a-583 green
iphdr.h,2.20,2.21
Ensure sufficiently long MAXHOSTNAMELEN
2012/01/08 15:05:41 1.0a-582 green
ns_parse.c,1.1,1.2
Autodetection for ns_msg element
2012/01/08 04:04:18 1.0a-581 green
srv_gai.c,2.1,2.2
Implement fallback for system not exporting resolv/ns_initparse etc.
2012/01/08 04:03:50 1.0a-580 green
ns_parse.c,NONE,1.1
Implement fallback for system not exporting resolv/ns_initparse etc.
2012/01/08 01:38:48 1.0a-579 green
iphdr.h,2.19,2.20 protocol.c,2.209,2.210 server.c,2.49,2.50
Improved getnameinfo handling, retry without name resolution
2012/01/07 19:00:23 1.0a-578 green
confopt.h,2.7,2.8
Added detection for PCC compiler
2012/01/07 18:56:30 1.0a-577 green
client.c,2.75,2.76 protocol.c,2.208,2.209 server.c,2.48,2.49
Improved getnameinfo error handling
2012/01/07 18:34:03 1.0a-576 green
client.c,2.74,2.75 https.c,2.24,2.25 protocol.c,2.207,2.208 server.c,2.47,2.48
Add error id where gai_strerror() is used
2012/01/07 18:22:29 1.0a-575 green
md5b.c,2.10,2.11 protocol.c,2.206,2.207 readcfg.c,2.99,2.100
Fix some compiler warnings
2012/01/07 15:52:26 1.0a-574 green
rfc2553.c,2.1,2.2 rfc2553.h,2.1,2.2
Removed C++ comments (bad style, I know)
2012/01/07 15:24:46 1.0a-573 green
confopt.h,2.6,2.7
Fixed small typo
2012/01/07 15:16:20 1.0a-572 green
binkd.c,2.108,2.109 confopt.h,2.5,2.6
Some more information in binkd -vv output
2012/01/07 13:54:07 1.0a-571 green
client.c,2.73,2.74 ftnnode.c,2.38,2.39 https.c,2.23,2.24 iptools.c,2.16,2.17 protocol.c,2.205,2.206 server.c,2.46,2.47
Fix MSVC6 compilation errors
2012/01/06 13:33:33 1.0a-570 gul
server.c,2.45,2.46
Format error
2012/01/06 11:44:10 1.0a-569 gul
client.c,2.72,2.73
Error in log message format
2012/01/06 11:08:51 1.0a-568 gul
perlhooks.c,2.74,2.75
Fix warnings on 64-bit systems
2012/01/06 09:50:37 1.0a-567 gul
perlhooks.c,2.73,2.74
Fix warnings
2012/01/06 09:24:19 1.0a-566 gul
iphdr.h,2.18,2.19
Fix resolv.h check under FreeBSD; cosmetics
2012/01/03 19:53:04 1.0a-565 green
srv_gai.c,NONE,2.1 srv_gai.h,NONE,2.1 !README.FIX,2.54,2.55 Config.h,2.591,2.592 client.c,2.71,2.72 ftnnode.c,2.37,2.38 https.c,2.22,2.23 iptools.c,2.15,2.16 iptools.h,2.8,2.9 protocol.c,2.204,2.205 readcfg.c,2.98,2.99 readcfg.h,2.38,2.39 server.c,2.44,2.45 todo.lst,2.50,2.51
Implement FSP-1035 (SRV record usage)
- add SRV enabled getaddrinfo() wrapper (srv_gai.[ch])
- Unix (libresolv, autodetected) and Win32 support implemented
- Port information is stored as string now, i.e. may be service name
2012/01/03 19:26:05 1.0a-564 green
rfc2553.c,NONE,2.1 rfc2553.h,NONE,2.1 !README.FIX,2.53,2.54 client.c,2.70,2.71 exitproc.c,2.43,2.44 ftnnode.c,2.36,2.37 https.c,2.21,2.22 iphdr.h,2.17,2.18 iptools.c,2.14,2.15 iptools.h,2.7,2.8 md5b.c,2.9,2.10 perlhooks.c,2.72,2.73 protoco2.h,2.27,2.28 protocol.c,2.203,2.204 readcfg.c,2.97,2.98 server.c,2.43,2.44 server.h,2.3,2.4 srif.c,2.19,2.20 sys.h,2.32,2.33
Implemented IPv6 support
- replace (almost) all getXbyY function calls with getaddrinfo/getnameinfo (RFC2553) calls
- Add compatibility layer for target systems not supporting RFC2553 calls in rfc2553.[ch]
- Add support for multiple listen sockets -- one for IPv4 and one for IPv6 (use V6ONLY)
- For WIN32 platform add configuration parameter IPV6 (mutually exclusive with BINKD9X)
- On WIN32 platform use Winsock2 API if IPV6 support is requested
- config: node IP address literal + port supported: [<ipv6 address>]:<port>
2012/01/03 19:25:37 1.0a-563 green
TCPErr.c,2.15,2.16 WSock.c,2.3,2.4 breaksig.c,2.23,2.24 getfree.c,2.11,2.12 sem.c,2.8,2.9 service.c,2.55,2.56 tray.c,2.11,2.12 w32tools.c,2.19,2.20
Implemented IPv6 support
- replace (almost) all getXbyY function calls with getaddrinfo/getnameinfo (RFC2553) calls
- Add compatibility layer for target systems not supporting RFC2553 calls in rfc2553.[ch]
- Add support for multiple listen sockets -- one for IPv4 and one for IPv6 (use V6ONLY)
- For WIN32 platform add configuration parameter IPV6 (mutually exclusive with BINKD9X)
- On WIN32 platform use Winsock2 API if IPV6 support is requested
- config: node IP address literal + port supported: [<ipv6 address>]:<port>
2012/01/03 18:53:25 1.0a-562 green
binkd.c,2.107,2.108
Correct PID for servmgr in logs (i.e. PID after fork, not before)
2011/08/17 18:51:48 1.0a-561 stas
Config.h,2.586,2.587 readcfg.c,2.96,2.97
move declaration of default value of root_domain to Config.h
2011/08/17 12:02:59 1.0a-560 gul
binkd.cfg,2.56,2.57 ftnaddr.c,2.9,2.10 ftnaddr.h,2.5,2.6 readcfg.c,2.95,2.96
Default root-domain fidonet.net changed to binkp.net
2011/05/06 18:44:06 1.0a-559 gul
ftnq.c,2.38,2.39
Fixed sorting files in filebox by time
2011/02/19 08:23:06 1.0a-558 gul
protocol.c,2.202,2.203
Cosmetics
2011/02/19 08:08:30 1.0a-557 gul
protocol.c,2.201,2.202
Yet another possible segfault on session start
2011/01/25 17:33:52 1.0a-556 stas
readcfg.c,2.94,2.95
Prevent segfault if length of passwords exceed 40 chars (addition for previous patch
2011/01/24 12:44:54 1.0a-555 gul
protoco2.h,2.26,2.27 protocol.c,2.200,2.201
Possible segfault on session start
2010/12/12 14:32:14 1.0a-554 gul
sys.h,2.31,2.32
Fix previous patch
2010/12/12 11:44:14 1.0a-553 gul
protocol.c,2.199,2.200 sys.h,2.30,2.31
Use Sleep() instead of select(0,NULL,NUL,NULL,...) under WIN32
2010/12/02 13:04:16 1.0a-552 stas
ftnnode.c,2.35,2.36
if any of passwords for the node is presents, then don't change all passwords. The FIRST token "Node" with any not-empty password in the config file is set all passwords, the passwords from password-file is used for node if password don't set in main config file
2010/08/26 09:26:28 1.0a-551 gul
perlhooks.c,2.71,2.72
Segfault on nested on_log() perl hook, reported by The Infidel numenorbbs at gmail.com
2010/06/15 23:25:04 1.0a-550 gul
bsy.c,2.10,2.11 todo.lst,2.49,2.50
Improve diagnostics
2010/05/24 17:38:06 1.0a-549 gul
binkd.c,2.106,2.107
Allow daemonize on client-only mode
2010/05/24 17:37:03 1.0a-548 gul
client.c,2.69,2.70
Fix previous patch
2010/05/24 17:24:41 1.0a-547 gul
binkd.c,2.105,2.106 client.c,2.68,2.69 exitproc.c,2.42,2.43 sem.h,2.13,2.14
Exit immediately after all jobs done in "-p" mode
2010/05/22 11:11:33 1.0a-546 gul
!README.perl,2.13,2.14 binlog.c,2.12,2.13 binlog.h,2.2,2.3 perlhooks.c,2.70,2.71 perlhooks.h,2.15,2.16 protoco2.h,2.25,2.26 protocol.c,2.198,2.199
Call after_session() hook after removing bsy
2010/03/30 09:13:03 1.0a-545 gul
binkd.c,2.104,2.105
Do not chdir to "/" on daemonize for use relative pathes on reload config
2010/03/30 09:11:34 1.0a-544 gul
perlhooks.c,2.69,2.70
Improve logging
2010/01/24 18:13:17 1.0a-543 stas
client.c,2.67,2.68
Log message changed: "unable to connect" -> "connection to smth. failed". Patch from Alexey Vissarionov 2:5020/545
2009/11/27 16:20:10 1.0a-542 stas
protocol.c,2.197,2.198
fix typo
2009/11/22 09:52:55 1.0a-541 gul
protocol.c,2.196,2.197
Send M_ERR and increase undialable on error rename received file
2009/06/23 13:53:26 1.0a-540 gul
perlhooks.c,2.68,2.69
Perl <5.10 win32 PERLDL compatibility (no sv_free2 call)
2009/06/23 09:20:39 1.0a-539 gul
perlhooks.c,2.67,2.68
Compilation error on win32, fixed
2009/06/16 22:24:34 1.0a-538 gul
binkd.c,2.103,2.104 tools.c,2.74,2.75 tools.h,2.28,2.29
Cosmetics around mkargv()
2009/06/16 01:42:21 1.0a-537 stas
protocol.c,2.195,2.196
Don't process second M_PWD
2009/06/15 22:57:14 1.0a-536 stas
binkd.c,2.102,2.103 tools.c,2.73,2.74 tools.h,2.27,2.28
Fix OS/2 Watcom build crash. Thanks to Alexey Korop 2:461/155
2009/06/12 20:43:04 1.0a-535 gul
inbound.c,2.44,2.45
close .hr
2009/06/03 16:25:50 1.0a-534 gul
perlhooks.c,2.66,2.67
Fixed updating $hosts by on_hook() (broken in 1.0a-529)
2009/06/03 10:50:57 1.0a-533 gul
perlhooks.c,2.65,2.66
$_ mistakenly set as read-only in need_reload() perl hook, fixed.
2009/06/02 20:10:12 1.0a-532 gul
binkd.c,2.101,2.102 client.c,2.66,2.67 common.h,2.14,2.15 exitproc.c,2.41,2.42 perlhooks.c,2.64,2.65 perlhooks.h,2.14,2.15 sem.h,2.12,2.13 tools.c,2.72,2.73
Build binkd for OS/2 with perl support
2009/05/31 10:16:50 1.0a-531 gul
!README.perl,2.11,2.12 binkd.c,2.100,2.101 client.c,2.65,2.66 exitproc.c,2.40,2.41 ftnq.c,2.37,2.38 ftnq.h,2.10,2.11 perlhooks.c,2.63,2.64 perlhooks.h,2.13,2.14 protoco2.h,2.24,2.25 protocol.c,2.194,2.195 readcfg.c,2.93,2.94 readcfg.h,2.37,2.38 server.c,2.42,2.43 sys.h,2.29,2.30 tools.c,2.71,2.72
Warning: many changes, may be unstable.
Perl interpreter is now part of config and rerun on config reload.
Perl 5.10 compatibility.
Changes in outbound queue managing and sorting.
2009/05/27 12:49:54 1.0a-530 gul
readcfg.c,2.92,2.93
Free perl-vars on unloading config
2009/05/27 12:33:55 1.0a-529 gul
!README.perl,2.10,2.11 binkd.cfg,2.53,2.54 perlhooks.c,2.62,2.63 readcfg.c,2.91,2.92 readcfg.h,2.36,2.37 todo.lst,2.48,2.49
perl-var config keyword
update $hosts by on_call() perl hook not only if it returns 2
2009/05/26 16:04:39 1.0a-528 gul
!README.perl,2.9,2.10 binkd.c,2.99,2.100 perlhooks.c,2.61,2.62 perlhooks.h,2.12,2.13 readcfg.c,2.90,2.91 readcfg.h,2.35,2.36
New perl hooks:
need_reload() - is it needed to reload config
config_loaded() - after successful reading config
2009/05/25 20:02:09 1.0a-527 gul
perlhooks.c,2.60,2.61
Perl 5.10 compatibility,
avoid warnings.
2009/05/25 19:24:10 1.0a-526 gul
!README.perl,2.8,2.9 perlhooks.c,2.59,2.60
Add forgotten vars in perl hooks,
inhibit warnings
2009/02/14 15:14:46 1.0a-525 gul
protocol.c,2.193,2.194
Bugfix: segfault on crafted input sequences,
possible remote DoS for multithread versions (win32 and OS/2).
Thanks to Dennis Yurichev.
2009/02/04 22:13:50 1.0a-524 gul
server.c,2.41,2.42
Possible remote DoS (thx to Konstantin Kuzov 2:5019/40)
2009/01/31 18:58:05 1.0a-523 gul
binkd.c,2.98,2.99
Update year in copyright line
2008/12/09 11:04:13 1.0a-522 gul
readcfg.c,2.89,2.90
Use binkp from /etc/services if exists as iport/oport by default
2008/11/25 11:35:31 1.0a-521 gul
inbound.c,2.43,2.44
Segfault if garbage in *.hr
2008/08/05 09:05:19 1.0a-520 gul
inbound.c,2.42,2.43 protocol.c,2.192,2.193 srif.c,2.18,2.19 srif.h,2.5,2.6
Optimize srif functions params
2008/04/17 18:19:47 1.0a-519 gul
prothlp.c,2.9,2.10
Fixed sending files with space or control chars in name
2008/02/25 12:38:16 1.0a-518 gul
protocol.c,2.191,2.192
Fixed incorrect byte counters in log message about compressed files
2008/01/16 12:05:45 1.0a-517 gul
protocol.c,2.190,2.191
Fix for previous patch
2008/01/16 01:08:20 1.0a-516 stas
protocol.c,2.189,2.190
Log message with recommendation about NR mode to workaround remote bug
2008/01/15 14:39:08 1.0a-515 gul
perlhooks.c,2.58,2.59
Perl_sv_2iv_flags()
2008/01/15 13:54:04 1.0a-514 gul
perlhooks.c,2.57,2.58
typo in perlhooks.c rev. 2.57
2008/01/15 13:19:05 1.0a-513 gul
confopt.h,2.4,2.5
Show bwlim setting on "binkd -vv" output
2008/01/15 13:10:34 1.0a-512 gul
perlhooks.c,2.56,2.57
Compatibility with new perl versions (Perl_sv_2uv_flags()), not tested
2008/01/14 22:45:46 1.0a-511 gul
inbound.c,2.41,2.42 protocol.c,2.188,2.189
Workaroud bug of earlyer binkd versions with partial files and not NR-mode
2008/01/14 13:42:55 1.0a-510 gul
protocol.c,2.187,2.188
Fixed bug in protocol logic (partial files send without NR-mode)
2007/10/30 09:43:12 1.0a-509 gul
protocol.c,2.186,2.187
Removed copy/pasted code from prev patch
2007/10/30 09:33:27 1.0a-508 gul
!README.FIX,2.48,2.49 binkd.cfg,2.52,2.53 btypes.h,2.7,2.8 protocol.c,2.185,2.186 readcfg.c,2.88,2.89 readcfg.h,2.34,2.35
New config option dont-send-empty
2007/10/13 08:35:19 1.0a-507 gul
client.c,2.64,2.65
play around checkcfg()
2007/10/06 13:20:09 1.0a-506 gul
client.c,2.63,2.64 readcfg.c,2.87,2.88 server.c,2.40,2.41
more accurate checkcfg()
2007/10/06 12:35:16 1.0a-505 gul
binkd.c,2.97,2.98
Retranslate SIGHUP from servermgr to clientmgr
2007/10/04 20:30:32 1.0a-504 gul
binkd.c,2.96,2.97 client.c,2.62,2.63 common.h,2.13,2.14 readcfg.c,2.86,2.87 server.c,2.39,2.40
SIGHUP handler (thx to Sergey Babitch)
2007/09/11 14:18:36 1.0a-503 gul
protocol.c,2.184,2.185
Use NR workaround for all binkd versions before 0.9.5
2007/09/04 09:07:05 1.0a-502 gul
perlhooks.c,2.55,2.56
Memory leak
2007/09/04 09:04:51 1.0a-501 gul
protocol.c,2.183,2.184 protoco2.h,2.23,2.24
Use workaround of NR-mode bug only for binkd/0.9.4
2007/09/04 01:46:45 1.0a-500 gul
protocol.c,2.182,2.183
Remove workaround for asymmentric NR-mode
2006/12/19 16:11:11 1.0a-499 stas
service.c,2.54,2.55 service.h,2.14,2.15
Minimize required access rights to operate with Windows NT/2000/XP/2003 services
2006/10/25 12:49:08 1.0a-498 stas