forked from coturn/rfc5766-turn-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1106 lines (855 loc) · 33.5 KB
/
ChangeLog
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
7/10/2015 Oleg Moskalenko <[email protected]>
Version 3.2.5.9 'Marshal West':
- Username check fixed.
5/29/2015 Oleg Moskalenko <[email protected]>
Version 3.2.5.8 'Marshal West':
- The fix for Issue 11 backported from coturn;
- SQL injection security hole fixed.
3/18/2015 Oleg Moskalenko <[email protected]>
Version 3.2.5.7 'Marshal West':
- plain passwords in Redis database fixed;
2/28/2015 Oleg Moskalenko <[email protected]>
Version 3.2.5.6 'Marshal West':
- bandwidth control fixed;
- STUN/TURN control traffic counted separately from data traffic,
for the sake of the bandwidth control;
- REST API docs fixed;
2/3/2015 Oleg Moskalenko <[email protected]>
Version 3.2.5.5 'Marshal West':
- hostname-to-ip-address resolution fixed;
- TRANSPORT attribute handling fixed;
- TOS (DiffServer) and TTL IP header field handling fixed;
- peer logging added;
1/26/2015 Oleg Moskalenko <[email protected]>
Version 3.2.5.4 'Marshal West':
- SSLv2 support removed;
- OpenSSL 1.1.0 support added.
12/14/2014 Oleg Moskalenko <[email protected]>
Version 3.2.5.3 'Marshal West':
- Redis read message queue backlog fixed.
- Typos fixed in the docs.
11/10/2014 Oleg Moskalenko <[email protected]>
Version 3.2.5.2 'Marshal West':
- TLS connection procedure improved in uclient test program.
- Reliability improvements (Issue 141).
- external address mapping fixes for Amazon EC2.
- docs fixes.
11/07/2014 Oleg Moskalenko <[email protected]>
Version 3.2.5.1 'Marshal West':
- Request re-transmission implemented in uclient test program.
- TLS connection procedure improved in uclient test program.
10/31/2014 Oleg Moskalenko <[email protected]>
Version 3.2.4.6 'Marshal West':
- Relay RTCP sockets ports allocation fixed.
- SSL renegotiation callback fixed.
- List of libraries cleaned.
- Debian UFW file added to the Debian package.
10/16/2014 Oleg Moskalenko <[email protected]>
Version 3.2.4.5 'Marshal West':
- Mobile sessions authentication improved.
- Authentication code cleaning.
- Quota allocation fixed.
- Core dump fixed.
- Memory code cleaning.
- Logging code cleaning.
- TCP/TLS tests improved.
- relay RTCP sockets ports allocation fixed.
09/05/2014 Oleg Moskalenko <[email protected]>
Version 3.2.4.4 'Marshal West':
- TLS renegotiation DoS attack prevention implemented (Issue 136);
- FQDN is allowed as a relay-ip or a listener-ip parameter
(patch provided by Iñaki Baz Castillo).
09/01/2014 Oleg Moskalenko <[email protected]>
Version 3.2.4.3 'Marshal West':
- Redis DB user key database operation fixed.
- SHA-256 memory leak fixed.
- Mobility ticket retransmission fixed.
08/14/2014 Oleg Moskalenko <[email protected]>
Version 3.2.4.2 'Marshal West':
- MySQL SSL connection support.
- Crash fixed when incorrect DB connection string.
- Minor docs fixes.
07/29/2014 Oleg Moskalenko <[email protected]>
Version 3.2.4.1 'Marshal West':
- Server-side forceful session cancellation implemented
(in telnet console).
07/18/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.96 'Marshal West':
- TCP 6062 relay connection fix.
- "pu" CLI command fixed.
- Some crash conditions fixed.
07/11/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.95 'Marshal West':
- working on compilation warnings.
- Allocation mismatch condition fixed.
- STUN BINDING response fixed in the case of -X (external address) option.
06/13/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.94 'Marshal West':
- Redis DB connection status fixed (Issue 129).
- SIGHUP for logfile reset implemented
(Gustavo Garcia suggestion).
- log reset command in CLI added.
- Some error code corrections:
* "Mobility forbidden" error changed, to value 405.
* "Wrong credentials" situation is now treated as error 441.
06/03/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.92 'Marshal West':
-Issues 126, 127 and 128 fixed.
06/02/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.91 'Marshal West':
-Issue 128 (sigfault in RFC 6062 TCP operations) fixed.
05/30/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.9 'Marshal West':
- ephemeral REST API credentials fixed in RFC 6062 TCP communications
(Issue 126 and Issue 127).
- Auth code cleaning.
- Password change in the database of an active session is supported.
05/07/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.8 'Marshal West':
- Code cleaning (compilation warnings, etc).
- TLS/DTLS log messages fixed.
- uclient performance improvements.
- channel function place holders defined for kernel-level calls.
04/23/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.7 'Marshal West':
- Performance and socket logging fix (improved) (Issue 123).
- Code cleaning.
04/13/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.6 'Marshal West':
- Addresses logging fixed.
- Redis admin options fixed.
- Redis compilation cleaned.
- Performance and logging socket problem fixed (Issue 123).
04/07/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.5 'Marshal West':
- Mobile allocation quota fixed (issue 121);
- --simple-log option added (Issue 122);
- documentation fixes (REST API, Redis).
04/06/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.4 'Marshal West':
- Mobile TCP sessions fixed (issue 120);
- log information improvements.
04/04/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.3 'Marshal West':
- Pkey and cert file descriptors to be closed
on initialization (issue 118);
- Address bind indefinite cycle on start-up fixed
(Issue 119);
- Allocation counters time lag improved.
03/30/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.2 'Marshal West':
- Allocation counters fixed (issue 117);
- a possible core dump in the server code fixed;
- a possible memory leak in server fixed.
03/29/2014 Oleg Moskalenko <[email protected]>
Version 3.2.3.1 'Marshal West':
- TCP congestion avoidance completed.
- Read and write streams are treated separately in
bandwidth control.
- Test client fixed.
- Experimental SHA256 key storage supported.
03/17/2014 Oleg Moskalenko <[email protected]>
Version 3.2.2.912 'Marshal West':
- TCP-in-TCP congestion avoidance implemented.
- UDP-in-TCP congestion avoidance improved.
- Alternate-server code cleaned.
03/10/2014 Oleg Moskalenko <[email protected]>
Version 3.2.2.911 'Marshal West':
- "Congestion control" for UDP-inside-TCP tunneling;
- memory management improvements;
- socket logging improvements;
- debug info added to CentOS and Fedora RPMs;
- TCP traffic buffering improved;
- Thread barriers cleaned;
- TCP memory leak fixed;
- minor TCP test client improvement.
03/09/2014 Oleg Moskalenko <[email protected]>
Version 3.2.2.910 'Marshal West':
- Log messages extended and cleaned.
- Some memory cleaning.
03/02/2014 Oleg Moskalenko <[email protected]>
Version 3.2.2.9 'Marshal West':
- Issue 113 fixed (TCP rate limit fixed);
- Issue 114 fixed (TCP stability).
02/18/2014 Oleg Moskalenko <[email protected]>
Version 3.2.2.8 'Marshal West':
- Issue 102: SO_BSDCOMPAT socket option removed;
- Issue 104: check for the REALM attribute value;
- Issue 105: no-cli segfault fixed;
- Issue 106: MESSAGE-INTEGRITY removed from DATA indication;
- Issue 108: Server should return 438 on unknown nonce;
- Issue 109: make the random functions stronger (mostly for
transaction ID and for nonce);
- Issue 111: fix valgrind warning on memory initialization.
- Issue 112: RTCP sockets logging.
02/12/2014 Oleg Moskalenko <[email protected]>
Version 3.2.2.7 'Marshal West':
- Possible indefinite cycle fixed in TCP/TCP routing (Issue 99);
- Address 0.0.0.0 can be used as a listener address (Issue 100);
- DHCP-configured servers supported (Issue 101);
02/04/2014 Oleg Moskalenko <[email protected]>
Version 3.2.2.6 'Marshal West':
- Channel traffic memory copy elimination.
- Send indication memory copy elimination.
- DTLS traffic processing memory copy eliminated.
- Mobility forbidden error code number fixed - according to the new draft document.
- getsockname() usage minimized.
- port allocation improved.
- default relay behavior fixed (when no relay addresses defined).
- atomic create permission request handling (Issue 97).
01/25/2014 Oleg Moskalenko <[email protected]>
Version 3.2.2.5 'Marshal West':
- code optimization.
01/24/2014 Oleg Moskalenko <[email protected]>
Version 3.2.2.4 'Marshal West':
- HMAC key handling fixed (Issue 96).
01/23/2014 Oleg Moskalenko <[email protected]>
Version 3.2.2.3 'Marshal West':
- Security fix (issue 95).
- Default "implicit" relay IP allocation policy is more usable
(issue 94 fixed).
- SSLv2 fixed (for those who are still using it)
(issue 93 fixed).
- Cosmetic changes.
01/19/2014 Oleg Moskalenko <[email protected]>
Version 3.2.2.1 'Marshal West':
- CPU/memory cache optimization (memory locality).
- torture tests enhanced.
- stability fixes.
- minor possible memory leak fix.
- new TLS options: --no-sslv2, --no-sslv3, --no-tlsv1,
--no-tlsv1_1, --no-tlsv1_2
01/06/2014 Oleg Moskalenko <[email protected]>
Version 3.2.1.4 'Marshal West':
- Linux epoll performance improvements.
- DTLS minor fix.
01/06/2014 Oleg Moskalenko <[email protected]>
Version 3.2.1.3 'Marshal West':
- Telnet client added to installation when necessary.
01/05/2014 Oleg Moskalenko <[email protected]>
Version 3.2.1.2 'Marshal West':
- Config file adjusted for DragonFly.
01/03/2014 Oleg Moskalenko <[email protected]>
Version 3.2.1.1 'Marshal West':
- Minor TLS fix.
- Default cipher list is DEFAULT now.
12/26/2013 Oleg Moskalenko <[email protected]>
Version 3.2.1.0 'Marshal West':
- Optimized TCP network engine for Linux 3.9+.
- Security fix: DH and ECDH temporary keys are now
regenerated for each TLS or DTLS session.
- Fix for systems with multiple CPU cores (more than 128).
- DH TLS key now can be configured as 566, 1066 (default) or 2066 bits.
- DH TLS key can be taken from a PEM file.
- Issue 91 (test client crash) fixed.
- Configurable net engine type.
12/25/2013 Oleg Moskalenko <[email protected]>
Version 3.1.6.0 'Arch Lector':
- Timers optimization: linked list timers structure
for often-used intervals.
12/23/2013 Oleg Moskalenko <[email protected]>
Version 3.1.5.3 'Arch Lector':
- HTTP "keep-alive" support improved.
- TCP channel "fortification".
12/19/2013 Oleg Moskalenko <[email protected]>
Version 3.1.5.1 'Arch Lector':
- Private key password allowed for encrypted keys.
- HTTP "keep-alive" supported.
- "psd" CLI command added (ps dump to file).
12/18/2013 Oleg Moskalenko <[email protected]>
Version 3.1.4.2 'Arch Lector':
- Time functions optimization.
- Online changes to the alternate servers list thru telnet CLI.
- Certificate chain files allowed.
12/13/2013 Oleg Moskalenko <[email protected]>
Version 3.1.3.1 'Arch Lector':
- "Start time" ps command info added.
- Protocol option added to "pu" command.
- "Delete allocation" debug message fixed.
- "Allocation id" debug info message fixed.
- RFC6062 usage statistics fixed.
- Info/Debug messages cleaned.
12/11/2013 Oleg Moskalenko <[email protected]>
Version 3.1.2.3 'Arch Lector':
- CentOS 6 package fixed.
12/10/2013 Oleg Moskalenko <[email protected]>
Version 3.1.2.2 'Arch Lector':
- ps output typo fixed (TLS params).
- configurable EC curve name.
- CLI TLS-related information extended.
- "print users" (pu) CLI command added.
12/09/2013 Oleg Moskalenko <[email protected]>
Version 3.1.2.1 'Arch Lector':
- DH cipher suites basic implementation.
- Elliptic Curve cipher suites basic implementation.
- RFC 6062 crash fixed.
- More CLI parameters added.
- Redis allocation statistics fixed.
- Number of cli max session lines configurable.
- uclient cipher suite configurable.
12/08/2013 Oleg Moskalenko <[email protected]>
Version 3.1.1.0 'Arch Lector':
- Telnet CLI.
- RFC 6062 internal messaging fixed.
- Server relay endpoints (a non-standard feature).
- "atomic line" stdout log print.
- printed help minor fix.
- client program does not necessary
require certificate for TLS.
- docs fixes.
- allocation quota bug fixed.
11/29/2013 Oleg Moskalenko <[email protected]>
Version 3.0.2.1 'Practical Frost':
- TCP stability fixes.
- RFC 6062 "first packet(s)" bug fixed.
- RFC 6062 stability fixes.
- Multithreaded Mobile ICE.
11/28/2013 Oleg Moskalenko <[email protected]>
Version 3.0.1.4 'Practical Frost':
- CentOS/Fedora packaging fixed.
- PID file fixed.
11/26/2013 Oleg Moskalenko <[email protected]>
Version 3.0.1.3 'Practical Frost':
- Misc cosmetic changes.
- CentOS/Fedora packaging fixed.
11/25/2013 Oleg Moskalenko <[email protected]>
Version 3.0.1.2 'Practical Frost':
- Mobility draft implemented.
- DTLS communications fixes.
- UDP Linux optimization.
- Log output time starts with 0.
- A new "drop root privileges" options:
--proc-user and --proc-group added.
- SHA256 agility updated: 426 error code on too weak SHA function.
- "-m 0" and "-m 1" options improved.
- non-threading environment support dropped.
- stability fixes.
- OpenSUSE support added.
11/10/2013 Oleg Moskalenko <[email protected]>
Version 3.0.0.0 'Practical Frost':
- New network engine for Linux kernel 3.9+.
11/08/2013 Oleg Moskalenko <[email protected]>
Version 2.6.7.2 'Harding Grim':
- SHA256 agility updated: 441 error code on too weak SHA function.
11/07/2013 Oleg Moskalenko <[email protected]>
Version 2.6.7.1 'Harding Grim':
- CentOS / Fedora uninstall script.
- Debian compilation error fixed.
- OpenSSL 0.9.7 and earlier build fixed.
- NetBSD build fixed.
11/03/2013 Oleg Moskalenko <[email protected]>,
Peter Dunkley <[email protected]>
Version 2.6.7.0 'Harding Grim':
- CentOS 6 pre-compiled distribution.
- Fedora pre-compiled distribution.
- TURN_NO_TLS case compilation cleaning.
- Text files cleaning.
- Issue 68 fixed (no-stun option added).
10/27/2013 Oleg Moskalenko <[email protected]>
Version 2.6.6.1 'Harding Grim':
- SHA256 added as a non-standard message integrity option.
- CentOS rpm specs added.
- Peter Dunkley added to the authors list.
10/20/2013 Oleg Moskalenko <[email protected]>
Version 2.6.6.0 'Harding Grim':
- Cygwin loopback relay interfaces fixed (Issue 62).
- rpath added to the Makefile (Issue 63).
- CONFLICTS added to FreeBSD port Makefile (Issue 64).
- Certificate check options, for server and for the test client (Issue 65).
- Some compilation cleaning.
10/09/2013 Oleg Moskalenko <[email protected]>
Version 2.6.5.2 'Harding Grim':
- Documentation changes.
- Redis-related memory leak fixed (Issue 61).
09/25/2013 Oleg Moskalenko <[email protected]>
Version 2.6.4.1 'Harding Grim':
- Crash on uninitialized redis db name is fixed (Issue 59).
- Optional authentication of STUN Binding request is implemented (Issue 60).
09/16/2013 Oleg Moskalenko <[email protected]>
Version 2.6.3.1 'Harding Grim':
- Issue 58: support changing white/black IP lists while server is running.
database tables (keys for redis) added for that new functionality.
09/03/2013 Oleg Moskalenko <[email protected]>
Version 2.6.2.2 'Harding Grim':
- Issue 52: RFC 6062 relay endpoints connection process
fixed for Linux pre-3.9 kernel.
09/03/2013 Oleg Moskalenko <[email protected]>
Version 2.6.2.1 'Harding Grim':
- UDP performance improvements.
- Issue 56: DTLS scaleability improvements.
- Issue 55: DTLS support in Cygwin.
- Issue 57: --pidfile option
- Issue 52: RFC 6062 relay endpoints connection process fixed.
- Issue 53: Fingerprints added to the indications.
- Issue 54: Long-term credentials mechanism integrity and software attributes
added to the indications.
08/11/2013 Oleg Moskalenko <[email protected]>
Version 2.6.1.4 'Harding Grim':
- UDP memory leak fixed.
08/11/2013 Oleg Moskalenko <[email protected]>
Version 2.6.1.3 'Harding Grim':
- DTLS crash fix.
08/10/2013 Oleg Moskalenko <[email protected]>
Version 2.6.1.2 'Harding Grim':
- TLS buffer decreased to avoid memory problems.
- TLS BIO object fix.
- UDP socket open/reopen process fixed.
08/08/2013 Oleg Moskalenko <[email protected]>
Version 2.6.1.1 'Harding Grim':
- Network optimization:
* "pure" UDP setup optimized (when no DTLS configured);
* Auxiliary listening endpoints (configured by
--aux-server=<ip:port>).
* --udp-self-balance option to balance the UDP traffic
among the aux endpoints (for clients supporting
300 ALTERNATE-SERVER response).
- Security improvements:
* no authentication required on the load balancer server (Issue 50).
* REST API improvement:
= --secret-ts-exp-time option deprecated;
= In REST API timestamp, we are now using
the expiration time (Issue 31).
* Configurable cipher suite in the TURN server.
* SSLv3 support.
* TLS 1.1 and 1.2 support.
* SSLv2 "encapsulation" mode support.
* NULL OpenSSL cipher is allowed to be negotiated between
server and client.
* -U option (NULL cipher) added to the test client.
* DTLS crash fixed on overload.
- STUN enhancements and fixes:
* Classic STUN transaction ID fixed (Issue 48).
* Classic STUN attribute ERROR fixed (Issue 49).
* Unused RFC 5780 functionality removed from TCP, TLS and DTLS relays.
* resources optimization for stun-only: short connection expiration time.
07/26/2013 Oleg Moskalenko <[email protected]>,
Vladimir Tsanev <[email protected]>
Version 2.5.2.1 'Shivers':
- log file placement changes.
- Base64 encode/decode memory initialization fix.
07/23/2013 Oleg Moskalenko <[email protected]>,
Po-sheng Lin <[email protected]>
Version 2.5.1.2 'Shivers':
- getopt fix in client test programs.
- cosmetic changes.
- allow anonymous alternate-server functionality.
07/21/2013 Oleg Moskalenko <[email protected]>
Version 2.5.1.1 'Shivers':
- Improved "split" network engine:
two different threading models for TCP and UDP.
- DTLS crash fixed.
- Multithreading with Cygwin.
07/20/2013 Oleg Moskalenko <[email protected]>
Version 2.1.3.1 'Shivers':
- DTLS improvements for DOS attacks
- deeper optimization for DOS attack (mostly for Linux)
07/19/2013 Oleg Moskalenko <[email protected]>
Version 2.1.2.0 'Shivers':
- deeper optimization for DOS attack (mostly for Linux)
07/18/2013 Oleg Moskalenko <[email protected]>,
Po-sheng Lin <[email protected]>
Version 2.1.1.1 'Shivers':
- udp fixes.
- Makefile cleaning.
- Dependencies cleaning.
- DOS attack client emulation.
- DOS attack defense logic added to the server.
07/14/2013 Oleg Moskalenko <[email protected]>
Version 2.0.0.0 'Shivers':
- new networking engine:
- scalable UDP socket model.
- multithreaded TCP relay implemented.
- race condition fixed in authentication of TCP sessions.
- Cygwin "port" fixed.
06/23/2013 Oleg Moskalenko <[email protected]>,
Vladimir Tsanev <[email protected]>
Version 1.8.7.0 'Black Dow':
- Added support for obsolete "classic" STUN RFC 3489;
- Full TURN support for Cygwin implemented: MS-Win UDP sockets fixed;
- Relay threads number changed;
- Fedora warnings fixed;
- turndb/testdbsetup.sh example file added;
- Multiple Makefile and ./configure script fixes implemented:
* Changes taken from Arch Linux port;
* Manpages installation and deinstallation;
* rfc5769check utility removed from installation, it is used for the
compilation result test only and makes no sense for the end user;
* "--parameter" format support in ./configure script; it allows
simpler native OS package definitions (like in Debian package);
* Mac OS X linking warnings removed.
* pthread test fixed.
06/08/2013 Oleg Moskalenko <[email protected]>
Version 1.8.6.3 'Black Dow':
- DONT-FRAGMENT flag removed on UDP listening (clients-facing) sockets.
- UDP fix for Cygwin only: UDP channels work fine now.
- docs fixes.
06/06/2013 Oleg Moskalenko <[email protected]>
Version 1.8.6.2 'Black Dow':
- Just cosmetic re-packaging for Debian, tarball warnings removed.
06/05/2013 Oleg Moskalenko <[email protected]>
Version 1.8.6.1 'Black Dow':
- Peer permissions bug fixed.
06/03/2013 Oleg Moskalenko <[email protected]>
Version 1.8.6.0 'Black Dow':
- Optimization.
- Mac OS X compilation fixes.
06/01/2013 Oleg Moskalenko <[email protected]>
Version 1.8.5.4 'Black Dow':
- Issues 29 and 30 fixed (channels padding).
- minor fixes.
- Mac OS X compilation fixes.
- Cygwin-related compilation fixes and INSTALL additions.
05/31/2013 Oleg Moskalenko <[email protected]>
Version 1.8.5.3 'Black Dow':
- REST API extra script example and docs extension.
05/26/2013 Oleg Moskalenko <[email protected]>
Version 1.8.5.1 'Black Dow':
- Config file parsing fixed (Issue 28)
05/20/2013 Oleg Moskalenko <[email protected]>,
Erik Johnston <[email protected]>
Version 1.8.5.0 'Black Dow':
- IP access control lists.
- log file name fix.
- alt-* ports default behavior changed.
- "passive TCP" option in uclient.
05/18/2013 Oleg Moskalenko <[email protected]>
Version 1.8.4.5 'Black Dow':
- socket conditions cleaned (SIGPIPE, etc)
05/17/2013 Oleg Moskalenko <[email protected]>
Version 1.8.4.4 'Black Dow':
- configuration and installation adjusted for:
- NetBSD;
- Solaris;
- OpenBSD;
- Screen messages fixed;
- code security fixes.
05/15/2013 Oleg Moskalenko <[email protected]>
Version 1.8.4.3 'Black Dow':
- Compilation warning removed.
- Log file fixed (Issue 26)
05/15/2013 Oleg Moskalenko <[email protected]>
Version 1.8.4.2 'Black Dow':
- repackaging for Debian compliance. Docs separated.
05/14/2013 Oleg Moskalenko <[email protected]>
Version 1.8.4.1 'Black Dow':
- Cosmetics (docs, warnings, etc).
- More complex case of TURN-server-behind-NAT is implemented,
when multiple public-ip/private-ip mappings are involved.
05/13/2013 Oleg Moskalenko <[email protected]>
Version 1.8.4.0 'Black Dow':
- Redis DB support added.
- Crash on help text fixed.
- Max allocation time can be changed in the command-line or
in the config file.
05/09/2013 Oleg Moskalenko <[email protected]>
Version 1.8.3.9 'Black Dow':
- No changes - just the tarball is repackaged for Debian compatibility.
05/07/2013 Oleg Moskalenko <[email protected]>
Version 1.8.3.8 'Black Dow':
- multicast and loopback addresses disallow options added.
- option to direct all log messages to the system log (syslog).
05/02/2013 Oleg Moskalenko <[email protected]>
Version 1.8.3.7 'Black Dow':
- Allocation status log.
05/01/2013 Oleg Moskalenko <[email protected]>
Version 1.8.3.6 'Black Dow':
- Stuntman client interoperability fixed.
- Manpages installation fixed.
04/30/2013 Oleg Moskalenko <[email protected]>
Version 1.8.3.5 'Black Dow':
- Lintian fixes.
04/27/2013 Oleg Moskalenko <[email protected]>
Version 1.8.3.4 'Black Dow':
- Installation fixes.
04/26/2013 Oleg Moskalenko <[email protected]>
Version 1.8.3.3 'Black Dow':
- Log file midnight rollover implemented (Issue 15).
04/25/2013 Oleg Moskalenko <[email protected]>
Version 1.8.3.1 'Black Dow':
- Configurable REST API separator symbol (Issue 16).
- Stale Nonce bug fixed (Issue 17).
- Minor client fix.
04/21/2013 Oleg Moskalenko <[email protected]>
Version 1.8.3.0 'Black Dow':
- STUN stand-alone functionality improved according to RFC 5389.
- ALTERNATE-SERVER implemented as "light" load balancing feature.
- stun-only option implemented.
- scripts directory reorganized.
04/19/2013 Oleg Moskalenko <[email protected]>
Version 1.8.2.1 'Black Dow':
- Misc docs fixes.
04/13/2013 Oleg Moskalenko <[email protected]>
Version 1.8.2.0 'Black Dow':
- Multiple database shared secrets supported for REST API.
- Added support for some OpenSSL FIPS versions (like openssl 0.9.8e-fips-rhel5).
04/13/2013 Oleg Moskalenko <[email protected]>
Version 1.8.1.3 'Black Dow':
- Maintenance (docs, etc).
- Added partial support for Cygwin. Only TCP & TLS protocols
are support for client-to-server communications (as in RFC 5766 and
RFC 6062). UDP supported only for relay communications. DTLS is not
supported at all. The problem is in Winsock UDP sockets implementation.
04/11/2013 Oleg Moskalenko <[email protected]>
Version 1.8.1.2 'Black Dow':
- Work on configuration and build.
04/9/2013 Oleg Moskalenko <[email protected]>
Version 1.8.1.1 'Black Dow':
- Docs improvements.
- Load balancing use case added to TurnNetworks.pdf.
- Verbose mode split into 'normal' and 'extra' modes.
- Logging extended and fixed.
04/7/2013 Oleg Moskalenko <[email protected]>
Version 1.8.1.0 'Black Dow':
- Compilation flags improved.
- utility programs renamed and moved to bin/ directory.
- README and turnserver man page separated into three sections -
turnserver, turnadmin, turnutils.
04/6/2013 Oleg Moskalenko <[email protected]>
Version 1.8.0.6 'Black Dow':
- Added option "--psql-userdb" for better visual separation
between PostgreSQL and MySQL stuff.
- turnadmin flat files handling fixed.
- added set/show commands to turnadmin for secret key.
04/6/2013 Oleg Moskalenko <[email protected]>
Version 1.8.0.5 'Black Dow':
- turnadmin MySQL connection fixed.
- minor cosmetic changes.
- Added "list" commands for long-term and short-term users,
to turnadmin.
04/5/2013 Oleg Moskalenko <[email protected]>
Version 1.8.0.4 'Black Dow':
- Minor compilation fixes.
- Minor docs fixes.
- "connect_timeout" option support for MySQL.
04/5/2013 Oleg Moskalenko <[email protected]>
Version 1.8.0.3 'Black Dow':
- Issue 11 (secret timestamp check) fixed.
04/4/2013 Oleg Moskalenko <[email protected]>
Version 1.8.0.2 'Black Dow':
- TCP sockets flush removed.
- rfc5769check utility removed from the Makefile.
04/4/2013 Oleg Moskalenko <[email protected]>
Version 1.8.0.1 'Black Dow':
- Some short-term auth problems fixed.
- rfc5769check utility added to the Makefile and upgraded.
04/3/2013 Oleg Moskalenko <[email protected]>
Version 1.8.0.0 'Black Dow':
- Short-term credentials mechanism implemented.
04/2/2013 Oleg Moskalenko <[email protected]>
Version 1.7.3.1 'Superior Glokta':
- Listeners code cleaned.
- The default number of extra relay threads changes from 0 to 1.
04/1/2013 Oleg Moskalenko <[email protected]>
Version 1.7.3.0 'Superior Glokta':
- Issue 10 fixed: log file control options.
Two options added: --no-stdout-log and --log-file.
03/29/2013 Oleg Moskalenko <[email protected]>
Version 1.7.2.0 'Superior Glokta':
- Issue 9 fixed (uclient).
- Secret-based authentication implemented (see TURNServerRESTAPI.pdf).
- Uclient docs fixed.
- database schema extended (table for the secret added).
03/27/2013 Oleg Moskalenko <[email protected]>
Version 1.7.1.2 'Superior Glokta':
- CHANNEL BIND request handling fixed: now it produces an error
when client is trying to tie the same peer address to
different channels.
- uclient and peer test apps upgraded so that RTP channels
are talking to <port> and RTCP channels are talking
to <port+1> in client-to-peer communication patterns.
- compilation warning is fixed when MySQL is not used.
03/27/2013 Oleg Moskalenko <[email protected]>
Version 1.7.1.1 'Superior Glokta':
- CONNECT response fixed in RFC 6062.
- uclient checks server responses integrity.
03/26/2013 Oleg Moskalenko <[email protected]>
Version 1.7.1.0 'Superior Glokta':
- MySQL support added for the user keys repository.
- PostgreSQL support improved.
- Docs fixed.
- 64 bits platform fixes.
03/23/2013 Oleg Moskalenko <[email protected]>
Version 1.7.0.0 'Glokta':
- Authentication fix.
- PostgreSQL database can be used as the user keys repository.
03/21/2013 Oleg Moskalenko <[email protected]>
Version 1.6.1.3 'Whirrun':
- UDP segmentation fault fixed
03/21/2013 Oleg Moskalenko <[email protected]>
Version 1.6.1.2 'Whirrun':
- RFC 6062 fix
03/21/2013 Oleg Moskalenko <[email protected]>
Version 1.6.1.1 'Whirrun':
- Authentication error fixed
03/19/2013 Oleg Moskalenko <[email protected]>
Version 1.6.1.0 'Whirrun':
- --stale-nonce option
- working on userdb
- "hang on" option fixed in uclient
03/18/2013 Oleg Moskalenko <[email protected]>
Version 1.6.0.2 'Whirrun':
- working on userdb
- c++ compilation fix
03/17/2013 Oleg Moskalenko <[email protected]>
Version 1.6.0.1 'Whirrun':
- uclient performance improved
- TurnNetworks.pdf document added
03/15/2013 Oleg Moskalenko <[email protected]>
Version 1.6.0.0 'Whirrun':
- "Pure" TCP relaying (RFC 6062) implemented.
- Network interactions fixes.
- RFC 6062 test scripts added.
03/03/2013 Oleg Moskalenko <[email protected]>
Version 1.5.2.8 'Iosiv Lestek':
- authorization processing improvements.
- peer application fixed.
- some ICE attributes added.
02/27/2013 Oleg Moskalenko <[email protected]>
Version 1.5.2.7 'Iosiv Lestek':
- authorization processing improvements
- Issue 4 fixed.
- secure client-to-client script added
02/22/2013 Oleg Moskalenko <[email protected]>
Version 1.5.2.6 'Iosiv Lestek':
- strcpy/strncpy fixed
- some screen messages fixed
- uclient statistics fixed
- software attribute fixed
- example scripts fixed
02/16/2013 Oleg Moskalenko <[email protected]>
Version 1.5.2.5 'Lestek':
- uclient application fixed
- Docs fixes
02/14/2013 Oleg Moskalenko <[email protected]>
Version 1.5.2.4 'Lestek':
- Crash fixed on unconfigured interfaces
- Docs fixes
02/12/2013 Oleg Moskalenko <[email protected]>
Version 1.5.2.3 'Lestek':
- Added feature: TURN Server always uses fingerprints in a session if
the session client is using fingerprints.
- Default unsecure alternative port changed to 3479,
default secure alternative port changed to 5350.
- TURN Server always trying to search for default certificate file
turn_server_cert.pem and for default private key file
turn_server_pkey.pem, if not certificate or private key is
explicitly configured.
- configurable packet rate in the uclient test program.
- default peer port changed to 3480.
- -z, --no-auth option added to turnserver.
02/11/2013 Oleg Moskalenko <[email protected]>
Version 1.5.2.2 'Lestek':
- Some cleanup added to the network input handlers.
02/9/2013 Oleg Moskalenko <[email protected]>
Version 1.5.2.1 'Lestek':
- Binding requests do not require authentication.
- SOFTWARE in the end of the message.
02/8/2013 Oleg Moskalenko <[email protected]>
Version 1.5.2.0 'Lestek':
- NAT discovery fixed (RFC5780).
02/8/2013 Oleg Moskalenko <[email protected]>
Version 1.5.1.6 'Calder':
- Installation instructions fixed.
02/8/2013 Oleg Moskalenko <[email protected]>
Version 1.5.1.5 'Calder':
- Mac compilation fixes.
- Fixes for old Linuxes.
02/7/2013 Oleg Moskalenko <[email protected]>
Version 1.5.1.4 'Calder':
- Configuration alert (warning) messages.
- Relay addresses by default use listener addresses.
- Realm/user sequence fixed in the config file reading.
01/27/2013 Oleg Moskalenko <[email protected]>
Version 1.5.1.3 'Calder':
- 'External' IP implemented for TURN-server-behind-NAT situation.
01/26/2013 Oleg Moskalenko <[email protected]>
Version 1.5.1.2 'Calder':
- Alternative ports moved to 20000-ish territory.
- Docs fixes.
01/22/2013 Oleg Moskalenko <[email protected]>
Version 1.5.1.1 'Calder':
- Docs fixes.
01/22/2013 Oleg Moskalenko <[email protected]>
Version 1.5.1.0 'Calder':
- C++ compatible headers and build.
- C++ library header.
- HTML-formatted development reference.
01/14/2013 Oleg Moskalenko <[email protected]>
Version 1.5.0.0 'Calder':
- RFC 5769 check utility implemented.
- RFC 5780 STUN extension implemented.
01/13/2013 Oleg Moskalenko <[email protected]>
Version 1.4.2.5 'Scale':
- Issue 2 fixed.