forked from kamailio/kamailio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
16312 lines (11055 loc) · 542 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
===================== 2017-02-28 Version 5.1.0 Development ==================
===================== Changes Since Version 5.0.0 ===========================
* changelog is not updated for development version (master branch)
* use 'git log' to view details of the commits in master branch
===================== 2017-02-27 Version 5.0.0 Released =====================
===================== Changes Since Version 4.4.0 ===========================
commit 8924916a0295053ea2f86d10de44b68da4259157
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Feb 27 14:32:00 2017 +0100
Makefile.defs: version set to 5.0.0
commit 78897770f3ce940052f339533b60cc428409d6e1
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Feb 27 14:11:20 2017 +0100
pkg/rpm: version set to 5.0.0 in spec files
commit 04e8f5e732dbfd13f6e321d384134998443b739c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Feb 27 13:50:06 2017 +0100
carrierroute: enclosed unused functions in ifdefs
- they were used by mi commands and may be needed when re-introducing
the equivalent in rpc commands
- reported by GH #1010
(cherry picked from commit c62409bdd317f61df0e7cc16fbb8aa9ccebcefb5)
commit 69b81c8553f891179553897fadc57d000995327e
Author: Victor Seva <[email protected]>
Date: Mon Feb 27 11:02:37 2017 +0100
pkg/kamailio/deb: version set to 5.0.0 [skip ci]
commit fabac74ad237e57e6ebe8a5f56f9de6a8942eabd
Author: Kamailio Dev <[email protected]>
Date: Thu Feb 23 23:16:16 2017 +0100
modules: readme files regenerated - modules ... [skip ci]
commit e52af8d31a10e51795ec239457794a446ecb8bc0
Merge: 502769f 802bf61
Author: The Root <[email protected]>
Date: Thu Feb 23 23:16:08 2017 +0100
Merge branch '5.0' of https://github.com/kamailio/kamailio into 5.0
# By Daniel-Constantin Mierla
# Via Daniel-Constantin Mierla
* '5.0' of https://github.com/kamailio/kamailio:
modules: fixed broken xml docbook files
commit 802bf616d042476cc1c8f688efdf99694cd2fb77
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Feb 23 23:12:55 2017 +0100
modules: fixed broken xml docbook files
commit 502769fed4decf159ea664bd523a44cfa9d9ead1
Author: Kamailio Dev <[email protected]>
Date: Thu Feb 23 18:31:13 2017 +0100
modules: readme files regenerated - modules ... [skip ci]
commit fb99b2210e1c590268eedd2c62c2fa124a61f847
Merge: b007edd b36a666
Author: The Root <[email protected]>
Date: Thu Feb 23 18:31:08 2017 +0100
Merge branch '5.0' of https://github.com/kamailio/kamailio into 5.0
# By Giacomo Vacca
# Via Giacomo Vacca
* '5.0' of https://github.com/kamailio/kamailio:
siptrace: update doc with editor
siptrace: update doc with support for HEPv3
siptrace: add support for HEPv3
sipcapture: add macros to pack HEPv3 chunks
commit b36a6661c92d00e7bc69bdcd1706bcdefe177204
Author: Giacomo Vacca <[email protected]>
Date: Thu Feb 23 11:50:35 2017 +0100
siptrace: update doc with editor
(cherry picked from commit d00f198d74a3c152c2b66cb9569d876aad610d95)
commit a7e49e8be7830ffc09515ade9f212cf5463df5c8
Author: Giacomo Vacca <[email protected]>
Date: Thu Feb 23 11:49:55 2017 +0100
siptrace: update doc with support for HEPv3
(cherry picked from commit 2349ff06890269246e758542c2db9e3859eb0c50)
commit c4bbdd074ab58d639e9753e9b00ec58e39c25381
Author: Giacomo Vacca <[email protected]>
Date: Thu Feb 23 11:48:43 2017 +0100
siptrace: add support for HEPv3
(cherry picked from commit ca276bb702a8ca97bf04b155f87e6cf39c2f0b7d)
commit 3a8d3892e2e924c308c4be011d6cd39c840351ba
Author: Giacomo Vacca <[email protected]>
Date: Thu Feb 23 11:46:45 2017 +0100
sipcapture: add macros to pack HEPv3 chunks
(cherry picked from commit 281e8e980c70f38218844d1da0c5e257399ffda3)
commit b007edd47a0b4ce798772a5f977ab756becab8eb
Merge: 219f7da 0bac7c3
Author: The Root <[email protected]>
Date: Wed Feb 22 22:31:10 2017 +0100
Merge branch '5.0' of https://github.com/kamailio/kamailio into 5.0
# By Daniel-Constantin Mierla
# Via Daniel-Constantin Mierla
* '5.0' of https://github.com/kamailio/kamailio:
rtpproxy: allow 0 as value for ice candidate avp
commit 0bac7c351ba444c6693c76a7dd2fce6e93b9885a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Feb 22 22:16:55 2017 +0100
rtpproxy: allow 0 as value for ice candidate avp
- reported by GH #1003
(cherry picked from commit 71b9cb347eb67489adda62148eb6ebdf0a681217)
commit 219f7da27580be53d6bd1c436d113ac1d682ba72
Merge: 242a06b ff2f146
Author: The Root <[email protected]>
Date: Wed Feb 22 15:31:10 2017 +0100
Merge branch '5.0' of https://github.com/kamailio/kamailio into 5.0
# By Victor Seva
# Via Victor Seva
* '5.0' of https://github.com/kamailio/kamailio:
pkg/kamailio/deb: strip default -02 from CC_EXTRA_OPTS
commit ff2f146a53edbdbdba543b2700d6fcd17a40edb0
Author: Victor Seva <[email protected]>
Date: Wed Feb 22 15:15:29 2017 +0100
pkg/kamailio/deb: strip default -02 from CC_EXTRA_OPTS
Fix #1004
(cherry picked from commit 6ba9900f3c83bbd68ef868a8910590f6c9fbe88f)
commit 242a06b8767a29b5ebfb26799f74e1b82acdf044
Merge: f3e0070 324039a
Author: The Root <[email protected]>
Date: Wed Feb 22 08:46:07 2017 +0100
Merge branch '5.0' of https://github.com/kamailio/kamailio into 5.0
# By Victor Seva
# Via Victor Seva
* '5.0' of https://github.com/kamailio/kamailio:
usrloc: fix ucontact shared leak
commit 324039ad3f89462e615b58949aaae21459ef9ece
Author: Victor Seva <[email protected]>
Date: Fri Feb 17 13:25:31 2017 +0100
usrloc: fix ucontact shared leak
keep a copy of urecord if mode is DB_ONLY as it is static
preventing leaking ucontact to shared memory
Fix #1000
See #997 for details
(cherry picked from commit 819f9eae0066a94081b0805dadf69bd57050e4f0)
commit f3e00707bbe34d95afbf1acce754a7df64c2373c
Merge: bff352b 04e5d5e
Author: The Root <[email protected]>
Date: Wed Feb 22 08:31:08 2017 +0100
Merge branch '5.0' of https://github.com/kamailio/kamailio into 5.0
# By Victor Seva
# Via Victor Seva
* '5.0' of https://github.com/kamailio/kamailio:
pua_reginfo: fix memory leak when usrloc is DB_ONLY
commit 04e5d5e8cc8f9593e2cc809dabb5c6303e7c3214
Author: Victor Seva <[email protected]>
Date: Thu Feb 16 12:19:41 2017 +0100
pua_reginfo: fix memory leak when usrloc is DB_ONLY
As release_urecord() clearly says:
/*!
* \brief Release urecord previously obtained through get_urecord
* \warning Failing to calls this function after get_urecord will
* result in a memory leak when the DB_ONLY mode is used. When
* the records is later deleted, e.g. with delete_urecord, then
* its not necessary, as this function already releases the record.
* \param _r released record
*/
(cherry picked from commit 1b0e1c3cbdd162fcd438a7d9bb412ddce73bc214)
commit bff352b9c7965c9ef24273433064bccbd1c649e3
Author: Kamailio Dev <[email protected]>
Date: Tue Feb 21 15:31:20 2017 +0100
modules: readme files regenerated - modules ... [skip ci]
commit 7dc1f60d6713527d182f4414365eed2546f82a90
Author: Victor Seva <[email protected]>
Date: Tue Feb 21 15:19:02 2017 +0100
pua: update documentation, replace pua_mi reference with pua_rpc
[skip ci]
(cherry picked from commit dbac66fa165d4058973a49d7ca9035b7ce7b07d2)
commit 5a9716f9f4426375b0f99f499ade4d1785e0b600
Author: Juha Heinanen <[email protected]>
Date: Thu Feb 16 10:25:30 2017 +0200
lib/srdb1: increased size of dialplan table repl_exp field to 256 chars
(cherry picked from commit fc358c8dabc227e86e4299d54ef6d3d29a46b096)
commit 51949e50e0308c9ec41cd95bfe2be3d64e24802d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Feb 15 12:53:59 2017 +0100
sanity: reset proxy_require hdr parsed field after freeing
(cherry picked from commit 06e219158131c2397a96bf5d3373c96752d7fd20)
commit 8a02d964ffc6145b3ae2f349b8d25aff4dacde3a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Feb 15 12:48:59 2017 +0100
core: free parsed Required header structure
(cherry picked from commit d31558b31fd607f842caa04d85ce8870f6fc1740)
commit 6b7bdcf9e654fc36723c6807724d8775f65646bd
Author: Victor Seva <[email protected]>
Date: Tue Feb 14 14:58:42 2017 +0100
pkg/kamailio/deb: version set to 5.0.0-rc1 [skip ci]
commit e9341ad62d0f79f546a69784b4fd56ab9c95d170
Author: Victor Seva <[email protected]>
Date: Tue Feb 14 14:57:12 2017 +0100
Makefile.defs: version set to 5.0.0-rc1 [skip ci]
commit 35e6db8a73296c93d43f6dd2dc83aa7a204c9f73
Author: Victor Seva <[email protected]>
Date: Mon Feb 6 14:40:57 2017 +0100
tm: deep cloning of the request for fake environment
(cherry picked from commit edb9df8ace8ff74e11e025a37645aebe5b25634e)
commit 62e6271dba40a8bb0dc96992e37877bb9aabf9f8
Author: Emmanuel Schmidbauer <[email protected]>
Date: Mon Feb 13 17:18:59 2017 -0500
nsq: change child proccess rank and remove unused pipes
commit 67be2cc66521d3b9538ffa88db13ada24aeea8d8
Author: Victor Seva <[email protected]>
Date: Mon Feb 13 15:44:20 2017 +0100
ims_usrloc_scscf: Rename module interface file #82
(cherry picked from commit da807decd2a6b9d7cd617a1f6873a77110a6e492)
commit b2fbe9c11896da27e16dd0eeb22a5c0b61b8ca96
Author: Victor Seva <[email protected]>
Date: Mon Feb 13 15:42:54 2017 +0100
ims_usrloc_pcscf: Rename module interface file #82
(cherry picked from commit 637a0c12b03baf04fdea8336e900332d1194824b)
commit 9ecf6347e91aa2cafb9873555761da4b553c0e6d
Author: Victor Seva <[email protected]>
Date: Mon Feb 13 15:40:12 2017 +0100
ims_registrar_scscf: Rename module interface file #82
(cherry picked from commit bb34e87a0d77e70d1502637486ec817993083dcf)
commit de05f15020a0125ea72a1c9a183be3d2993281cc
Author: Victor Seva <[email protected]>
Date: Mon Feb 13 15:37:51 2017 +0100
ims_registrar_pcscf: Rename module interface file #82
(cherry picked from commit b8e14619a48a21d13ab295f67aaa562426204563)
commit 60fbf3cea207bc9927ba7dc6cce2834e929d7ccf
Author: Victor Seva <[email protected]>
Date: Mon Feb 13 15:35:55 2017 +0100
ims_qos: Rename module interface file #82
(cherry picked from commit 68fa50585d60d8285ba46fcb5baf97399e1738bd)
commit c5daa4766058fc6c447c9340fe64017b507c7a1d
Author: Victor Seva <[email protected]>
Date: Mon Feb 13 15:34:23 2017 +0100
ims_ocs: Rename module interface file #82
(cherry picked from commit 1ef56ad3ca45f0902e482a21ab7c067822398bb0)
commit 83366ec2a6f161ceb81c3a9aba6c7f7103d00466
Author: Victor Seva <[email protected]>
Date: Mon Feb 13 15:32:38 2017 +0100
ims_isc: Rename module interface file #82
(cherry picked from commit 92dff84a269c0e69d39a43f8231c61eaeb4c3f49)
commit 78f0b44532b0a2a7a97068e0f68832dec6b1b5b2
Author: Victor Seva <[email protected]>
Date: Mon Feb 13 15:29:35 2017 +0100
ims_icscf: Rename module interface file #82
(cherry picked from commit 149b76b99a6c6f89cd5e95d33b9d9ac11208fd3f)
commit 1c0933c469940cfbb400e75e33f0fa85b4a1f935
Author: Victor Seva <[email protected]>
Date: Mon Feb 13 15:27:40 2017 +0100
ims_charging: Rename module interface file #82
(cherry picked from commit da4a97f897e2e8dafd64a4bd9e711fe1cdd16e49)
commit 2dcf0f490ee4e2d200de2869bfad7fc7df1b8d94
Author: Victor Seva <[email protected]>
Date: Mon Feb 13 15:22:19 2017 +0100
ims_auth: Rename module interface file #82
(cherry picked from commit 0f2a8cd9d277abbb8273c7b0145b3b59e9b56158)
commit e63e097d02d019bb37228b010a6b6857e6ac9f6a
Author: Ovidiu Sas <[email protected]>
Date: Thu Feb 9 15:33:26 2017 -0500
ims_registrar_scscf: initialize notification workers with rank PROC_XWORKER
(cherry picked from commit 0e5aeba15c7a62899676d488f96b81b121c6d17a)
commit 453e3bb987d9e72f2ecc814e603bd1dc1bda78ed
Author: Ovidiu Sas <[email protected]>
Date: Thu Feb 9 15:20:24 2017 -0500
kazoo: initialize all workers with rank PROC_XWORKER
- closes GH #972
(cherry picked from commit b66df87adde282c3eaa7ab793c598bfe67f8f9a1)
commit e5677bc936a99a879235986913879eb14fafb5b2
Author: Ovidiu Sas <[email protected]>
Date: Thu Feb 9 15:18:13 2017 -0500
core: added PROC_XWORKER as an alias to PROC_RANK127
(cherry picked from commit 3e8589afcf75e7c93c5bcb9b4c4269c7b29774bd)
commit 54164eddb08321eb5fa2ed72afe41a61e412dc87
Author: Victor Seva <[email protected]>
Date: Fri Feb 10 12:06:04 2017 +0100
travis-ci: use 5.0-stretch docker image [skip ci]
commit ebf43af040b7e7ad7d0636e71cb59fbc2dd7c491
Author: Victor Seva <[email protected]>
Date: Fri Feb 10 10:31:47 2017 +0100
pkg/kamailio/deb: remove squeeze support [skip ci]
commit dff9d5032a1f4bb98e49a727d41db1a9ea231d38
Author: Victor Seva <[email protected]>
Date: Thu Feb 9 13:15:39 2017 +0100
travis-ci: set 5.X branch [skip ci]
commit 130c94c2eea53d5c1f232dcc2afcde8197cc905d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Feb 9 12:30:49 2017 +0100
Makefile.defs: version set to 5.0.0-rc0
- branch for stable release series 5.0.x has been created
commit 6d1f8b2d23dad4ef25ce8663c903dd1d568ed723
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Feb 9 11:46:53 2017 +0100
core: added PROC_SIPROUTER to be able to test if is no longer a special sip worker
- related to GH #972
commit 45e50b141008132f9cc41d243aaca6fd1cc8b360
Author: Kamailio Dev <[email protected]>
Date: Thu Feb 9 11:46:13 2017 +0100
modules: readme files regenerated - path ... [skip ci]
commit bbf51ef65ecee0b6c8e30abb3738da3436b85692
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Feb 9 11:32:23 2017 +0100
path: note in docs that some registrars check for supported header
commit e53bc78966990156dbe3b879db1d4924e9f22e56
Author: Victor Seva <[email protected]>
Date: Thu Feb 9 09:53:43 2017 +0100
pkg/kamailio/deb: version set to 5.0.0-pre2
commit 026c768a1d9b2227250f8dc037ef755e611fdf8c
Author: Luis Azedo <[email protected]>
Date: Wed Feb 8 15:47:53 2017 +0000
Revert "kazoo: set proper ranking for consumer workers"
This reverts commit 744e898189fa84b5aa3d19958b348f9b99d48b41.
commit 19121e75c90784c1890e87a96e07bf32a31b2f0d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Feb 8 08:14:17 2017 +0100
Makefile.defs: version set to 5.0.0-pre2
commit 47590ddf1819a8df1f580ea1fb64bfdc712f6771
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Feb 8 08:12:17 2017 +0100
Makefile.defs: don't enforce yacc on solaris
- it's old and fails to parse the cfg
- reported by GH #963
commit 744e898189fa84b5aa3d19958b348f9b99d48b41
Author: lazedo <[email protected]>
Date: Tue Feb 7 15:55:53 2017 +0000
kazoo: set proper ranking for consumer workers
commit a032d400a43698468bc3a2b6c3c9b25fe1b514c7
Author: Richard Fuchs <[email protected]>
Date: Tue Feb 7 09:13:23 2017 -0500
rtpengine: fix potential segfault when enabling a proxy
commit 2bab64fec9bac8f2456a7784201db5fce7c8cf08
Author: Victor Seva <[email protected]>
Date: Tue Feb 7 09:40:43 2017 +0100
pkg/kamailio/deb: fix description
N: The first line of the "Description:" should not start with the package
N: name. For example, the package foo should not have a description like
N: this: "foo is a program that...".
N:
N: Refer to Debian Policy Manual section 3.4.1 (The single line synopsis)
N: for details.
N:
N: Severity: important, Certainty: certain
N:
N: Check: description, Type: binary, udeb
commit a2c6f228d018e44a0f9807983b1bdb323dfe8957
Author: Victor Seva <[email protected]>
Date: Mon Feb 6 12:36:05 2017 +0100
pkg/kamailio/deb: refresh descriptions [skip ci]
commit 5aaea015c320423f08a92f60fb8b2bae59b40936
Author: Kamailio Dev <[email protected]>
Date: Mon Feb 6 11:16:13 2017 +0100
modules: readme files regenerated - cfgt ... [skip ci]
commit f5a9d74b321f6d05092750939286ea615252943d
Author: Victor Seva <[email protected]>
Date: Mon Feb 6 10:53:54 2017 +0100
cfgt: add format documentation
Fix #970
commit c7089428df90dcc73d852a07a1f41637011dfeac
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Feb 6 07:41:01 2017 +0100
core: coherent indentation and log messages
commit 6be89cee3f5d106ba4a54885ce54631a0f39e105
Author: Olle E. Johansson <[email protected]>
Date: Sun Feb 5 14:44:43 2017 +0100
packages Updating the descriptions for Kamailio packages in Debian and Centos
commit 1c9078cfef11c947149b8c46d8e6ba754d956d7d
Author: grumvalski <[email protected]>
Date: Sat Feb 4 13:17:18 2017 +0100
pkg/kamailio/centos/7: added missing kamailio.service file
commit 9d0323f88eeea8259f87bf95673b68cd02851f80
Author: grumvalski <[email protected]>
Date: Sat Feb 4 12:13:45 2017 +0100
pkg/kamailio/centos/7: added http_async_client package, fix http_client package
commit afd23785fdf93b65c5a12b2a2fd9444ff7bba6d3
Author: Sergey Safarov <[email protected]>
Date: Fri Feb 3 11:08:44 2017 -0500
Added tmpfiles description for systemd
commit 2ad3d81dd069ba59b0506e164a70bce34fb6ca85
Author: Sergey Safarov <[email protected]>
Date: Fri Feb 3 10:50:11 2017 -0500
Added optional package kazoo
commit b4cbab8ad63dc62242b657e7236346263b20f5e5
Author: Sergey Safarov <[email protected]>
Date: Fri Feb 3 10:43:38 2017 -0500
Added uuid module
commit 16606096ac9ece9ffdc8a48ee35a45da072a4bcf
Author: Sergey Safarov <[email protected]>
Date: Fri Feb 3 10:33:53 2017 -0500
Module dnssec marked as optional
commit 79928c42c60100973dfe4c919b0a34229b803100
Author: Sergey Safarov <[email protected]>
Date: Fri Feb 3 10:32:32 2017 -0500
Added systemd unit file
commit 9f402acf191780897427598d2e232d11c5360c3c
Author: Sergey Safarov <[email protected]>
Date: Fri Feb 3 10:31:34 2017 -0500
Added new modules
commit cae5518c1872a053a77bc028516f21bb97585a0f
Author: Sergey Safarov <[email protected]>
Date: Fri Feb 3 10:30:50 2017 -0500
Renamed modules
commit 5368c7973f72b184af9916098c27e82227a6b2d5
Author: Sergey Safarov <[email protected]>
Date: Fri Feb 3 10:30:11 2017 -0500
Has been removed non existent modules
commit ee6bbb430148cd2d43542bee39e2c900d18412a4
Author: Sergey Safarov <[email protected]>
Date: Fri Feb 3 10:29:34 2017 -0500
Removed epel-release dependency. Updated package version.
commit de1c5397847a3660182832a040d9e9c2e737e654
Author: grumvalski <[email protected]>
Date: Thu Feb 2 15:03:39 2017 +0100
http_async_client: handle 100 Continue from server
commit 6d157a4af708108b90a338614869de0ceeb94b68
Author: Victor Seva <[email protected]>
Date: Tue Jan 31 19:23:53 2017 +0100
presence: remove transaction creation from publ_notify_notifier() and mark_presentity_for_delete()
* publ_notify_notifier() and mark_presentity_for_delete() are
called inside a already created transaction
* adding transaction handle for msg_presentity_clean()
fix #960
commit 83cf43715bf3727b8b618f8239b896ecd83e859a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Feb 2 11:14:19 2017 +0100
core: tsend - updated log macros
commit b40349dbbf73a4c0f90706f86b79d7b9ff3dbb44
Author: Carsten Bock <[email protected]>
Date: Thu Feb 2 08:24:58 2017 +0100
ims_qos: Safety check on length of ports
commit 29beb58ae99a61e611973fe8d9d246fb97d6587b
Author: Carsten Bock <[email protected]>
Date: Thu Feb 2 08:22:05 2017 +0100
ims_qos: Safety check on length of ports
commit 93f4e8a02c6ad1f14ccadfbd50d1cc393ee194d7
Author: Victor Seva <[email protected]>
Date: Wed Feb 1 16:43:22 2017 +0100
pkg/kamailio/deb: version set to 5.0.0-pre1
commit 8d2e8f578990c886168dab7f6247a7bf1cc39d9d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Feb 1 16:46:30 2017 +0100
Makefile.defs: version set to 5.0.0-pre1
commit 6e53e4f20df3ab21368eeb8ae9eeaedc96ddd9c6
Author: Kamailio Dev <[email protected]>
Date: Wed Feb 1 16:01:13 2017 +0100
modules: readme files regenerated - auth_ephemeral ...
commit 765562b289d6dd37f4b11a71cc296d1cb6f0cbb2
Author: Carsten Bock <[email protected]>
Date: Wed Feb 1 09:53:45 2017 +0100
auth_ephemeral: Support for stronger hashing algorithms
commit 5640f696f5364bb88732807f5f87b4afb7a97ba6
Author: Victor Seva <[email protected]>
Date: Wed Feb 1 12:53:28 2017 +0100
core: avoid overrun-buffer-arg
> Overrunning array ((struct a_rdata *)rr->rdata)->ip of 4 bytes
> by passing it to a function which accesses it at byte offset 15
> using argument len (which evaluates to 16)
commit f0ecc3e052a3caf3d489b7e1fc3e500190d16838
Author: Victor Seva <[email protected]>
Date: Tue Jan 31 14:08:31 2017 +0100
Revert "pkg/kamailio/deb: remove kazoo package"
This reverts commit e3297bccc97ddc4349bcf69de59eb337c05bbae3.
commit 653e618ab837441ba395df05b7248c53afef0858
Author: Victor Seva <[email protected]>
Date: Tue Jan 31 14:08:14 2017 +0100
Revert "Makefile.groups: remove kazoo group and move kazoo to rabbitmq"
This reverts commit 71d42ee8d7ad2bb4e00b460276e4853a200c7b7e.
commit e8f25501e63d4aa433d147593922b46a139d6e0f
Author: Kamailio Dev <[email protected]>
Date: Tue Jan 31 12:31:15 2017 +0100
modules: readme files regenerated - websocket ...
commit f787d63fe0520f798983b439ebccda1b77932f55
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jan 31 12:25:55 2017 +0100
websocket: docs for verbose_list parameter
commit 30d372cd4b3dd2ed24456c49a6f69ecdc9b42f0e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jan 31 12:24:30 2017 +0100
websocket: option to avoid repetitive logs each 1 sec during pinging
- few debug messages are printed each second while fetching the list of
active connections for pining, making the log full while
troubleshooting
commit cb4cd24b73224ca643fbdf0434d9e394081994d0
Merge: e3297bc 7dcc6bd
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jan 31 12:23:22 2017 +0100
Merge pull request #959 from vance-od/master
Update jansson_path.c
commit e3297bccc97ddc4349bcf69de59eb337c05bbae3
Author: Victor Seva <[email protected]>
Date: Tue Jan 31 10:46:29 2017 +0100
pkg/kamailio/deb: remove kazoo package
* previous package will be upgrade to rabbitmq
commit 71d42ee8d7ad2bb4e00b460276e4853a200c7b7e
Author: Victor Seva <[email protected]>
Date: Tue Jan 31 10:34:15 2017 +0100
Makefile.groups: remove kazoo group and move kazoo to rabbitmq
commit f503615ade1bd4e23339250c1defc3efae802faf
Author: Victor Seva <[email protected]>
Date: Tue Jan 31 10:19:08 2017 +0100
pkg/kamailio/deb: fix f405c28318ea about rabbitmq
* debian/backports/* files need to be properly update in order to keep
supporting old distribution releases
* the workflow is change debian/* and make the necessary changes
to debian/backports/*
* Please do _NOT_ change directly the distribution release files
commit f405c28318ead9ba770415af3fc99176f1ce5b42
Author: Carsten Bock <[email protected]>
Date: Tue Jan 31 10:04:42 2017 +0100
Packaging: Add RabbitMQ Package to Debian Packaging
commit 7dcc6bd18b5b5ae4078c32087c6cf85c0fa9bce1
Author: Vasiliy Ganchev <[email protected]>
Date: Tue Jan 31 08:29:08 2017 +0200
Update jansson_path.c
in case of build on old debian (lenny) - statically linked libjansson has to be used, as a result build throw errors, cos libjansson has functions with the same names
commit 6dd8bface819b175db84728bfd4ceb9407d5e550
Author: Victor Seva <[email protected]>
Date: Mon Jan 30 13:47:03 2017 +0100
travis: use kamailio/pkg-kamailio-docker
commit 96203c3a6ae56987c2020c8d1c4d95f5f7959a43
Author: Ovidiu Sas <[email protected]>
Date: Mon Jan 30 15:18:59 2017 -0500
ims_dialog: fix warning: âdlg_terminated_confirmedâ defined but not used [-Wunused-function]
commit c293df8335f43780c6bb0dd22750a038f8daa4f8
Author: Victor Seva <[email protected]>
Date: Mon Jan 30 18:53:31 2017 +0100
pkg/kamailio/deb: fix missing new dependency for stretch/sid
commit d41fa549f56efb0674f4b35719a3c33d255a992c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 30 18:30:26 2017 +0100
ims_dialog: init vars to avoid compile warnings
commit cdf2976b856d63b07ed80d64d37626e1c7031b30
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 30 18:23:39 2017 +0100
db_text: close file stream in case of error reading table file
commit 5591d9c908d3f55898d4cc810663654f1f289806
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 30 18:18:39 2017 +0100
pipelimit: close file stream in case of error in get cpu
commit 83b0afa5d43bf7c6e4f0c22adbb211bef8593062
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 30 18:11:05 2017 +0100
speeddial: incremed nr_keys after strip operation
- avoid out of bounds index
commit c881ab1aaa51b2040b7479da57eba33d0ee7d8e3
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 30 17:46:39 2017 +0100
drouting: check return of get_node_index() to avoid negative index
commit 35037a00457c80d61b136510a362b36c7a5f90c0
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 30 17:40:38 2017 +0100
jsonrpcs: close file for nice cleanup if fifo server fails to be initialized
commit a473811c163071fbce5b0eb4b25ee77248234ad1
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 30 17:28:59 2017 +0100
ipops: avoid out of range index when sorting srv pv
commit f6da027c4701fa1de02cf49bb1c4528849d052a9
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 30 16:45:26 2017 +0100
cfgt: check first out of range index
commit d81a8fcbc6183b5474d2d9315ad72fa342c30cf1
Author: Victor Seva <[email protected]>
Date: Mon Jan 30 16:16:12 2017 +0100
pkg/kamailio/deb: use default-libmysqlclient-dev/default-mysql-client
commit c7212940b7bddd296475fe62fac7f1bda61cc74e
Merge: 02cca18 f81149d
Author: Federico Cabiddu <[email protected]>
Date: Mon Jan 30 16:12:59 2017 +0100
Merge pull request #955 from grumvalski/serial_suspend
tm: reset T_ASYNC_CONTINUE flag in t_suspend
commit 02cca18d4c39797c82715a90a781afb1157253bd
Author: Victor Seva <[email protected]>
Date: Mon Jan 30 14:06:22 2017 +0100
pkg/kamailio/deb: remove dnssec from stretch/sid due #851
commit 4d128677eeaed3ec3a4dfea88ee16767bf2552a7
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 30 13:21:53 2017 +0100
corex: close fd if ftell() fails inside file_read()
commit 054812952fa9e006b39d604535833c18f4fdada5
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 30 13:15:00 2017 +0100
jsonrpc: init len variable to avoid invalid usage
commit d7b30d21004166a00d3674ef172bcebb9ae34a97
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 30 12:50:07 2017 +0100
http_async_client: memset query_params to 0
- goto done in case of error could end up with some field not initialized
commit 08327019aa52f5386ed29e37a7cac6822f2b4276
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Jan 29 17:52:40 2017 +0100
core: parser - updated old log messages
commit 403ad30cf1de447f2df69a7d772041272becc5cb
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Jan 29 12:19:28 2017 +0100
core: parser via - updated log macros and coherent indentation
commit f81149d820246242db0e48f32948784b9db4ce82
Author: grumvalski <[email protected]>
Date: Sun Jan 29 09:10:23 2017 +0100
tm: reset T_ASYNC_CONTINUE flag in t_suspend
commit 73f2fc360ae91f00dd0e269896a5dff104b67264
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Jan 28 20:50:48 2017 +0100
core: cfg.lex - update log macros
commit 07df19372cea24d0ec8c157c146a1f4440309120
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jan 27 13:34:56 2017 +0100
core: cfg.y - updated log macros
commit 2367fb52aa94bd06fcbadce7f9ecccdcf6e36c83
Author: Minh Phan <[email protected]>
Date: Fri Jan 27 09:06:08 2017 +0100
topoh: safety check to avoid crash when there is no via header
- based on GH #952
commit d51c71057d1ea2b9c087e5ca43ce9461e9804f46
Author: Kamailio Dev <[email protected]>
Date: Fri Jan 27 09:01:22 2017 +0100
modules: readme files regenerated - cdp ...
commit c9a73ec7e2ef08aa9fafcd5015d04a22fab81ef5
Author: Carsten Bock <[email protected]>
Date: Fri Jan 27 08:46:05 2017 +0100
CDP: Add config function to check availability of Diameter-Services (e.g. check, if Cx/Dx Interface is up)
commit 24fc0f0c7bfd19c0086040740040988125ef39ea
Merge: 25aeed9 918cde9
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jan 26 19:01:51 2017 +0100
Merge pull request #951 from kelchy/master
jansson: add path to error log for easier debugging
commit 25aeed98a773fb796de47703a72532e5c0345f6c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Jan 26 17:02:05 2017 +0100
core: allow setting shm_mem_size in cfg if it still holds default value
- reported by Maxim Malygin, GH #950
commit 918cde9f30341fc52b98fb1ce6a2fcf78a0b6a0e
Author: Kelvin Chua <[email protected]>
Date: Thu Jan 26 15:52:49 2017 +0000
jansson: add path to error log for easier debugging
commit a9ffc2a1f7514a7bd4ff0e294e3bcb50d3a2bf07
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jan 25 14:45:51 2017 +0100
htable: use custom column name for order by in db load
- reported by Sebastian Damm, GH #948
commit 7ae1384c7b944b4f6d49ad7deb5586cc4e397882
Author: Ovidiu Sas <[email protected]>
Date: Tue Jan 24 12:33:54 2017 -0500
kazoo: avoid WARNING:qm_free: free(0) when kamailio shuts down on config parsing errors
commit e1e82d25cdf7103f66441f2c4fa5ff6c4c117370
Merge: c58a829 dc518f6
Author: lazedo <[email protected]>
Date: Tue Jan 24 11:31:52 2017 +0000
Merge pull request #947 from kamailio/lazedo-patch-4
presence: free pointer after usage
commit c58a829af6d14a7b85fa03618f58ff315940ed43
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jan 24 12:25:30 2017 +0100
kamctl: mention CHARSET as option in kamctlrc
commit dc518f6973f81b71264036b138dd6293eef58ed2
Author: lazedo <[email protected]>
Date: Tue Jan 24 02:58:54 2017 +0000
presence: free pointer after usage
discovered when using tlsf memory manager.
commit e1df8009ca9caddd9600dcd72bcdbba18c2c5299
Merge: 32b4d1e 9034787
Author: lazedo <[email protected]>
Date: Mon Jan 23 20:44:25 2017 +0000
Merge pull request #944 from kamailio/lazedo-patch-2
presence: allow use of $subs in notify process
commit 32b4d1e62c44d593ecdabf6f9cf4c379d0d1ec83
Merge: 7bb5fb5 a5e5aaa
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 23 20:55:21 2017 +0100
Merge pull request #942 from ffontaine/master
Create ktls_no_curl
commit 7bb5fb5ac25b5eb8ca2cbc3c41cd4e5f2f795501
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jan 23 15:58:34 2017 +0100
tm: more old log macros converted to new style
commit 47084e4bbfb27d40d804ecfc5f78b31f13ffd23a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Jan 22 20:28:40 2017 +0100
tm: uac - updated log messages
commit 9034787ec863277a61372cf9cfe6f156407cd47c
Author: lazedo <[email protected]>
Date: Sun Jan 22 14:32:50 2017 +0000