forked from kamailio/kamailio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
10786 lines (7214 loc) · 358 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-07-29 Version 5.5.0 Development =====================
===================== Changes Since Version 5.4.0 ===========================
===================== 2020-07-29 Version 5.4.0 Released =====================
===================== Changes Since Version 5.3.0 ===========================
commit 41a7f134be420b0a7169b83f2ef5f5961b58a50c (HEAD -> 5.4)
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jul 29 09:07:39 2020 +0200
pkg/kamailio: version set to 5.4.0 for alpine spec
commit fcd13ecc50e2e75c33045673a932843a0d07d94b (HEAD -> 5.4)
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jul 29 09:03:56 2020 +0200
Makefile.defs: version set to 5.4.0
- new major release series
commit 6498149122afe485f0dcbca61febdfde8e5ca99e
Author: Kamailio Dev <[email protected]>
Date: Tue Jul 28 08:46:33 2020 +0200
modules: readme files regenerated - modules ... [skip ci]
commit 7885322c2ad36db4cf56a51a4e9215c05e0c70f6
Author: Julien Chavanton <[email protected]>
Date: Thu Jul 9 16:24:59 2020 -0700
rtp_media_server: update to mediastreamer 4.4.0
update documentation to simplify usage using docker
(cherry picked from commit 32350bcb48757f2431fe463167a2816a702a8cb7)
commit ecedb702cacc4b46c474d6f48e6774985fe484e3
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jul 27 09:37:23 2020 +0200
dialog: print old state on dlg timeout
(cherry picked from commit 06b7e416756e1711edef6db683cef35824f4b2a5)
commit 054eabae916ba9d670b7967e67af1ceb5e5b0ae9
Author: Henning Westerholt <[email protected]>
Date: Thu Jul 23 15:23:15 2020 +0000
tm: lower log level for t_unref kill transaction to WARN
- lower log level for t_unref kill transaction to WARN
- immediate CANCEL on an INVITE could trigger this
(cherry picked from commit d85d43247c3d056eebeec3f97735d13c048a181c)
commit 1421556163ad26ff9b68f8aaf6b17288d431eefb
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 21 22:34:09 2020 +0200
README: updated version
commit a13b055292999197ac21d23568d0c3ace8b9e87a
Author: Kamailio Dev <[email protected]>
Date: Fri Jul 17 15:16:25 2020 +0200
modules: readme files regenerated - modules ... [skip ci]
commit e8ef3c2bb57c3c35ca023d3b01577435f7b80529
Author: Marat Gareev <[email protected]>
Date: Fri Jul 17 15:22:33 2020 +0300
xhttp_prom: fixed typo in the documentation [skip ci]
(cherry picked from commit fbfc720a82ed2e6c537fd7fa36b913cf079123ae)
commit ffb0576bd7d93303fb1068a332d9477a4d04471b
Author: Lucian Balaceanu <[email protected]>
Date: Tue Jul 14 11:48:45 2020 +0300
p_usrloc: reworking mdb_availability_control
- simplify general implementation
- avoid deadlock due to a process trying to acquire same lock twice
(cherry picked from commit 5789c506d022dd5713072cd1fcc07a25f42e098c)
commit ac436f2ee8103a6ce7b7648af5666d9e940bec15
Author: Victor Seva <[email protected]>
Date: Fri Jul 17 10:41:11 2020 +0200
pkg/kamailio/deb: version set 5.4.0~rc1
commit dc082cec6f846df66ec3fa06a6c119b0d418ef19
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 17 09:19:55 2020 +0200
Makefile.defs: version set to 5.4.0-rc1
commit eda93e7935624b39ac622a76cefc977425b2c413
Author: Kamailio Dev <[email protected]>
Date: Thu Jul 16 17:32:08 2020 +0200
modules: readme files regenerated - modules ... [skip ci]
commit d0f7c7056b32351cac0b20ce24b074d9be8459a2
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 16 09:16:40 2020 +0200
core: strutils - trim trailing spaces when comparing hdr names
(cherry picked from commit 6d76b79b81bf448fa1f34753c1d000dc6c1870e0)
commit 63e227383d9c5112f287299981d217f1558a15a8
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 16 09:09:48 2020 +0200
core: parser - trim trailing whitespaces in header name
(cherry picked from commit 7135feee9cdc93efa8c0c3e4abf24a9335ce42de)
commit 4584e17b98f338916cc89dac6e1700f250cdf501
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jul 15 17:59:51 2020 +0200
dispatcher: update state if sending keepalive OPTIONS fails
- it can be due to DNS resolving failure, therefore needs to be counted
for making it inactive, otherwise keeps failing and writting errors
(cherry picked from commit 6c77c86ab8fdec51293f0d850b9b9771d6266816)
commit 0cf30ae1c4128bca8882109ec34c34a2dd2b4cef
Author: lazedo <[email protected]>
Date: Mon Jul 13 13:01:43 2020 +0100
core: don't close tcp connection for dropped non sip messages
(cherry picked from commit 007f98692bb6f7cb35adbb86ec6fb06f034614cc)
commit afc66f390e135f091dfa7abcc058175817350589
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 14 09:21:04 2020 +0200
misc/examples: kemi lua - added debug callback function
- commented - can be enabled to track the execution trace of the lua
script
(cherry picked from commit 491a8327933cb4471260fdd09ff93296a7a0ccfd)
commit 4f3c646772e3a6c769e8ff58bb42cf19186c39f4
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jul 13 10:08:42 2020 +0200
sipdump: docs - note about use of drop() in event route
(cherry picked from commit f984505b3ed41b7faf0fca5ab978c52240cd60a0)
commit ef819eb33cdaa8e143148915296c60e03179e819
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jul 13 09:46:44 2020 +0200
sipdump: if drop executed in event route, skip writing to file
(cherry picked from commit 1672a9b356cc864310d0ade139d7c8bb6c4c4b11)
commit a472aaae69f7bd483c232cc5c9f59078bad1e938
Author: Richard Fuchs <[email protected]>
Date: Tue Jul 14 14:13:00 2020 -0400
db_redis: fix unfiltered table deletion
commit d6dbd6aa1816ca3f18059db20cb6c47b4a9fb17a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 14 11:18:53 2020 +0200
core: only skip over proto in alias inside uri_trim_rcv_alias()
- variable not used if set to the corresponding integer id
(cherry picked from commit 58b0631aafd7d6efa5534009fab197336468a9f8)
commit 1a8f54147063560f6016634152b17293394b8497
Author: Henning Westerholt <[email protected]>
Date: Sat Jul 11 11:03:26 2020 +0000
ims_charging: fix wrong default User-Equipment-Info-Type AVP format
- fix User-Equipment-Info-Type AVP format
According to the RFC 8506 it should be like this: The 48-bit Media Access
Control (MAC) address is formatted as described in Section 3.21 of [RFC3580]
- use strlen instead of sizeof
commit 1c99504b14fdd1bdddc9f159f03694e940a61009
Author: Victor Seva <[email protected]>
Date: Fri Jul 10 13:32:03 2020 +0200
pkg/kamailio/deb: version set 5.4.0~rc0 [skip ci]
commit 8416bde3a2e3c40315087053152783372965ec00
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 10 09:31:25 2020 +0200
Makefile.defs: version set to 5.4.0-rc0
- branch 5.4 created to hold the code for release series 5.4.x
commit bb2cf364e22d15e764ea71d2782cd39f94aef048
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 10 09:24:58 2020 +0200
Makefile.defs: version set to 5.4.0-pre2
commit 2acd444871db828873cd5cd3c45a604e246831ca
Author: Henning Westerholt <[email protected]>
Date: Thu Jul 9 19:24:49 2020 +0000
ims_charging: fix for app_provided_party functionality, also support interim/stop reqs
commit ccb86e766b82b739e23afcf47a35cccb89296325
Author: Kamailio Dev <[email protected]>
Date: Thu Jul 9 15:31:14 2020 +0200
modules: readme files regenerated - dlgs ... [skip ci]
commit 33afceac9c585e9755580ca5748c2b40cd70cd5f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 9 15:25:39 2020 +0200
etc: kamailio.cfg - use enable_sctp instead of disable_sctp
- be coherent with tls variant
commit b4f0b373654a6f5ed4123e868e8f14d980a006c3
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 9 15:23:18 2020 +0200
dlgs: adjusted the route blocks allowed for exported functions
commit cec3e862db86699b271c00e39dd7ce6f84ff013f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 9 15:22:32 2020 +0200
dlgs: docs for params, functions and rpc commands
commit aebae41bccaec46d086796301d33223645ca1ce6
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 9 14:09:32 2020 +0200
etc: kamailio.cfg - several updates
- use force_rport() at the beginning of processing requests, note added
in the top comments to inform that config performs symmetric signaling
- load textopsx module and added define option to apply changes before
presence handling, so changes to headers or body are visible to presence
functions
- modparams to enable use of Path for registrar module
- modparam timer_procs for usrloc module
- a bit of refactoring for debug mode, level being set by a defined
token and log_stderror is set always to no, so even with higher debug
level logs are sent to syslog (added comment how to enable it via
setting value to 'yes' or using -E cli option)
- updated notes for debug mode and listen param
- GH #2381
commit 7ae02bca24c1ed2ce80158cdc151e65e7fa2f904
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 9 11:35:43 2020 +0200
dlgs: matching op with regex and fnmatch
commit 9965578ecb4e8b98156a7a662f8077ba5acd6c32
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 9 10:50:29 2020 +0200
dlgs: rpc commands to get records by filter
commit 8cb69c32af3162f4c85217cba016a04ba2591747
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 9 10:03:01 2020 +0200
dlgs: rpc dlgs.briefing command
commit 7dea31780a8e0eac8f97df134688acf21fc17b98
Author: Kamailio Dev <[email protected]>
Date: Wed Jul 8 22:46:11 2020 +0200
modules: readme files regenerated - lost ... [skip ci]
commit 827307c5fc70381a4c80e1cc1937952480c93633
Author: Wolfgang Kampichler <[email protected]>
Date: Wed Jul 8 22:30:09 2020 +0200
lost: doc edits
- fixed typos
- added test information
commit 890ebc6f0194e7010130a1e17e720799cf6722e1
Author: Kamailio Dev <[email protected]>
Date: Wed Jul 8 18:01:26 2020 +0200
modules: readme files regenerated - nathelper ... [skip ci]
commit d594ff8d0408f0f66ce3ed09c93a59647246a319
Merge: a6652652b9 1bc33f1a4e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jul 8 17:58:35 2020 +0200
Merge pull request #2393 from tao-communications/master
rtpengine: added kemi support for block/unblock media/dtmf, and play/â¦
commit a6652652b9bbf5e89c1368c9c33aefa965f45c31
Merge: 317f707425 3c02c11d66
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jul 8 17:57:58 2020 +0200
Merge pull request #2390 from kamailio/nathelper-set_contact_alias-trim
nathelper: add optional set_contact_alias([trim]) parameter
commit 317f707425a4cf0be144d2c874fcdf2ad8d7f992
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jul 8 14:44:34 2020 +0200
core: tcp - debug message when removing connection from list
commit 41bdb340952aa3c2c9b45ca2807e4366908c1b42
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jul 8 14:28:04 2020 +0200
kamailio.cfg: set disable_sctp to yes
- in auto mode a log message is printed about not having sctp module
loaded, which is not done in the default config
commit 5aace32c937f4885a19b204d13170a337e7c0ad8
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jul 8 09:27:34 2020 +0200
dlgs: tags operations and counting functions
commit 626c0dee863fa517e473148ca8010d737a8f7ffe
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 7 19:28:29 2020 +0200
kamctl: skip tracing kamctl itself in pstrap
commit 904a1590dbcdbb0fda9f676b4768596f797e9e27
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 7 19:18:52 2020 +0200
kamctl: print process details in pstrap output
commit 97ec85559f1e33405fff2320443dc86d2df13456
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 7 18:57:27 2020 +0200
kamctl: added pstrap command
- use ps to get list of PIDs for Kamailio instance, instead of RPC
core.psx
commit 846cc5b97a907b5314ccf03772776e0d23434042
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 7 17:37:00 2020 +0200
core: io wait - unhash in case delete operation fails because of EBADF
- EBADF: epfd or fd is not a valid file descriptor
commit cb58e78eaac941cc042a71e049568b2dae611e4b
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 7 17:36:22 2020 +0200
Revert "core: io wait - unhash in case delete operation fails because of EBADF"
This reverts commit 60119faef5282b135ef7c972d15e1017ca26815a.
commit 60119faef5282b135ef7c972d15e1017ca26815a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 7 17:25:00 2020 +0200
core: io wait - unhash in case delete operation fails because of EBADF
- EBADF: epfd or fd is not a valid file descriptor
commit 1bc33f1a4e4ba4c6c43cd74fb8336c2f6846092d
Author: Yufei Tao <[email protected]>
Date: Fri Jul 3 18:01:30 2020 +0100
rtpengine: added kemi support for block/unblock media/dtmf, and play/stop media functions
commit 331a5f999b9aa4ddd112b837bb3d350507de2a12
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jul 7 09:26:22 2020 +0200
dlgs: filled tags add and count functions
commit 65159728a4425f45559de55fd5549731e717d74e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jul 6 09:03:32 2020 +0200
carrierroute: do not test return for strcpy() and strcat()
- they return the dst or src parameter, resulting in code analyzer
reporting
commit 0cc1e167b9e54bb4a652162445efe89b02939eed
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Jul 5 20:50:00 2020 +0200
db_redis: use safer localtime_r() function
commit ebf80aca06cdbba1f00d502168ee8ab4d1d3d14f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Jul 4 17:50:54 2020 +0200
dispatcher: variables declared at the beginning of blocks
commit 6a637cf84906ec5315c77e5458180f7d9d69a481
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 3 23:00:24 2020 +0200
core: tcp - test connection reference counter to avoid going negative
commit 3c02c11d66c95102698ee52187952bd98a51510c
Author: Emmanuel Schmidbauer <[email protected]>
Date: Fri Jul 3 14:00:57 2020 -0400
nathelper: add optional set_contact_alias([trim]) parameter
commit bfdcef8ef550b74fecc38b1bdb8fcb20ccb279b7
Author: Emmanuel Schmidbauer <[email protected]>
Date: Fri Jul 3 13:33:08 2020 -0400
core: add function uri_trim_rcv_alias() to trim alias uri param from header
commit 9322a98cd451fa470c8ff93f85758f41c4fc6bce
Author: Kamailio Dev <[email protected]>
Date: Fri Jul 3 19:31:10 2020 +0200
modules: readme files regenerated - nathelper ... [skip ci]
commit 626fbd002e4d569767e84a99a2163d0bd9ff6efd
Merge: 339b94ce71 2802bd75cd
Author: Emmanuel Schmidbauer <[email protected]>
Date: Fri Jul 3 13:26:13 2020 -0400
Merge pull request #2389 from kamailio/revert-2388-nathelper-set_contact_alias-trim
Revert "nathelper: add optional set_contact_alias([trim]) parameter"
commit 2802bd75cd03e16bf6541fde1d6459bda2698153
Author: Emmanuel Schmidbauer <[email protected]>
Date: Fri Jul 3 13:22:16 2020 -0400
Revert "nathelper: add optional set_contact_alias([trim]) parameter"
commit 339b94ce713b2a3d3763d2c15c8d1437362f648e
Author: Kamailio Dev <[email protected]>
Date: Fri Jul 3 16:46:13 2020 +0200
modules: readme files regenerated - nathelper ... [skip ci]
commit 07f2857f76870f9f0fd360c6990df8f7cb0f5ffc
Merge: 67f9de8a94 f254478928
Author: Emmanuel Schmidbauer <[email protected]>
Date: Fri Jul 3 10:32:25 2020 -0400
Merge pull request #2388 from kamailio/nathelper-set_contact_alias-trim
nathelper: add optional set_contact_alias([trim]) parameter
commit 67f9de8a946335e2bf16fe0e6063877cd4d51fb7
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 3 14:02:20 2020 +0200
core: tcp - safety checks on emptly local tcp connection list
commit fefb3f1b2dbae8d9df24fecee763c5a1cd588107
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 3 10:49:43 2020 +0200
core: tcp - more details on error log messages
commit fbb4312f1b2ebf6793408241d56bfc2dca6543ec
Merge: 0780e781c3 a2932492e2
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 3 09:40:12 2020 +0200
Merge pull request #2386 from kvrban/master
tcpops: target variable passed on tcp_get_conid function was empty
commit 0780e781c319254307c85bd873c58c6478a28da8
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 3 08:33:13 2020 +0200
lib/srdb1: init timeval structs to silent analyzer
commit d0d2c8fd6a57affac7bffab441b2126b9df0dfb1
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jul 3 08:30:46 2020 +0200
core: init timeval structs to silent analyzer
commit 52993e9919cf32c3c804421d01f4148bcc560cb7
Author: Kamailio Dev <[email protected]>
Date: Thu Jul 2 19:16:11 2020 +0200
modules: readme files regenerated - mqueue ... [skip ci]
commit dd52d1ce91a1e6a4907161cc7d8294b4ba5d13aa
Merge: c3efb3b333 c85da32333
Author: Julien Chavanton <[email protected]>
Date: Thu Jul 2 10:03:56 2020 -0700
Merge pull request #2359 from kamailio/jchavanton/mqueue_db_persistent
mqueue: add support for db persistency
commit c3efb3b3331936a30f387e9f3c8c435d4d64f0bb
Author: Henning Westerholt <[email protected]>
Date: Thu Jul 2 16:05:51 2020 +0000
ims_charging: bugfix for tel URIs, need the same logic in stop as in start requests
commit f2544789283d7ffbeda019c8a3d96e833bf34cc9
Author: Emmanuel Schmidbauer <[email protected]>
Date: Thu Jul 2 11:43:45 2020 -0400
nathelper: add optional set_contact_alias([trim]) parameter
commit 798c1c66a7ef34abaf79d49d184853a313aa3f02
Author: Kamailio Dev <[email protected]>
Date: Thu Jul 2 16:46:17 2020 +0200
modules: readme files regenerated - cnxcc ... [skip ci]
commit 53a7eb76d215347e8e6515b93a3a041e68dfc984
Author: Victor Seva <[email protected]>
Date: Thu Jul 2 16:34:02 2020 +0200
pkg/kamailio/deb: version set 5.4.0~pre1 [skip ci]
commit bc0264f4802c266901a1eb7a296f80f1dbfcc828
Author: Jose Luis Verdeguer <[email protected]>
Date: Wed Jul 1 17:47:59 2020 +0200
cnxcc: update docs [skip ci]
* new error return values
* delete return value from set_max_credit not in code
commit fb8cc72f1bd76bb2fd4d4e2e5fa2afc50eef59ad
Author: Jose Luis Verdeguer <[email protected]>
Date: Wed Jul 1 17:40:50 2020 +0200
cnxcc: avoid duplicated call info
Don't store call if call-id is already registered for that client
commit 4cb61cc35a695e2636007f6518a63ed8e508b67f
Author: Henning Westerholt <[email protected]>
Date: Thu Jul 2 09:09:27 2020 +0000
ims_charging: add missing change for ccr.c (related to previous commit f5e44252c39c7695cb)
commit 63064361c9d42602bb5f0e1d6d9a1f888c5cb9b8
Author: Kamailio Dev <[email protected]>
Date: Thu Jul 2 11:01:18 2020 +0200
modules: readme files regenerated - ims_charging ... [skip ci]
commit f5e44252c39c7695cb66893035a0581a65a72f91
Author: Henning Westerholt <[email protected]>
Date: Thu Jul 2 08:54:20 2020 +0000
ims_charging: bugfix for destination_host parameter, implementation was incomplete
commit 71bc55240a144dbad9d9d8afc942b81237c806d2
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 2 10:44:03 2020 +0200
ims_charging: db_url param type set to PARAM_STR
- the variable pointer is str* not char*
- GH #2385
commit a2932492e24ac3c3afe4d33f025c7501c93fda49
Author: kvrban <[email protected]>
Date: Thu Jul 2 10:09:09 2020 +0200
tcpops: target variable passed on tcp_get_conid function was empty
commit 4ce047acc68932b6b0271b7c8e7a11c235f382b2
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 2 09:29:11 2020 +0200
Makefile.defs: version set to 5.4.0-pre1
commit 2c622627ea145eddcf891ba9b89b756457074991
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 2 09:10:48 2020 +0200
usrloc: rpc scan flags, cflags and methods fields as unsigned int
commit 301525dfbbad2ffcec6738ef5eff952645ab9dfe
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jul 2 09:09:47 2020 +0200
kamctl: set Path to '.' when parameter not set for 'ul add'
commit 0a4fa9594d871a41c2ef6b811e2b342ed6ccfe09
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jul 1 20:53:45 2020 +0200
jsonrpcs: more debug messages in case field of scanning failure
commit 4dc7b49f6b80305dc7c44d3dc95028ae282568ac
Author: Victor Seva <[email protected]>
Date: Wed Jul 1 11:18:39 2020 +0200
pv_headers: pvh_set_header() fix core if $xavi not found
commit c85da32333237359f9e8b9cfe6715437458c04a8
Author: Julien Chavanton <[email protected]>
Date: Wed May 20 14:44:30 2020 -0700
mqueue: add support for db persistency
commit a369ed969e956d491f2ced3bc72a8e21343fbe18
Author: Sergey Safarov <[email protected]>
Date: Tue Jun 30 15:42:37 2020 +0300
pkg/docker: updated submodule
commit 92f33c4488725a85921b3b66010f64c5bdfec802
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jun 30 12:17:50 2020 +0200
sl: check if ending zero fits when printing cseq
commit 1d256290cf10414a2f1af1feda3c9a357eb8ac27
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jun 30 12:10:06 2020 +0200
imc: let space for ending characters
commit d6361c2e501cd9c08319f40897d765d1de1b1a32
Author: Victor Seva <[email protected]>
Date: Mon Jun 29 18:31:37 2020 +0200
cnxcc: remove useless warn messages
if the cid is not equal, an error message is going to be thrown.
Add more info in the later debug message.
commit 7ac314353f206924234ee416829fc9d75f52a737
Author: Kamailio Dev <[email protected]>
Date: Mon Jun 29 08:31:12 2020 +0200
modules: readme files regenerated - carrierroute ... [skip ci]
commit 214c762c46d5cd5892d2ddc06a25193a01164e8b
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jun 29 08:25:11 2020 +0200
carrierroute: docs - note about config file ownership
- GH #2369
commit 31c7493d0d822239a76df4b504b2c319de09c19c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jun 29 08:19:34 2020 +0200
carrierroute: more details on error message checking file permissions
- GH #2369
commit bcae4ab3274b502921fbf0525455c1474e7a63a4
Author: Kamailio Dev <[email protected]>
Date: Mon Jun 29 08:01:13 2020 +0200
modules: readme files regenerated - dispatcher ... [skip ci]
commit ae828e8c671206f15afd913492833f994ca73435
Merge: b7c7976d3e bef306b97e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jun 29 07:48:13 2020 +0200
Merge pull request #2375 from sergey-safarov/dipatcher-frmating
dipatcher: dockbook and config formatting
commit b7c7976d3e84ac648b689e5e496e619f587a4eb9
Author: Kamailio Dev <[email protected]>
Date: Mon Jun 29 07:46:20 2020 +0200
modules: readme files regenerated - dlgs ... [skip ci]
commit f757a5e1a092bff4a1dbaa7da2d02f06e3a3e32e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Jun 28 15:19:42 2020 +0200
dlgs: update final stats when item is destroyed
commit 7a47812f10f23897f3455a5abbede3a53c8c2d0e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Jun 27 19:04:28 2020 +0200
dlgs: docs for dlg.stats command
commit 5c2b93f61b8970cd174c4d4055f7dbc1ddccaa12
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Jun 27 16:28:23 2020 +0200
dlgs: dlgs.stats rpc command
commit 61d9d204c33c1b140ed90d51e9af13ec4ed12a96
Author: Kamailio Dev <[email protected]>
Date: Sun Jun 28 15:01:25 2020 +0200
modules: readme files regenerated - ims_charging ... [skip ci]
commit f679c118a589c80cb84954fb46271adef596e049
Author: Henning Westerholt <[email protected]>
Date: Sun Jun 28 12:45:43 2020 +0000
ims_charging: fix error in destination_realm default vaulue
commit ec0b1d31f1d667abdcd7cce7fbfff110583e271c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jun 26 22:27:43 2020 +0200
siputils: docs - added section ids for parameters
commit bef306b97e62dfdb5297a1589541a69e68bbcae0
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 22:49:02 2020 +0300
dispatcher: cfg - simplified WITHINDLG
route[PRESENCE] contains exit command, so we removed extra exit
Also some formatings
commit 73a523ba02cc4f4d25636a03344c45a5af7ac295
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 22:46:35 2020 +0300
dispatcher: cfg - simplified WITHINDLG
route[RELAY] contains exit command, so we can simplify construction
commit df73f60011497a7346c122cd4328e9564862a448
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 22:39:14 2020 +0300
dispatcher: cfg - more simple nesing for route[WITHINDLG]
commit 948e04761029c17841b86a2a133f042b69f264ac
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 22:34:14 2020 +0300
dispatcher: docbook - ident formating using Oxygen 13
commit 76e1d0ea1789dc122a04bb82be9b90cb43c64450
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 22:26:48 2020 +0300
dispatcher: docbook - fixed 'Attribute "xmlns:xi" must be declared for element type'
commit b22d83175a3979ff91ecfad34b1623e7cbad1f1b
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 22:23:36 2020 +0300
dispatcher: docbook - ident formating using Oxygen 13
commit c96ddb32d023f1f6dff1e87160c657c4b9cc1a8d
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 22:19:30 2020 +0300
dispatcher: docbook - fixed 'Document root element "chapter", must match DOCTYPE root "book".'
commit cb232a7f535502ed181bd78741fc7b8fc048025d
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 22:17:40 2020 +0300
dispatcher: docbook - space formating
commit 397ad54d977ed2b17d7f936f97b24ce5a235af22
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 22:10:55 2020 +0300
dispatcher: docbook - space formating
commit 51d1c2ebc251b930ee40d854a84995c911b86db4
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 21:59:40 2020 +0300
dispatcher: docbook - fixed 'Attribute "xmlns:xi" must be declared for element type'
commit 378952672659ccec883f18f77b8c932a73fc657e
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 21:49:09 2020 +0300
dispatcher: docbook - fixed "The content of the parent element type is element only."
commit 44f62bd8e0a4c0ef7a9d2b87e52941b0f62d41bd
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 21:42:59 2020 +0300
dispatcher: docbook - fixed "The content of the parent element type is element only."
commit 715d49b62bef30b485d3975acd20b406c444956f
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 21:28:19 2020 +0300
dispatcher: docbook - fixed "Document root element "chapter", must match DOCTYPE root "book"."
commit 60e29f96ae57489669d1c266255e94b449e07dac
Author: Sergey Safarov <[email protected]>
Date: Thu Jun 25 21:05:55 2020 +0300
dispatcher: docbook space formating
commit 319d925187149d3fdb373938662dc28a1687d43c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jun 25 07:35:30 2020 +0200
dlgs: update stats on hash table slots
commit 9d9bb4c02e8dc870e5a65a5fb87ec28c825738d1
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 24 18:19:53 2020 +0200
dlgs: fill in the totag on answer response
commit edd35d35e4a0bffc0d68decb6a7895b4d47823dc
Author: Kamailio Dev <[email protected]>
Date: Wed Jun 24 21:16:15 2020 +0200
modules: readme files regenerated - pua ... [skip ci]
commit 9adccda325d258fe539b54ec67d4389d3a2fc72c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 24 21:05:56 2020 +0200
pua: docs - fixed missing comma in example
- picked from #2371
commit 6e3a8aea7f9f6dde462c86dfd8cd3027c2751e98
Merge: 12b3cfe6fb 1b4afb70c1
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 24 21:00:11 2020 +0200
Merge pull request #2372 from danielmartinezruiz/keepalive_config_ka_ping_from_value_cut_off
keepalive: manage the `ping_from` config value as str.
commit 12b3cfe6fb6c48de28a9aee0420328c6ae863663
Merge: 224f16431c 6b708e937d
Author: Emmanuel Schmidbauer <[email protected]>
Date: Wed Jun 24 14:59:45 2020 -0400
Merge pull request #2373 from kamailio/mohqueue-issue-2370
mohqueue: use t_newtran() if transaction does not exist
commit 6b708e937d161101adc91a4de5a527bf190b55c0
Author: Emmanuel Schmidbauer <[email protected]>
Date: Wed Jun 24 14:32:15 2020 -0400
mohqueue: use t_newtran() if transaction does not exist
commit 224f16431c2a7777c87d7926b361574e25f27ef6
Author: Sergey Safarov <[email protected]>
Date: Wed Jun 24 17:49:24 2020 +0300
pkg: obs/kamailio.spec - simplified pkgconfig requirements
for more detail pleae look GH #2368
commit 3331fa6e30b90489be8aec718c4e97232f610ba6
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 24 13:06:54 2020 +0200
dlgs: return sip attributes in rpc list command
- adjust route types permissions for cfg functions
commit 1eb27d8c5df0c8cbc8bdcb4a110f1fcee9c0e34e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 24 13:05:22 2020 +0200
tm: execute SREV_SIP_REPLY_OUT event on relayed reply
- cosmetisation of some debug messages
commit 238c5d70a472cf7903bac09c04581c37323afd55
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 24 13:04:11 2020 +0200
core: events - fix the field name for SREV_SIP_REPLY_OUT
commit 1b4afb70c1c8228bc4dbae6e7ab433c4187b9867
Author: Daniel MartÃnez Ruiz <[email protected]>
Date: Wed Jun 24 10:28:04 2020 +0200
keepalive: manage the `ping_from` config value as str.
Managing the config value as a string (`char*`) doesn't change the string size, so the value is cut off to the default value size (26 chars).
commit fbc55950c8ac0c34c5b6693c1578de7cd11b484c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 24 09:12:58 2020 +0200
avpops: free fname1 in case of error getting fname2
commit 92ef21d77d9ded1f1fda7dd83934e073e557dfb8
Merge: 71248a2f73 c4684574e0
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 24 08:26:29 2020 +0200
Merge pull request #2367 from kamailio/dialog-improve-warning-msg
dialog: improve warning message to help better identify dialog lookup failures
commit 71248a2f7394b69c85f030f103afb2a8f6a5a49e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jun 23 19:00:13 2020 +0200
pkg: obs/kamailio.spec - set version to 5.4.0
- set packager to Sergey Safarov
- add more build requirements, including those from GH #2368
commit f4036c535033a333cb551b5af70703135305e7b3
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jun 23 08:01:48 2020 +0200
dialog: use the dlg hash table slot to unlock on dmq handling
- the dlg can be destroyed on dmq replication and unlocking may fail
commit ea8dec941897f23a0c04d045edfed80a41e042cf
Author: Sergey Safarov <[email protected]>
Date: Mon Jun 22 18:51:56 2020 +0300
pkg/kamailio: fixed -pre release RPM packaging
commit a7e08a6c6baa9a4cf35f3a6589dff53f27253deb
Author: Sergey Safarov <[email protected]>
Date: Mon Jun 22 17:58:57 2020 +0300
pkg/kamailio/obs: packaged dlgs module
commit 41db985ebfcb691f2e20e689a83379e382ef6c03
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jun 22 15:32:30 2020 +0200
evapi: free addr info in case of bind error
commit 21a6c7bd41b825a9dfff7632e432e05f761567a0
Author: Kamailio Dev <[email protected]>
Date: Mon Jun 22 08:31:26 2020 +0200
modules: readme files regenerated - uac ... [skip ci]
commit 295e9a23df952bc98c2a2803d796e358363b2e22
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jun 22 08:22:55 2020 +0200
uac: docs - updated examples to use avps with string names
- the recommended format instead of interger ids
commit e3cf23b11f2fef44f45aeffe28065f98f6eb105f
Author: Kamailio Dev <[email protected]>
Date: Sun Jun 21 19:46:24 2020 +0200
modules: readme files regenerated - db_mysql ... [skip ci]
commit 56536708c5537c7443aa7a777fad0dc941e1bc71
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Jun 21 19:31:07 2020 +0200
db_mysql: docs - proper location for opt_ssl_mode in params section
- reported by Juha Henianen
commit fcd05ea3f509181506f4ddb633ba016fe9ebf107
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Jun 20 21:44:37 2020 +0200