forked from kamailio/kamailio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
8914 lines (5969 loc) · 293 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
===================== 2015-06-10 Version 4.3.0 Released =====================
===================== Changes Since Version 4.2.0 ===========================
commit 56a4ba2d0cd29c87f61da8c1c9f88112886b643f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 10 15:04:15 2015 +0200
Makefile.defs: version set to 4.3.0
- new major release
commit 73092b89f24b98d7c524b8f429609c642d310769
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 10 14:48:00 2015 +0200
core: several updates to the README
(cherry picked from commit 92b155e570490771e2b62e1c6185bbfacf770971)
commit f2dcd03c33721e92f6cd4ba7a035be2ea5bbd37f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 10 14:25:37 2015 +0200
db_text: include header file for atoi() to avoid clang warnings
(cherry picked from commit d7c0ae494a5f1a5a8c808a4c45c9bfbbbda7388c)
commit e50d62dd346d660796c1542a4bd42abace64f66f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 10 13:31:51 2015 +0200
pkg/rpm: updated spec files for v4.3.0
commit b9723c9bed68495e0367fc4376a988ed5343ab04
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 10 13:10:23 2015 +0200
siputils: proper indentation for analysing code blocks
(cherry picked from commit 1dfde28a60b5a6c11d6e95eefbf760200c86384c)
commit 6c545cd0032db2c257f8ee1c1e6291fb028f5e24
Author: lazedo <[email protected]>
Date: Wed Jun 10 11:52:20 2015 +0100
db_text : missing conversion in raw query
(cherry picked from commit a0b02584b76fced6d98f76ec02ae60d75bbccfa2)
commit 344634dc8a52ab898777c5c256d0fe4ee505036e
Author: Victor Seva <[email protected]>
Date: Wed Jun 10 13:07:08 2015 +0200
pkg/kamailio/deb: update version to 4.3.0
commit ade2e05d41af057db3004fcc521ba04e7657e0f2
Author: Mikko Lehto <[email protected]>
Date: Tue Jun 9 13:33:58 2015 +0300
modules/nat_traversal: avoid clang warnings with cast to (enum _hdr_types_t)
nat_traversal.c:1477:54: warning: implicit conversion from 'hdr_flags_t' (aka 'unsigned long long') to 'enum _hdr_types_t' changes value from 18446744073709551615 to -1 [-Wconstant-conversion]
nat_traversal.c:1487:49: warning: implicit conversion from 'hdr_flags_t' (aka 'unsigned long long') to 'enum _hdr_types_t' changes value from 18446744073709551615 to -1 [-Wconstant-conversion]
(cherry picked from commit 658932119824a0576ce708ed0d09fd43c95addfc)
commit 3a05838bbd408490b660764a3601653f022a9752
Author: Mikko Lehto <[email protected]>
Date: Tue Jun 9 12:24:48 2015 +0300
modules/call_control: change type to fix clang compiler warning
call_control.c:503:19: warning: implicit conversion from 'hdr_flags_t' (aka 'unsigned long long') to 'int' changes value from 18446744073709551615 to -1 [-Wconstant-conversion]
(cherry picked from commit f6fc513ad968c40d1c990024c4985fa285ba93b6)
commit d9f15d4050422ebb16d6ad674a9e17a56068d330
Author: Victor Seva <[email protected]>
Date: Mon Jun 8 15:45:28 2015 +0200
lib/srdb1: use 6 digits for db_double2str
acc module was getting values rounded by this
(cherry picked from commit e1dcdf5a48cae9802c51c1d516d6fbc862855dcb)
commit ea59701448584445ae692fb2ed5a408721e8a143
Author: Victor Seva <[email protected]>
Date: Tue Jun 9 11:03:28 2015 +0200
update version to 4.3.0~rc2
commit fa175afbfb0eeebccf1df65e5dd82d413f82551f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jun 9 10:39:36 2015 +0200
Makefile.defs: version set to 4.3.0-rc2
commit f050389b568aaab3717484b67b9b157199c63bbc
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jun 8 07:34:47 2015 +0200
tm: extended docs for t_reply()
(cherry picked from commit a221ec34074c25838f470070cb6c7e604a33fc98)
commit 1a08fa07b601c5f9636c6dba223230ec91301768
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Jun 8 07:34:22 2015 +0200
sl: extended docs for sl_send_reply()
(cherry picked from commit 29aa683f7c3d507a88b83ecd84d9023c5e162ab1)
commit 1eb9aacfc5f5b6936bcd6a4f4f219733c7cb7974
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jun 5 11:42:06 2015 +0200
core: resolve negative index for dset before checking if it is last branch
- faster dropping of last branch
(cherry picked from commit f8f40045e1370002076f568a1e73e0b4b67e9d66)
commit e5452003a5219e50d26baa72e773fa1690b45a3d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Jun 5 11:41:21 2015 +0200
pv: convert negative index to positive position for $branch(...)
- better access to branch structures
(cherry picked from commit 6461b799ce64315b72b8e2f4f7e4617603330833)
commit 6ebecf0eb1ec1c171adda651ce4aff775cd75547
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 3 14:49:01 2015 +0200
mtree: readme regenerated
(cherry picked from commit c36b93f61a7fe76321aab8e62e1bbeee5122c5ed)
commit 9e05772c277f487d0c5bacdb33b1aaa8634e133f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 3 14:48:38 2015 +0200
mtree: more details about what module does and max prefix size
(cherry picked from commit 74fadc549929d3dc873ce3b8b1db20559562ab54)
commit bfe40dd69e154b90820d8e87ea5ea46e51601e54
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Jun 3 14:38:24 2015 +0200
mtree: internal prefix max size set to 64
- allow for larger prefix values to be used (e.g., case of uuid, ipv6)
- db corresponding field still set to varchar(32)
(cherry picked from commit 47086a4ee0a6ee6a766d7591e91e5663acf31562)
commit 626de5dac2715507c5fb19f8056183b4ca6a1da8
Author: Carsten Bock <[email protected]>
Date: Mon Jun 8 13:47:55 2015 +0200
ims_charging: In case of Tel-URIs, use type END_USER_E164 and STRIP tel: (Bugfix)
commit 803321f14153fb0ae87f99771c5d03ec6783dddd
Author: Mikko Lehto <[email protected]>
Date: Wed Jun 3 15:44:52 2015 +0300
modules/call_control: fixes clang compile warning
- warning: expression which evaluates to zero treated as a null pointer constant of type 'void *' [-Wnon-literal-null-conversion]
(cherry picked from commit 18038c2ea3b22cad9099719ecc999266b90e8786)
commit 04f86d265a0d26f8dd25bf0ed353ee173b614204
Author: Victor Seva <[email protected]>
Date: Wed Jun 3 09:56:06 2015 +0200
seas: fix gcc warnings:
statistics.h:76:20: warning: âdestroy_seas_stats_tableâ declared âstaticâ but never defined [-Wunused-function]
statistics.h:82:19: warning: âprint_stats_infoâ declared âstaticâ but never defined [-Wunused-function]
(cherry picked from commit 6d9abe14cf63e8c4683a8753ad6ae417f6f21ff0)
commit 9371b5326bd1b8e01172e184b721d24de9768d0f
Author: Victor Seva <[email protected]>
Date: Fri May 22 11:00:15 2015 +0200
tls: fix gcc warnings:
tls_domain.c:507:4: warning: variable âretâ set but not used [-Wunused-but-set-variable]
tls_domain.c:537:4: warning: variable âretâ set but not used [-Wunused-but-set-variable]
tls_domain.c:544:4: warning: variable âretâ set but not used [-Wunused-but-set-variable]
tls_domain.c:576:4: warning: variable âretâ set but not used [-Wunused-but-set-variable]
tls_domain.c:1096:5: warning: variable âretâ set but not used [-Wunused-but-set-variable]
tls_domain.c:1104:4: warning: variable âretâ set but not used [-Wunused-but-set-variable]
tls_domain.c:1111:4: warning: variable âretâ set but not used [-Wunused-but-set-variable]
tls_server.c:222:3: warning: variable âretâ set but not used [-Wunused-but-set-variable]
tls_server.c:565:4: warning: variable âretâ set but not used [-Wunused-but-set-variable]
tls_server.c:843:5: warning: variable âretâ set but not used [-Wunused-but-set-variable]
tls_server.c:877:5: warning: variable âretâ set but not used [-Wunused-but-set-variable]
tls_server.c:1231:4: warning: variable âretâ set but not used [-Wunused-but-set-variable]
tls_server.c:1265:4: warning: variable âretâ set but not used [-Wunused-but-set-variable]
(cherry picked from commit 7a33987ab4e74266cd0ccecbe14f7196f97a0f05)
commit a4e9f2234f29928520cca83843d5d6aa387518ad
Author: Carsten Bock <[email protected]>
Date: Tue Jun 2 20:20:17 2015 +0200
registrar: ptr->sock may not be available, as we received the info on a different channel (e.g. reginfo) (bugfix)
commit ba0ca983042d5632d3b90e12a6530a41b812f5ef
Author: Victor Seva <[email protected]>
Date: Tue Jun 2 13:12:17 2015 +0200
pkg/kamailio/deb: update version to 4.3.0~rc1
commit 8492893110c972af5f2b1ee3ffd45ba0ef5fd9f5
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jun 2 12:04:17 2015 +0200
Makefile.defs: version set to 4.3.0-rc1
commit b63dd52685970914e11c670bae5ac6b2191595f1
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jun 2 11:51:35 2015 +0200
kex: fix some pkg.stats value for PROC_NOCHLDINIT rank
- initialization of stats cannot be executed in child_init() for such
case, do it with first rpc request
(cherry picked from commit 6fc4065f56d2d7929494f0e6f3dfcdb80ef0a4ec)
commit 78b7a2ebef0d9d4997d130a4190f24408c2c7e96
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Jun 2 11:12:19 2015 +0200
uac: re-enable TM callback when needing to do authentication for uac_req_send()
- regretion introduced by ebb1594a0
(cherry picked from commit 422c77fecfaed995f08cc11264a63ee0ff61efba)
commit 80f6513abe1831748f1dffa283647abe21c23232
Author: Carsten Bock <[email protected]>
Date: Mon Jun 1 17:15:59 2015 +0200
uac: Execute event-route [uac:reply], if evroute is set (Bugfix)
(cherry picked from commit ebb1594a0d95548673697f1e9553a10c93fc460e)
commit 28a8c966ba4334ea68ef90d74e49d705dfdff830
Author: Victor Seva <[email protected]>
Date: Fri May 29 12:47:03 2015 +0200
uac: fix spelling error
(cherry picked from commit a2de9d6f3af59951c06d0a12e205e1d5814213a6)
commit aac276a7fe9b518c147bc99cd31e732de2f3eadd
Author: Camille Oudot <[email protected]>
Date: Tue Jun 2 10:24:49 2015 +0200
mem: TLSF remove unused function
this removes one compiler warning from the issue #185
(cherry picked from commit 0fcbe4eb0fb5037f52e7d8338cff4f88b03a7969)
commit d97561918588f792a2ddfbb0affbd5538f28f4a6
Author: Victor Seva <[email protected]>
Date: Tue May 26 22:36:37 2015 +0200
pkg/kamailio/deb: add erlang package module
(cherry picked from commit da3e31a20b95c86a17c8eb43a1a016b055fb8c9b)
commit 7e13d0a450e0b9d9f3dd1ca90a66f906107596bc
Author: Victor Seva <[email protected]>
Date: Tue May 26 22:59:43 2015 +0200
Makefile.groups: add statsd and rtjson to extra group
(cherry picked from commit 5e59fb4f7e156eb78f821fb170b0d02c77fa1ea9)
commit 3a9c5494958fd0a9d9072804860c19474af14432
Author: Seudin Kasumovic <[email protected]>
Date: Thu May 28 18:12:02 2015 +0200
erlang: fix build on squeeze and precise
Check if defined decode of unicode atoms type.
(cherry picked from commit 63127b261668e0efdea5b0ddb5f16a03dd9f02bc)
commit 6bb3aed24281ece3c117c583c9a317def949e884
Author: Hugh Waite <[email protected]>
Date: Fri May 22 09:28:52 2015 +0100
registrar: Fix insertion of ulattrs xavp into position 0
- If the first entry is an XTYPE_NULL entry it is replaced, not pushed down the stack
(cherry picked from commit 12098415cda75ed10d4d7c75602630b90ef6afd1)
commit b30f6c85d40b66049fd118a7f60bad3adc52e7bc
Author: Hugh Waite <[email protected]>
Date: Tue May 26 16:30:23 2015 +0100
core: Fix typo in xavp header file
- Corrected avpx_free to xavp_free
(cherry picked from commit c1b486d199349efc931975dc90924962e8b2b353)
commit a3be39c63bdfef9d75cd554859e64d2f0cacbe26
Author: Victor Seva <[email protected]>
Date: Tue May 26 20:57:15 2015 +0200
pkg/kamailio/deb: update version to 4.3.0~rc0
commit 3552120b39f7728ab0aeae8654a02ca491ceb6d4
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon May 25 23:49:00 2015 +0200
Makefile.defs: version set to 4.3.0-rc0
- branch for release series 4.3
commit 9e6a94861ff9529b016f4babfd58260d01e16a0c
Author: Seudin Kasumovic <[email protected]>
Date: Mon May 25 15:24:38 2015 +0200
erlang: prefix exported pseudo-variables
- add prefix 'erl' to exported PVs
- update documentation
- regenerate README
commit 88b2ab74801441cb3857245863a5eee2a67c8063
Author: jaybeepee <[email protected]>
Date: Mon May 25 12:28:12 2015 +0200
modules/ims_usrloc_scscf: strip off port param when searching for term user
commit 15b0626f57f2b5dbe56e668a9435d683034a0277
Author: Seudin Kasumovic <[email protected]>
Date: Mon May 25 10:52:44 2015 +0200
erlang: fix compile warnings
Avoid compile warnings on 64bit.
commit 01f4a230dc15b9564c101d03811eac9189f91210
Author: Seudin Kasumovic <[email protected]>
Date: Mon May 25 11:00:27 2015 +0200
erlang: fix Makefile problem
Read from Erlang shell include and library path.
commit d46f3f642f491968e06faea4eb1aab30ff7582fd
Author: lucian balanceanu <[email protected]>
Date: Mon May 25 10:49:36 2015 +0300
acc, dialog: change cdr dialog duration
- CDR duration for timed out acknowledged dialogs is no longer left empty
commit cc8536657abe6d98db1634d4672465aae924faf1
Merge: b7a0782 e76577a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon May 25 09:01:34 2015 +0200
Merge pull request #172 from mslehto/patch-2
modules/tmx doc: t_reply_callid() works also for other requests than INVITE
commit b7a078289d0a2e58a1b10c97e067df956f3527ec
Author: Seudin Kasumovic <[email protected]>
Date: Sun May 24 20:22:03 2015 +0200
erlang: remove annoying logs
Remove unnecessary LM_INFO logs.
commit 922f4b0b383223b3ba75ec69a5cf5e292950d353
Author: Seudin Kasumovic <[email protected]>
Date: Sun May 24 16:40:48 2015 +0200
erlang: New pseudo variable for Erlang reference
- introduce new pseudo variable for Erlang reference.
- document $ref variable
commit fd98d373882f5e48070db2a58a50a92b9a688c78
Author: Seudin Kasumovic <[email protected]>
Date: Sun May 24 15:33:55 2015 +0200
erlang: Fix parameter capabilities check
Fix check getters of erl_send parameters.
commit 70e177fe1ba1792e8842efa9d5746bda75380b65
Author: Seudin Kasumovic <[email protected]>
Date: Sun May 24 12:42:29 2015 +0200
erlang: Fix memory leak
Free memory used for format/print Erlang process id PV.
commit e76577a2c6d8d0628ff9548e5cbfee0302a41e15
Author: Mikko Lehto <[email protected]>
Date: Sun May 24 20:11:55 2015 +0300
modules/tmx doc: t_reply_callid() works also for other requests than INVITE
commit 5469dcda0d4ad7b29fa1ede5ffdd62e45af3315a
Author: Richard Good <[email protected]>
Date: Sat May 23 14:16:39 2015 +0200
modules/ims_registrar_scscf: send full notify information when contact changes instead of partial
commit fe7351d586b56237669a29f15dcdf83b78136cb4
Author: Juha Heinanen <[email protected]>
Date: Sat May 23 09:20:05 2015 +0300
modules/usrloc: added note about handle_lost_tcp in DB-Only scheme
commit e15e6d8cfd70b0abbeb499fb1483cc468624c0f9
Merge: 75ba3ef 9863657
Author: Seudin Kasumovic <[email protected]>
Date: Fri May 22 22:50:02 2015 +0200
Merge branch 'seudin/erl_send'
commit 98636573959ac17901e8640c116b2fcac2694440
Author: Seudin Kasumovic <[email protected]>
Date: Fri May 22 17:48:08 2015 +0200
erlang: erl_send function
- erl_send function sends Erlang message to process
- appropriate API function send
- documentation for erl_send and API
- examples according to el_send usage
- regenerate README
commit 75ba3ef01c08027e5694419e9c923fef02262daa
Author: Seudin Kasumovic <[email protected]>
Date: Fri May 22 15:46:11 2015 +0200
erlang: Fix detecting event route
Ensure proper detect event route and lost connection in erl_reply.
commit 2143d1eb56bd3a9a775494afaa0e71d6f584d5bb
Merge: c02e165 a19337d
Author: Victor Seva <[email protected]>
Date: Fri May 22 15:03:27 2015 +0200
Merge pull request #170 from kamailio/vseva/distclean
Makefile: use distclean as shortcut of maintainer-clean
commit a19337d305ba13ade7c30bfaa2926ee1d63930d9
Author: Victor Seva <[email protected]>
Date: Fri May 22 13:50:44 2015 +0200
Makefile: use distclean as shortcut of maintainer-clean
Fixes: #167
Nowadays people expect distclean to be the rule to do the cleaning
commit c02e165cc7a44e525dd55714c4471f1236e96b43
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri May 22 12:43:55 2015 +0200
lib/srdb1: use last @ as delimiter for start of host in db url
- allow @ to be part of password
- reported by GH#169, Debojit Kakoti
commit 46cc69f229e5e005cca60f64ec6c40c910e2043b
Merge: f9be1bd e15d415
Author: Victor Seva <[email protected]>
Date: Fri May 22 11:15:46 2015 +0200
Merge pull request #168 from kamailio/vseva/gcc_warnings
clean some gcc warnings
commit f9be1bd71323244af598a54380d941722b60b40c
Merge: a5b3917 77382a7
Author: Seudin Kasumovic <[email protected]>
Date: Fri May 22 11:12:12 2015 +0200
erlang: Merge fix error messages
commit 77382a7ff2ee3144991b013e5cabd535028e3e1e
Author: Seudin Kasumovic <[email protected]>
Date: Fri May 22 10:53:44 2015 +0200
erlang: Fix error messages
Fix wrong function name in error messages.
commit e15d415323b44a93acd2d811fa3609af141e814e
Author: Victor Seva <[email protected]>
Date: Thu May 21 23:33:39 2015 +0200
purple: clean gcc warnings
hashtable.c:39:3: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
hashtable.c:39:3: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
hashtable.c:39:3: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
hashtable.c:39:3: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
hashtable.c:43:2: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
hashtable.c:43:2: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
hashtable.c:43:2: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
hashtable.c:43:2: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
purple_sip.c:77:36: warning: variable âcipid_nsâ set but not used [-Wunused-but-set-variable]
commit a52859a6ed8c1ea2590e51e0c20d1f2553da1ec9
Author: Victor Seva <[email protected]>
Date: Thu May 21 23:21:25 2015 +0200
ims_isc: clean gcc warnings
mark.c:341:9: warning: format â%zuâ expects argument of type âsize_tâ, but argument 10 has type âintâ [-Wformat]
mark.c:341:9: warning: format â%zuâ expects argument of type âsize_tâ, but argument 8 has type âintâ [-Wformat]
mark.c:341:1: warning: format â%zuâ expects argument of type âsize_tâ, but argument 8 has type âintâ [-Wformat]
mark.c:341:1: warning: format â%zuâ expects argument of type âsize_tâ, but argument 6 has type âintâ [-Wformat]
mark.c:350:9: warning: format â%zuâ expects argument of type âsize_tâ, but argument 10 has type âintâ [-Wformat]
mark.c:350:9: warning: format â%zuâ expects argument of type âsize_tâ, but argument 8 has type âintâ [-Wformat]
mark.c:350:1: warning: format â%zuâ expects argument of type âsize_tâ, but argument 8 has type âintâ [-Wformat]
mark.c:350:1: warning: format â%zuâ expects argument of type âsize_tâ, but argument 6 has type âintâ [-Wformat]
mark.c:357:9: warning: format â%zuâ expects argument of type âsize_tâ, but argument 13 has type âintâ [-Wformat]
mark.c:357:9: warning: format â%zuâ expects argument of type âsize_tâ, but argument 11 has type âintâ [-Wformat]
mark.c:357:1: warning: format â%zuâ expects argument of type âsize_tâ, but argument 11 has type âintâ [-Wformat]
mark.c:357:1: warning: format â%zuâ expects argument of type âsize_tâ, but argument 9 has type âintâ [-Wformat]
commit c051cb8da9759676395603af1bfb4f1f26f9d2f6
Author: Victor Seva <[email protected]>
Date: Thu May 21 22:49:07 2015 +0200
snmpstats: clean gcc warnings
hashTable.c:168:22: warning: variable âpreviousRecordâ set but not used [-Wunused-but-set-variable]
kamailioNet.c:973:18: warning: variable âvalueâ set but not used [-Wunused-but-set-variable]
snmpSIPRegUserLookupTable.c:462:25: warning: variable âvarâ set but not used [-Wunused-but-set-variable]
snmpSIPStatusCodesTable.c:493:30: warning: variable âvarâ set but not used [-Wunused-but-set-variable]
commit 1874dd1062fbc186316ddc91ae87a22b18d16951
Author: Victor Seva <[email protected]>
Date: Thu May 21 22:45:05 2015 +0200
db_perlvdb: clean gcc warning
perlvdb_conv.c:99:2: warning: enumeration value âDB1_UNKNOWNâ not handled in switch [-Wswitch]
commit 0a1bb3f044ccf5dbb79eb03caec19553166c228e
Author: Victor Seva <[email protected]>
Date: Thu May 21 22:16:21 2015 +0200
pua_reginfo: clean gcc warnings
usrloc_cb.c:68:6: warning: variable âbuf_lenâ set but not used [-Wunused-but-set-variable]
commit 21f437840123471daa65da65999ff108ad11b33b
Author: Victor Seva <[email protected]>
Date: Thu May 21 22:08:25 2015 +0200
db_berkeley: clean gcc warnings
pg_cmd.c:183:17: warning: variable âpcmdâ set but not used [-Wunused-but-set-variable]
pg_cmd.c:372:17: warning: variable âpcmdâ set but not used [-Wunused-but-set-variable]
pg_cmd.c:396:17: warning: variable âpcmdâ set but not used [-Wunused-but-set-variable]
bdb_cmd.c:512:13: warning: variable âbconâ set but not used [-Wunused-but-set-variable]
bdb_cmd.c:511:13: warning: variable âbresâ set but not used [-Wunused-but-set-variable]
bdb_con.c:52:13: warning: variable âburiâ set but not used [-Wunused-but-set-variable]
km_bdb_res.c:405:2: warning: enumeration value âDB1_UNKNOWNâ not handled in switch [-Wswitch]
km_bdb_res.c:498:2: warning: enumeration value âDB1_UNKNOWNâ not handled in switch [-Wswitch]
km_bdb_val.c:105:2: warning: enumeration value âDB1_UNKNOWNâ not handled in switch [-Wswitch]
km_db_berkeley.c:779:6: warning: variable âiâ set but not used [-Wunused-but-set-variable]
km_db_berkeley.c:907:6: warning: variable âiâ set but not used [-Wunused-but-set-variable]
commit 70ad498b2ccc41db77b14c4c79393548cac8426d
Author: Victor Seva <[email protected]>
Date: Thu May 21 21:56:50 2015 +0200
db_postgres: remove gcc warnings
pg_cmd.c:183:17: warning: variable âpcmdâ set but not used [-Wunused-but-set-variable]
pg_cmd.c:372:17: warning: variable âpcmdâ set but not used [-Wunused-but-set-variable]
pg_cmd.c:396:17: warning: variable âpcmdâ set but not used [-Wunused-but-set-variable]
commit 7b6aba346a8529187762c25f00609ec376fb3529
Author: Victor Seva <[email protected]>
Date: Thu May 21 21:24:39 2015 +0200
db_text: clean gcc warning
dbt_raw_util.c:169:6: warning: unused variable ânâ [-Wunused-variable]
commit a5b39176e6195da22cd39a65e3ddb7c9fdf53592
Merge: 301793c a61f325
Author: Victor Seva <[email protected]>
Date: Thu May 21 15:21:30 2015 +0200
Merge pull request #166 from linuxmaniac/vseva/usrloc_callbacks
usrloc: run callbacks after updating the info on DB_ONLY mode
commit a61f325589a3bef6164b1eca8bd93ca3dace4549
Author: Victor Seva <[email protected]>
Date: Thu May 21 14:08:07 2015 +0200
usrloc: run callbacks after updating the info on DB_ONLY mode
commit 301793c4f10c860e263a243863f7b833ba3bb0f6
Author: Juha Heinanen <[email protected]>
Date: Thu May 21 14:28:57 2015 +0300
modules/db_mysql: include (start of) mysql query to async query error message
commit fbbadfde175ac1e414b10fc6a01abd09b4539fef
Merge: 7afe761 8810c00
Author: Camille Oudot <[email protected]>
Date: Wed May 20 22:57:31 2015 +0200
Merge pull request #164 from kamailio/tmp/tlsf_debug
mem: TLSF memory summary and sums implementation
commit 7afe76191e9757770d2933e8c26f305c6ed388a3
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed May 20 21:44:15 2015 +0200
usrloc: use domain for testing db if use_domain parameter is set
- rework from the patch by Erik Davidson, GH#161
commit 408778069d24a31885df9ecd9f86bc3f9fce0af9
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed May 20 21:32:00 2015 +0200
tm: restore to the disabled async mutex by define
- following commits trying to remove it completely were removing the
internal transaction flags which were not related to mutex at all
commit db13cefcaa39330b93bd06cf9337c7c1afe221a9
Author: Victor Seva <[email protected]>
Date: Tue May 19 21:12:31 2015 +0200
manpage: sip-router.8 fix hyphen-used-as-minus-sign
commit 8810c00f837a585d4dc6079640abc3251f0e70ca
Author: Camille Oudot <[email protected]>
Date: Tue May 19 19:58:57 2015 +0200
mem: TLSF memory summary and sums implementation
TLSF now has a debug mode, that will dump every memory block when xxx_status()
is called, and a summary of still allocated blocks when xxx_sums() is called.
configure build with
make MEMDBG=1 MEMMNG=2 cfg
to enable maximum debuging informations (source location of mallocs and frees)
commit a3f0fa72c7686df57d655391032236b3fca7ef50
Author: Luis Azedo <[email protected]>
Date: Tue May 19 17:36:53 2015 +0100
kazoo : fix json transform
$(kzE{Element[$var(idx)]}) was not evaluating $var(idx)
commit 967ed551845044123f4e93c60091d7a1fa43692f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue May 19 15:13:49 2015 +0200
core: enable log_prefix for sip responses
- reported by Klaus Darilion
commit 497b6ad2cee8481ba1f3568ed7d8a836e508016a
Author: Hugh Waite <[email protected]>
Date: Mon May 18 17:00:08 2015 +0100
core: Fix crash in xavp.c
- Inserting an xavp into a list can crash when inserting XTYPE_NULL padding entries
commit fe379acb5f5956f60ac3304d8c01a3fa0719e0be
Author: Camille Oudot <[email protected]>
Date: Mon May 18 12:27:12 2015 +0200
mem: fix TLSF max pool limit
commit 111aefd82f4f885be5a4d4d6a4a2ad432dba9e5e
Author: Camille Oudot <[email protected]>
Date: Mon May 18 11:47:10 2015 +0200
Revert "mem: TLSF use larger first level bitmap"
back to using 32bits bitmaps, limiting the maximum pool size to 512 GiB
This reverts commit 5e04515410c7d7ebedf6c4bc8c917f736b37acba.
commit 6de859e5a762c0c34382a4de99173fad2c6999c9
Author: Victor Seva <[email protected]>
Date: Mon May 18 11:20:00 2015 +0200
pkg/kamailio/deb: update version to 4.3.0~pre2
commit 7e6083e3e2604e2a835e1bf1dbdbf55e6256aba0
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon May 18 10:34:49 2015 +0200
Makefile.defs: version set to 4.3.0-pre2
commit 6d32e8df95bd015202f75e9f313654aa41146e7e
Merge: e58d150 746152b
Author: Seudin Kasumovic <[email protected]>
Date: Fri May 15 08:35:48 2015 +0200
Merge pull request #163 from kamailio/seudin_erlang_fixes
erlang: fixes and new PV
commit e58d150a13ba3d0ef8ff3a15877f0cf891e57be8
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 19:38:14 2015 +0200
tcpops: return if connection is null when trying to set the lifetime
commit 1db6fdf41dbb4b6c95e0f86dfebc4c793858d8b5
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 19:21:25 2015 +0200
sipcapture: fix not to access freed pointer during shut down
commit ec438b45696e17af0a3b19bb7ac12b221f897517
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 19:16:26 2015 +0200
core: safety check for linker when inserting xavp with index
commit abdc02f1cb26c71b4118044d8c45dec728992e15
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 14:51:06 2015 +0200
regex: replaced allocated memory initialization with a for loop to one memset
commit f03c86ade6af9bc529a52f7fd50004721278ae19
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 14:41:44 2015 +0200
rr: reset lump pointer to avoid using it after free for remove rr function
commit 5e5866b2ac8390caa9373f49345ed877c6e5f037
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 14:36:24 2015 +0200
regex: safety to check to avoid working with zero size allocations
commit ca220afe0f738f2353d16c96dd16ab279ffdcf74
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 14:29:12 2015 +0200
textops: safety check to know there is a string to add via lump
commit 746152b878b8b2956d51db039633dc9a4e961337
Author: Seudin Kasumovic <[email protected]>
Date: Thu May 14 16:33:47 2015 +0200
erlang: update documentation
- document use of pseudo variable $pid(name)
- regenerate README
commit f14a5c32a6ce77449f9191d672c24a0938f45558
Author: Seudin Kasumovic <[email protected]>
Date: Thu May 14 16:20:10 2015 +0200
erlang: new pseudo variable for Erlang process id
- introduce new PV for Erlang pid type
- export sender pid in event route of pseudo registered process
commit 11667d316e92287affeb5034fe522679ea989ec5
Author: Seudin Kasumovic <[email protected]>
Date: Thu May 14 16:10:50 2015 +0200
erlang: correcting documetation
- correcting title of example
commit 7f76c92a7b2ddac30faa1f075111fc20b652ef69
Author: Seudin Kasumovic <[email protected]>
Date: Thu May 14 09:40:57 2015 +0200
erlang: delete unused code
Delete unused function from code.
commit 4a480ba9745b6874f86808fc21dcd750e00febd3
Merge: 88b6757 733f5ad
Author: Hugh Waite <[email protected]>
Date: Thu May 14 16:00:02 2015 +0100
Merge pull request #162 from que273/master
app_lua: Fix memory leak in sr.modf
commit 733f5ad7c9b2515c52b00875fb5dac689ddd9a17
Author: Hugh Waite <[email protected]>
Date: Thu May 14 13:54:20 2015 +0100
app_lua: Fix memory leak in sr.modf
- Free pkg memory allocated to store cloned function parameters
commit 88b67575f9457312d0277e16dc06103be3a31965
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 13:40:11 2015 +0200
tm: safety check not to allocate 0 bytes in rpc command
commit af9deb9026a271aa3a1bdbb5685b63e3e78772bd
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 13:33:50 2015 +0200
core: safety checks for swich statements with no case branch
commit 0db313f0047fc512dec2976cac168989b60d49c8
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 13:24:38 2015 +0200
tmx: check for empty result not to allocate 0 bytes
- allocation of 0 size is undefined when using system malloc
commit 646bcf919e5c33dac21985254a0065d41a03f62d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 13:19:58 2015 +0200
db_text: fixed leak for raw query where bulding
commit 2d40e14d2b0b150acd34ac2d1df25936d8faaca9
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 13:15:06 2015 +0200
presence_xml: better error handling to free all allocated vars
commit 1b20aa04048d15d0861b3f5291fd3b9a1614fdf5
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 13:09:47 2015 +0200
pua: mark that tupple was allocated so can be freed in case of errors
commit 379667e878c9e0795998f600edbcbb3974846f71
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 13:01:18 2015 +0200
regex: reset pointer after free to avoid double free if an error occurs
commit 29d7ca71fdfc8c52fb5e68fcf3bccf98dde0d089
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 12:54:18 2015 +0200
imc: better condition to catch no result of database query
commit c24329ed483ea3abd720af73411a2331acc947e4
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 12:28:29 2015 +0200
presence: initialize result to avoid freeing garbage in case of other errors
commit bd189f4239403b4b673f3d5b0ce3b6e5c7f4bacc
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 12:25:33 2015 +0200
mi_datagram: init structure before conditions to jump to err label
- garbage condition would have been made in err case
commit c5ef9569d524ab49d538e85a905520b72e1d8dea
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 12:03:28 2015 +0200
presence: initialize variable to avoid compile warning
commit 23b476ed7c7b48ddd7cacf3d88e9c104db06d5dc
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 10:25:47 2015 +0200
core: init vars for socket ttl helper function to avoid warnings
commit f93d3c70b1b14665ddc11ca2c39e1d114390e5f9
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 10:17:56 2015 +0200
dispatcher: init socket pointer to null
- covers all situations, also when the afferent avp name is not set
commit 80977adc1bd70479c1e32d867563e4e684060b25
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 10:04:26 2015 +0200
pua: safety checks for str pointers
commit 2c425c16efdc70e76d7471156f9f2c6eefa4b001
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 09:59:58 2015 +0200
drouting: extra safety checks for str pointers
commit ed1322414eb46c75b9db22e76b6f9e64ce191ad4
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 09:55:20 2015 +0200
tls: avoid compiler warning with extra check on char pointer
commit a318866c1c0efe4fb73d7f6c3cde538a67daa171
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 09:51:07 2015 +0200
ipops: init variables to avoid compiler warnings
- use define wrapper for safety printing null strings
commit c7a8b95e02e286335d3b1ff531a0d2245525e629
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 09:43:14 2015 +0200
userblacklist: initialize vars to avoid compiler warnings
commit 8b4a8d6a9f06ab66e718f9b0956d17bfc374a1d5
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu May 14 09:38:13 2015 +0200
rtjson: removed unnecessary variable
- it was mistakenly used in some expressions
commit cf1d885ae8b7c75e41373a0a649a6eb1c161efc7
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed May 13 23:57:50 2015 +0200
db_mysql: set back tick as quoting char for table and column names
commit ffbe9c2c0007cea5f6fd78dd14917be11643ac64
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed May 13 23:55:35 2015 +0200
lib/srdb1: mechanism to be able to quote table and column names
- new field in db1_con_t with the char for quoting
commit 98f2b39450ef3e99f557fdf5bb291646b610ba28
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed May 13 22:24:28 2015 +0200
kamctl: regenerated mysql creation scripts
commit 15516b1e4ab3c85a7b65336d843b25b81164ae35
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed May 13 22:23:43 2015 +0200
doc/stylesheets: xsl template to quote mysql table and column names
commit eb889f41f036afb4248303fd6a1c7db393724c58
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed May 13 15:56:23 2015 +0200
evapi: use internal log functions and free io struct if client failed to connect
commit 83180ee7602b69d9c9cee85925c0282baf6f58b8
Author: jaybeepee <[email protected]>
Date: Wed May 13 11:05:01 2015 +0200
modules/ims_charging: return false if Ro CCR returns with GSU <=0
- This caters for strange case where OCS returns CCR success
with a GSU of 0 (or less) seconds....
commit cab5fa6a307dff2cebaf3c6a4b6fbb366e16a4b7
Author: jaybeepee <[email protected]>
Date: Wed May 13 09:14:44 2015 +0200
modules/tm: removed no longer needed ASYNC mutex
commit 1da0f06d896ed8a99728846437322a3719241fbc
Author: jaybeepee <[email protected]>