forked from kamailio/kamailio
-
Notifications
You must be signed in to change notification settings - Fork 18
/
ChangeLog
12120 lines (8111 loc) · 415 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
===================== 2020-01-09 Version 5.3.2 Released =====================
===================== Changes Since Version 5.3.1 ===========================
commit ef7ad5164d5d2ed97fb94dd3a12f9fc9496f68e0
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jan 9 11:27:07 2020 +0100
Makefile.defs: version set to 5.3.2
commit 2a4eb02cb934fbbf7f0b69a8a90ae1e4e0d16ef2
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jan 9 11:24:45 2020 +0100
pkg: updated version to 5.3.2 in rpm specs
commit eb319d6d6bbf28cf17236764b892520197c85b86
Author: Kamailio Dev <[email protected]>
Date: Thu Jan 9 10:01:36 2020 +0100
modules: readme files regenerated - modules ... [skip ci]
commit 8830a13af10e5d13e646a8d325e046bc95cc54d5
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jan 8 21:07:11 2020 +0100
app_ruby: docs for xval_mode parameter
(cherry picked from commit 4b30a3c4a9fc9d4ca7d3ce40fc5a0637f2386646)
commit 912ad4fc621df6418e0cb7f55ba26a384316dc60
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jan 8 20:50:42 2020 +0100
app_ruby: option to use internal KSR::PV module and skip returning xval str
- controlled via xval_mode module parameter
- workaround for a reported regression causing crash by using core
KSR::PV exports (GH #2180)
(cherry picked from commit 9bafd4c4e09825b25a84bb35a6dc4a39dbd07b73)
commit 2e8d629a7722cbecae543a7e4a9d0174a16fbc16
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jan 8 17:38:57 2020 +0100
app_ruby: memset rbdata to 0 in app_ruby_run_ex()
(cherry picked from commit af18330c7ed5266079038ca7ae515487537cd6b6)
commit 4f83d158dbae4d0f854f4bea8a847c071a45d861
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jan 8 17:31:27 2020 +0100
misc: use single quotes in formatted ruby scrip for kemi example
(cherry picked from commit 77a1698ce24620be0edc171494c4f414a5c5b5e1)
commit 57c54e76f03cf2753487aaa82b516dda1e66f2f2
Author: Victor Seva <[email protected]>
Date: Thu Jan 9 09:56:52 2020 +0100
pkg/kamailio/deb: version set 5.3.2
commit 27f6bb93db36b62520f0093a4f2ffe477ad7306d
Author: Sergey Safarov <[email protected]>
Date: Wed Jan 8 15:22:28 2020 +0300
pkg/kamailio/obs: enabled build of geoip and phonenum modules for CentOS 8 and RHEL 8 dists
(cherry picked from commit c953af29433abef3251e9e4644c0af98b84368cb)
commit ffa3b089a192ef6d135a094bd6b3a29125e35389
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jan 8 10:15:26 2020 +0100
Makefile: use variable for detecting emacs for ctags flag
(cherry picked from commit ef19acf3a79a804a47238daf1f6d4794f1d82a5e)
commit 13874b22adbff7bb269a6229a00f59c29013d196
Author: Kamailio Dev <[email protected]>
Date: Wed Jan 8 10:01:29 2020 +0100
modules: readme files regenerated - modules ... [skip ci]
commit 8fc643b5d199e257ec403fd925f3d15327e8ded1
Author: James Aimonetti <[email protected]>
Date: Tue Jan 7 23:55:01 2020 +0000
Makefile: include flag to generate Emacs-compatible TAGS file
Emacs exposes an environment variable `INSIDE_EMACS` which can be used
to toggle ctags to generate an Emacs-friendly TAGS file.
(cherry picked from commit 35c846b1e8dc7075b0cee196a430dd1b09a87446)
commit 2dc27439365ec4f2442b19b139eda1f2c29ec958
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jan 7 10:11:42 2020 +0100
ipops: fix locating static index for dns pv
- reported by GH #2179
(cherry picked from commit a383caa12a1af2cbc0f135add643045a159f24f2)
commit 851e3f34ed6de43d22511ad52b5cc61163bb7be5
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 6 11:25:32 2020 +0100
tm: added missing $T(reply_reason)
(cherry picked from commit bf57a7ab50949ddbeec787331548dfcb023c238f)
commit 030be68ca0af03cf2e54ddbe00670900588459a4
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Dec 24 14:39:17 2019 +0100
tls: docs - fix example for setting xavp_cfg
(cherry picked from commit 4f42115ce29d446ad60b32af9ad370d9b2d847c2)
commit 766e0d30454e0a872a8f5016fc1a4f865f95f655
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Dec 20 16:08:16 2019 +0100
tls: set default tls method (version) to 1+
- it was 1, but newer libssl doesn't have it anymore
- while older systems don't have newer version support
(cherry picked from commit 1da196174d8cd7e82ce57d4de60197fc063e6b50)
commit cfba21fc16aa0920c0f36fcd79692f7d64428403
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Dec 16 11:02:57 2019 +0100
rr: fixed warning about unused label in ki_record_route_reset_one()
(cherry picked from commit c65e0926b26ee9f1cdadb9fbd6f488159275cbea)
commit b0888cf384d57b4a11200872f3b9fbdde77c53ce
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Dec 12 08:42:06 2019 +0100
tm: clarification that the sip message flags operations after t_newtran()
- they are not reflected in transaction, only in local sip message
structure
(cherry picked from commit 9a0c850f98063da145120f90d2c5c2a43e76b976)
commit 428c862a9e4445ebf1bec244510a29d443c9e4db
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Dec 10 12:46:34 2019 +0100
tls: init EVP_PKEY pointer when loading engine key
(cherry picked from commit 433551f3ea00e4151f2fa4e84d7c52422b6cefe3)
commit e0420bcf6ee37eb305595b2c56e9054546b3fc63
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Dec 10 12:38:30 2019 +0100
tcp: checks for event route index on close
(cherry picked from commit 46436cf8ef7d337c255b2fd9115544a6971f9741)
commit 2c0048dc6d41c61137f64e9021f897d390d6140f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Dec 9 22:15:24 2019 +0100
tm: rework code to avoid compiler warnings
- fix log message priting wrong string variable
(cherry picked from commit 263b8ce5360716e44c6a7bcdbc65a76dfad67575)
commit 331de11a6164a7a2289da62f4782e42aae21f843
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:47:00 2019 +0100
app_python3: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 731056f0e7ae752273e16bc7bc1a48ba16638235)
commit 9d00826874acc5d164dc207a4fcd890d38393742
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:46:19 2019 +0100
app_python: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit e0f3675e1b0c93ec416e7663ab8b6e21b75373e2)
commit 8f4e5524db2ea1625919c7a92ab9fce7f6277a46
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:44:58 2019 +0100
xlog: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit b5e3409aff3a5f8307ab812693ddea286ebc08e9)
commit db6b7f470fcfbcf3b736f9e9461d87b003e824e3
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:44:18 2019 +0100
tmx: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 18059dcc87f371f353fb585a89aefd8d7cadce8c)
commit 0eed9af6156c7bee2ef1a06895ca3b3a0732424c
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:43:29 2019 +0100
tm: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 6e7a441a9f27cb22ff22919f2e7b911045b7a7c0)
commit b170db2d9f9f8d29b13bbdad78adb5ec63079ee4
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:42:44 2019 +0100
sl: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit af9cdfb14798e331eacb9495aaf70eedf9eae527)
commit 480095d20fcb5bdb34bb9fc496fe0a8e4b1c8b11
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:42:10 2019 +0100
siputils: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 3f859cf341d71ca3789907d9502fea18a48ca56a)
commit 112729e810d5eef40a153b60f720abb60588864f
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:41:33 2019 +0100
sdpops: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit beb9a7f7c6397f1ea51b8e8746d06c43f602d2a0)
commit 0b182c2e9cbb3ca8213d7785115e24950c531cb4
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:40:41 2019 +0100
sanity: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 2b4d555610b06a1902e3d67f282b4a101e9f3796)
commit 4a69bff459e57a35606edf1f5c715efe13b521ec
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:40:02 2019 +0100
rtpproxy: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 60838d3a51d0afff75a6923791e99c94960f638e)
commit 9d25bc343ec9fd0ad2c566b6d8bcc60147178a37
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:39:26 2019 +0100
rtpengine: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 401240be0a1e4a3b06d2095d2f2a003c371921ed)
commit f57c9fbc276c6daa2fa79175622984bab19e7e5a
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:38:32 2019 +0100
rtjson: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit bc046a1cdd096ff66057bc7cb19512192743b705)
commit fb368f2de6c740e075fcefd231ff1e9bdd3f52b5
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:37:53 2019 +0100
rr: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 3d5d7278135e21f8fa63d29934943d3424c60de8)
commit f614e328086a851b4053f3df4ae67d6eabf52cef
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:37:11 2019 +0100
registrar: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 49903d1c03af293210b12ea48d13ff12a2bf7954)
commit 5e5e67a680b4c90057645feb8a9a9bfa31d8d0af
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:35:59 2019 +0100
pike: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 48a92121ce496536a38ec3f076ad1298ef85c7e0)
commit 2593e8b26f05cd70b2fb3c9861db214babfcf3f2
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:35:21 2019 +0100
permissions: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 2c69186668353c371af4f4d27c78131b72b8719b)
commit cd33d744696bc1ee12f6b26d821cbe8f85578513
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:34:37 2019 +0100
mtree: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 8a1be5135296e0e340e0ef970a53d4e48615d62f)
commit cd2b7a4d86673797bc47d061e1d5362eafa05014
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:33:53 2019 +0100
maxfwd: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 81eeb1b671d7750dd5d52e472242630f95cf7e48)
commit 24d7cf34ecd19012eb2c7d47185e08a80709ae42
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:31:56 2019 +0100
htable: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit c340ef019789ebed2c57e5b4a0a0f1543b6df7ae)
commit 7f140734951c2820c87dc80e4facd7311942918e
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:31:13 2019 +0100
geoip2: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 7167ae9134edf247819618522c88c5f8d3cc1adf)
commit e279869422f7cb1c3ea53c8d070a6697c8738d7d
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:30:25 2019 +0100
geoip: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 72509a9c538052ef21c0da9b9f3f220c01d8a81c)
commit 10ec9a7e1cdfd42979ca3e3ec4a2497dad38641c
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:29:27 2019 +0100
cfgutils: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 7fb0410df8b0a05870690c5d770247855767630f)
commit 6e8209e50a513c37f6fe2ea389ac25cef4e8a638
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:28:19 2019 +0100
auth_db: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit 52f29796fc79706e31f389fbcf35d7b4a38900bb)
commit 71bbd316369dd9f5e2f7608fae041b8032385fc2
Author: Victor Seva <[email protected]>
Date: Mon Dec 9 18:26:27 2019 +0100
auth: add clang-format directives to skip format on kemi_exports
format is important for generating docs by our python tool
(cherry picked from commit d39dd5480c6e8d56a1fb2c91220da079c1a65800)
commit 72e0eb88dd61daf2bab52425d1d3945da6e0f0c8
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Dec 9 07:03:18 2019 +0100
rr: exported to kemi record_route_preset_one()
- the variant for record_route_preset() with one parameter
- GH #2171
(cherry picked from commit b05b0891d890d55b649d19ec22105b2bdcfd3ba5)
commit 6b5838e105f0ce31a448cdb785e4a86148054e02
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Dec 4 08:20:30 2019 +0100
core: kemi - fixed missing support to check for REFER method
(cherry picked from commit 840e29d7d63602482e202e1b514a0ba9952dffe5)
commit e64a0e247d19be178241d38756e7b785c6865730
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Dec 2 19:07:40 2019 +0100
rtproxy: docs - fixed section id value
(cherry picked from commit e896f2c9286809b5ef81c4952577780002ee5df8)
commit 8513d5468bd7d348ef149c5b4d14feb34da93ed7
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Dec 2 16:47:40 2019 +0100
kex: docs - fixed rpc command name for shm memory details
(cherry picked from commit 9e89a66b36d7aa691cf69d5b33b7ee31330693e9)
commit 0969030f4e8b01314009e95b84426ee25e7d1066
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Nov 26 15:18:22 2019 +0100
core: print modparam type as string in log message
(cherry picked from commit f35fd46de42a26d910e637023396a801c0ad404c)
commit 5f0f06dc9c02031a367945b1b79d77a922398c63
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Nov 26 11:25:46 2019 +0100
rr: debug messages when setting send socket on double rr
(cherry picked from commit a0e04cb2a06ec2cae9a066003732746cb8d609d0)
commit de1970f67194e383345d773f3658f277de1ce8b7
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Nov 20 19:31:19 2019 +0100
ims_isc: null terminate dst_uri field
(cherry picked from commit a8cc28b6e0236b21569625baffa865ff4ce0a153)
commit 6f26ff89510a2cd20d1114f87eebb63342052344
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Nov 20 19:30:44 2019 +0100
ims_ipsec_pcscf: null terminate dst_uri fields
(cherry picked from commit a8be2459fc4013060944bf79e7c66b3613e8d04c)
commit 99f51cb6091d1c051ca38af9e43ee64ccb43ddd3
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Nov 20 18:06:22 2019 +0100
core: make dst_uri null terminated
(cherry picked from commit ca546d35c326666c6389c84ce45214bd2fc5c147)
commit dfdc5917f3c3d0faee1acea10317c6bc4a958e19
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Nov 19 15:34:00 2019 +0100
app_sqlang: imported latest squirrel interpreter
(cherry picked from commit b0fc60403b539672c6a2638083e8955783c65e0b)
commit b03256c62fc1f278e47e13765df651cffd48d06b
Author: Markus Bönke <[email protected]>
Date: Mon Nov 18 17:40:23 2019 +0100
dispatcher: Fixed typo in dispatcher_admin.xml
(cherry picked from commit 840d2babc7518e92ffc2173dc760828da1d2ff7b)
commit e400db248e737d282864c6b975177f3995836b8c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Nov 15 20:58:31 2019 +0100
dispatcher: docs for xavp_dst_mode to store socket string in dst xavp
(cherry picked from commit 6389c98d29eeb7f61547bb68ec9d59e4f47b7552)
commit 16e41ffcc834b2eaddb21f8517bda38afeac3ee2
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Nov 15 20:52:02 2019 +0100
dispatcher: option to set add socket as string in the dst xavp
- bit 2 has to be set for xavp_dst_mode modparam
(cherry picked from commit 8507efe8644c43a5f3b5d4dc27d557596b3b2f2c)
commit 08353d68f6db7d01e985cad95e9cb8911b9e5f15
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Nov 14 17:28:09 2019 +0100
pv: print missing types for xavp values
(cherry picked from commit 4b0b045a114591de6cc0655ae019029e337167d0)
commit fd489d716fae87c4b57bbc41e6dc5f89cdb00de3
Author: Sergey Safarov <[email protected]>
Date: Sat Jan 4 23:53:10 2020 +0300
pkg/docker: update submodule [skip ci]
commit 1373aedd261e77c71a0b27b8c4fff72ceb5cd0e7
Author: Sergey Safarov <[email protected]>
Date: Thu Oct 24 22:13:47 2019 +0300
pkg/kamailio/obs: packaged evapi module [skip ci]
Releated GH #2098
(cherry picked from commit 298abc9eb6240b9567df5166d64eba9f6da078dd)
commit 0f2835311ef8e23cdca217e35b5e7640a69c9d80
Author: Sergey Safarov <[email protected]>
Date: Sat Dec 21 07:31:20 2019 +0300
pkg/kamailio/obs: simplified fedora packaging rules [skip ci]
(cherry picked from commit 1fb5f81618dc142a51104c7b60d467eb1acd9261)
commit 7fa917eef3c1940bb9a178b5e538fd9931dd431c
Author: Kamailio Dev <[email protected]>
Date: Thu Dec 19 17:46:29 2019 +0100
modules: readme files regenerated - modules ... [skip ci]
commit e57e8e9e9301982078005ca5fdd9ad9c6310de64
Author: Henning Westerholt <[email protected]>
Date: Thu Dec 19 17:35:58 2019 +0100
dispatcher: small style fix in ds_probing_mode docs
(cherry picked from commit faccbb1cf62bfb625d0bcc9d1a52727dcdd962ff)
commit d9d677cbc30b2f771a3742c3aa95fd736dc48765
Author: Henning Westerholt <[email protected]>
Date: Thu Dec 19 17:32:14 2019 +0100
dispatcher: fix bugs in ds_inactive threshold and ds_probing_mode 2 (GH #2100)
- fix bugs in ds_inactive threshold and ds_probing_mode 2 (GH #2100)
- ds_mode 2 should ping only gateways with mode inactive and probing
- ds_inactive threshould should work also in ds_probing_mode 0 and 2
- move ping logic to a small helper function
(cherry picked from commit ee45c2a07292cc977a7a212cac18fd2156279588)
commit 1ebae0fa58ff83848336391422014580861bef03
Author: Henning Westerholt <[email protected]>
Date: Thu Dec 19 11:31:54 2019 +0100
sdpops: add missing line break for debug log
(cherry picked from commit 0d7b5bd4575c80053e1d3851aeae34d5fbd5cf0b)
commit 8d0d4e094940308fde0ff14ab4d6ddf74174ae0f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Dec 17 07:49:57 2019 +0100
Makefile.defs: use dedicated vars for pthread mutex flags
- CC_EXTRA_OPTS and LD_EXTRA_OPTS may be set from environment
(cherry picked from commit be34082aac3e275058f4747c3706499848ccd86d)
commit d231c2856d1c056614a7ec64cddb276312f67214
Author: Victor Seva <[email protected]>
Date: Mon Dec 16 11:39:11 2019 +0100
travis: build using pkg-kamailio-docker 5.3-$DIST tag
commit f36ac2aa2d5ac9ed9209176cd01b94c349c49cd8
Author: Kamailio Dev <[email protected]>
Date: Mon Dec 9 19:31:26 2019 +0100
modules: readme files regenerated - modules ... [skip ci]
commit 763c30cc65307b7cdd7dd54f604acdffecb9a4b7
Author: Dmitri Savolainen <[email protected]>
Date: Mon Dec 9 18:31:37 2019 +0300
rtpengine: doc typos
(cherry picked from commit b86fa175e92be4a2ab36f198ebc47d8f9b7c9e2a)
commit acd02bbcd3cdcc86f8be4807d4349d03e706db05
Author: Kamailio Dev <[email protected]>
Date: Thu Dec 5 10:16:46 2019 +0100
modules: readme files regenerated - modules ... [skip ci]
commit a9a26744f2aa469f090206850ed0016b8f22dea5
Author: Henning Westerholt <[email protected]>
Date: Thu Dec 5 10:05:14 2019 +0100
ims_usrloc_scscf: fix parameter example titles
(cherry picked from commit 55233fffb6ed9165bc912565ec782624dbffaa26)
commit 1e560eafb9ba0155bdbaee6cc54b344cfdd4aa31
Author: Kamailio Dev <[email protected]>
Date: Wed Dec 4 12:14:14 2019 +0100
modules: readme files regenerated - modules ... [skip ci]
commit 93d06acf1f1cc201ce3ca6970c2f73eec0e57d87
Author: Aleksandar Yosifov <[email protected]>
Date: Tue Dec 3 14:05:00 2019 +0200
ims_ipsec_pcscf: fixed defects and warnings:
- fixed a defect reported from Coverity Scan - Concurrent data access
violations in spi_gen.c for spi_data->spi_val.
- in create_ipsec_tunnel() return -1 when unable to convert ip address.
- in ipsec_create() go to cleanup instead return -1 when get request
for reply fails. Fixed debug message for that error.
(cherry picked from commit 8973feb34ab5059966158b34d3d3e3deb2af1b23)
commit dc322c0d24fec1a864e133bff6bb8a7a67e136b5
Author: Henning Westerholt <[email protected]>
Date: Fri Nov 29 19:40:03 2019 +0100
tm: extend t_newtran docs with a note about flag behaviour
(cherry picked from commit f2f492bd580621dec23d0538b8785635a013497a)
commit 3eac27269bb60ec062eb0c2058319c70a94e0fbb
Author: Greg Troxel <[email protected]>
Date: Thu Nov 28 20:53:23 2019 -0500
utils: Change sh(1) "test ==" usage to "="
The POSIX sh(1) specification says that strings are compared with
test(1) (also "[") with "=". Bash accepts "==" and this leads to
non-portable code. This commit simply changes "==" within test/[ to
"=".
(cherry picked from commit e8b8251f6c7382f8e373c2b309422973a3bf730d)
commit aa26d787ee21733dd1f4d13a6869302b28a229a5
Author: Marco Capetta <[email protected]>
Date: Fri Nov 29 09:28:45 2019 +0100
cfgt: fix detection of jump to previous-previous route
* this happends with onsend_route
(cherry picked from commit e0ed91acb88091caf285704689f72e48c5127ae4)
commit aa94a3a3310f9088b2b48ddeeb69ef0e78d5d6b3
Author: Victor Seva <[email protected]>
Date: Thu Nov 28 14:28:14 2019 +0100
cfgt: don't try to create dir if it already exists
(cherry picked from commit 6918a96cc61fa0b15e09db01bb02e9b9f8c78abf)
commit 7e5b726ec106fcc06f9ed406570b3f5fea72bd7e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Nov 27 20:28:49 2019 +0100
core: safety checks for xavp operations
(cherry picked from commit 1067abf87cdaabc9557a99b36ad60e2349e16fa5)
commit 2b4a62658176a72b99f0f5a1f8ea88fb6baad30c
Author: Sergey Safarov <[email protected]>
Date: Thu Nov 21 17:12:37 2019 +0300
pkg/kamailio/obs: fixed rpm requirment for python23
(cherry picked from commit 6677dfdba3534a0f50c15fe5b43b8220444b18ad)
commit c3392b750ebe70db7aee8928fd40b704af23a5d9
Author: Federico Cabiddu <[email protected]>
Date: Fri Nov 15 13:35:13 2019 +0100
core: add support for parsing http/2 replies parsing
(cherry picked from commit 17be36102e3a1c286c69a5da193dd8405000ab62)
commit 8b558ce9aa0625bdc2d3c66d795a450ce982a716
Author: Victor Seva <[email protected]>
Date: Thu Nov 21 08:15:03 2019 +0100
tm: execute TMCB_REQUEST_FWDED cb as BRANCH_ROUTE when necessary
(cherry picked from commit bc40eaa4fe446bffd9f41d5d6b21becd7b7fdc87)
commit 159e32c2c2cc3f2c5c3c226be3406bd91ca9a052
Author: rdboisvert <[email protected]>
Date: Tue Nov 19 16:05:34 2019 -0500
db_redis: allow deletion of all rows
(cherry picked from commit bf2ecd4dec55d5009e0904392d083e17af91977d)
commit 404c3ee38b6158d755f196c66f69eeee234f97e2
Author: Sergey Safarov <[email protected]>
Date: Mon Nov 18 20:45:48 2019 +0300
utils/db_berkeley: fixed unused var
kambdb_recover.c: In function 'load_metadata_columns':
kambdb_recover.c:819:6: warning: variable 'ret' set but not used [-Wunused-but-set-variable]
819 | int ret,n,len;
| ^~~
(cherry picked from commit 792261b43d74518e6d67f807df60b6622ba2d9f8)
commit 6867b0e47fa250c335746e3583ee6f248ab56904
Author: Sergey Safarov <[email protected]>
Date: Mon Nov 18 00:55:13 2019 +0300
pkg/kamailio/obs: added extra packages to centos 8, rhel 8 and 7 dists
(cherry picked from commit 24eb08c9cbcf4ab464ac5e8f2830bf8afa8a4271)
===================== 2019-11-14 Version 5.3.1 Released =====================
===================== Changes Since Version 5.3.0 ===========================
commit 97eb5e2558c5031794f4ca16ff8e5e46edf38ee3 (HEAD -> 5.3)
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Nov 14 12:25:09 2019 +0100
uac: reset credentials structure for uac_req_send() authentication
(cherry picked from commit 2b12754920704f49cd227c518e130cef4d76ea7d)
commit b18203a2114a2999532e15336874b69a70c20473
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Nov 14 11:49:21 2019 +0100
Makefile.defs: version set to 5.3.1
commit e6a359b6436ca433cdd8916020cf4a75898a6e2b
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Nov 14 11:47:19 2019 +0100
pkg: rpm/specs - set version to 5.3.1
commit 909aa7ea5e8a6a4825ec57997e65ea490205ef6a
Author: Victor Seva <[email protected]>
Date: Thu Nov 14 11:41:53 2019 +0100
pkg/kamailio/deb: version set 5.3.1
commit ae7a6f6e0950dcfb13e421ed64da6d9cd023f58c
Author: Henning Westerholt <[email protected]>
Date: Tue Nov 12 12:18:06 2019 +0100
core: bug fix in str2ipbuf, return an error for invalid input parameter
(cherry picked from commit a48d87dff0d266efabaf4b0312d2c228ccbd13ff)
commit e76e2cefb5112372bc76935dbb17670ca2c377b0
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Nov 11 10:51:33 2019 +0100
phonenum: use -std=c++11 cpp compile flag
- required by the libphonenumber
(cherry picked from commit 75c5a20a870985059f642ac1a6624655332dbca8)
commit 74e1b77336e9b7b9d16c48217190a8742a6efd63
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Nov 5 13:47:53 2019 +0100
core: slow timer - warning message if callback function is null
(cherry picked from commit 574b080d69b2b968cfe871bc7cfe8fdf930fbc2e)
commit 92454e1175698b6b00e1e1466859c30da6a6d342
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Nov 3 10:30:09 2019 +0100
core: qmalloc - print details of prev fragment when its tail is overwritten
- do it when check2 field is not touched
(cherry picked from commit bf1ba8d2d4519af50d44acfce5f34535fd1db8e0)
commit ed2befe76dc8987c3bcc22fb8f47db58d4d578f4
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Nov 2 18:04:23 2019 +0100
textops: remove check done in the called function
(cherry picked from commit 7261efbcd0826014227fbe814e4142cec0c79368)
commit c4e3f20eefe45a543bfaddce8d13434566d63b90
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Oct 31 09:54:22 2019 +0100
evapi: use local allocated buffer to get data parameter for event relay
- use system malloc given that the data can be passed from jsonrpcs,
which uses system malloc as well
- try to grow the internall buffer as needed based on estimated size of
output for the data parameter
(cherry picked from commit 63334e312d60a5d6a6470b0067c29db672d08c7c)
commit f8a8ad28bcc984938a65c1cf69adab06f460d2b0
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Oct 30 18:27:40 2019 +0100
acc: better evaluation of error return for pv_printf_s()
(cherry picked from commit 69ccdc25fbfaf01785127ecb051429e51df6cad5)
commit 8d7dbdd934375c7bbeed9bb8d6c75d98615aa0af
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Oct 30 18:26:34 2019 +0100
core: pv - function to get the size of the value for strings with vars
- added silent mode for printing strings with vars
(cherry picked from commit 6ee9e9c9dc2d818a5ce6c6cf7828a68a1c8cb291)
commit 3eca96c29ed5bc8d51643e8d9a87318a220c9042
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Oct 30 18:25:44 2019 +0100
core: use pv_elem_t for vstr fixup value get
(cherry picked from commit 73e36b6a467491252e1f81be1b8da66d6c1a4b1b)
commit 7bc98c4ebd8e8bff8417b8e9542c07badafda63e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Oct 30 15:41:04 2019 +0100
core: fixup helpers to get dynamic string parameter in own buffer
(cherry picked from commit 3e1438bebdf611b83574ab44c8ed3eb3c7067391)
commit 4ca6ad00eb71ea76dacf71c6126a4fe853d898c9
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Oct 30 10:14:07 2019 +0100
ctl: docs - more infor about binrpc_buffer_size modparam
- replaced ser with kamailio in a few examples
(cherry picked from commit c9070600af1b7993b003964b5c58db3391d50f60)
commit 3fb626bd5f9a5b5a21659f98d215234ce74e90a8
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Oct 28 10:00:28 2019 +0100
core: pad some fields in contained structs for 4 byte alignment
- safety for sigbus on strict cpu architectures when accesing fields by
address
(cherry picked from commit 1296bb2270985a1bf3af04f35e4cdae1fe4b184a)
commit 3950df29cd6f3f2c4a35e0cd8dde8c31180b99bb
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Oct 24 12:38:20 2019 +0200
statsc: debug message when fetching stats values
(cherry picked from commit a463c53e767114567ff25f0fe50115da0e3d0045)
commit c773828d392729cb27f99d7adeaf095084056aee
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Oct 22 10:49:18 2019 +0200
kamdbctl: split create user and grant access statements for mysql
- MySQL 8 doesn't support all in one statement
(cherry picked from commit c0879add55bef77703f2259f224b4a1f954cd8bf)
commit ff2705b98784b451a7fe37b8fe680a5032af2fb6
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Oct 21 08:28:09 2019 +0200
imc: docs - added section ids
(cherry picked from commit 6f9bb6427ce201863d60e3255debe31a6a7db776)
commit fe0b4cb34964b16f08e7b594d9ea1d0940994131
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Oct 18 08:52:23 2019 +0200
dispatcher: docs - details of returned code by ds_list_exists()
(cherry picked from commit 619b2603b486efea29fd314f360647f6d8ef3aec)
commit 46333e57afa8e90808c921c923e06c913c390c60
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Oct 18 08:48:27 2019 +0200
dispatcher: adjustments to ds_list_exist()
- info log messages made debug
- return -2 if evaluating the fixup param fails
(cherry picked from commit fcabdc012d5490cfc740d0e0773fd88ed07c2b64)
commit 6ec84c91c75e2bb8ac04245292b130ae99464098
Author: Sergey Safarov <[email protected]>
Date: Sat Nov 9 10:58:06 2019 +0300
pkg/kamailio/obs: replaced systemd-mini requirments by systemd [skip ci]
Also commit restrict requirements only for OpenSUSE Leap dists
(cherry picked from commit 0075472ef96c77ec38789af7bba744667a49ef22)
commit fb393b1a6e59ba0ca2ce2700aeb11c5f4e1291f8
Author: Aleksandar Yosifov <[email protected]>
Date: Mon Nov 4 13:51:07 2019 +0200
ims_usrloc_scscf: added '\n' for debug messages
- added a new line to the end of some debug logs for
better formatting.
(cherry picked from commit 90ff57e10f1b456b35dc8ac262457dbb2c497997)
commit 865bd055cb1ecea8c08976f41ef733a40444c74d
Author: Henning Westerholt <[email protected]>
Date: Thu Nov 7 18:25:36 2019 +0100
ims_registrar_scscf: formatting change for a few really long lines
(cherry picked from commit a7b8cb33d815fcea5dec7c82a33e8fcbad54ba03)
commit f6087e8084a3ccf854f53594e9c1c1998fcb3c39
Author: Aleksandar Yosifov <[email protected]>
Date: Thu Nov 7 18:11:21 2019 +0200
ims_registrar_scscf: added '\n' for debug messages
- added a new line to the end of some debug logs for
better formatting.
(cherry picked from commit 2e4727014fff86545bb9ce8bb97f72173d8c8c87)
commit 6d1abb352c772caf164486854a2609ca67a0142b
Author: Stanislav S. Litvinenko <[email protected]>
Date: Thu Oct 31 02:17:54 2019 +0300
ims_ipsec_pcscf: closing mnl_socket in some exceptional situations
- fix leak socket when error handling errors in creation or destruction ipsec tunnel
(cherry picked from commit 575102bef5418ddfef2f619f22dd827183eef8af)
commit 50dcbdf4f6f2a99d1a60aa0d676612c782285133
Author: Henning Westerholt <[email protected]>
Date: Thu Oct 31 16:39:59 2019 +0100