forked from kamailio/kamailio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
11329 lines (7568 loc) · 372 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
===================== 2016-03-30 Version 4.4.0 Released =====================
===================== Changes Since Version 4.3.0 ===========================
commit 665000690364dd2c0b59184885064d93343901bd
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 15:27:20 2016 +0200
auth_xkeys: init var to get rid of compile warnings
(cherry picked from commit f8a924874a17e15511ccf1f5ca284c5e2247d805)
commit c1c1b39b25eb70bfc512ac9d9fee28355cce3cfb
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 15:25:29 2016 +0200
pkg/deb: version set to 4.4.0 in spec files
commit a1f27b008994f309731818649274d449e1a28f71
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 15:03:47 2016 +0200
cnxcc: incude stdlib.h to get rid of compile warnings for malloc/free
(cherry picked from commit 8a8ed04d2bbd0547a08eeec328268cd171cc9419)
commit b944dad974cd55a05c2f2811af5606b3c6cae2b8
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 14:59:56 2016 +0200
Makefile.defs: version set to 4.4.0
commit 6bd9386e001f5843f5a46c387587e71a7d89c942
Author: Olle E. Johansson <[email protected]>
Date: Wed Mar 30 15:03:05 2016 +0200
http_client Remove the last traces of $curlredirect
Will continue working with this in master
commit 9589a0168c632e8d934ea45889352864e82d19d3
Author: Olle E. Johansson <[email protected]>
Date: Wed Mar 30 15:01:45 2016 +0200
http_client.c Remove code that doesn't even try to work
commit 5eabc7e56bd32694438801cc7730109e8d4c2359
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 14:56:12 2016 +0200
ChangeLog: refreshed the relevant changelog content for v4.4.0
commit 82a7f3c0f47d764ec734676c4da1a6a81ef81141
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 14:50:06 2016 +0200
pkg/rpm: version set to 4.4.0 in spec files
commit b235ca538735bc0580193585a3c0a71edf1c813d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 14:46:49 2016 +0200
README.md: travis status moved next line to the title
commit 1c82c03c64b62a4fcf409912c50859018f103fa5
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 14:44:17 2016 +0200
INSTALL: small cleanup
commit fd9bcba70bd7ea14d6581ba011d06e3d043ac69c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 14:40:53 2016 +0200
README: polishing for v4.4
commit 090f0bf45b955cff303472978f00053c5277bd10
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 14:37:45 2016 +0200
topos: remove unused variables
(cherry picked from commit 9aeaf65b042b7e65d962a9949b9a56e60743d89a)
commit 3d3a255f4f34b765a835d94721d10aa6db3dda4b
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 14:28:27 2016 +0200
topos: swapping direction handling for contact in response
(cherry picked from commit 7c48b0fce5d59f237103cd26a61e616d74cabcb3)
commit 53a6e2542118fc268d4b6333bf741c8287ad22ff
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 13:41:40 2016 +0200
topos: reset the flags of dlg storage record on bye
(cherry picked from commit ee67b5ee18dbd791f898ad5f472715b7bf818cfc)
commit 1d71e863f52ba9cc5dc050d8db1d2b3c91d1bb07
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 13:26:17 2016 +0200
topos: clean not confrmed dialogs from db storage based on branch expires
(cherry picked from commit 0103cc98b80a16081c1da39d6d674e9eba98f91b)
commit dc6de500a862748463c8e3755b813b8c07ee68cb
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 13:19:01 2016 +0200
topos: update the db storeage for confirmed dialogs
(cherry picked from commit ed262dfb056f94e2fc81bcb59cd744f4924a76ef)
commit 1b0638e1e71d0c724d389524b9fd77fa6e6adb5a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 12:41:00 2016 +0200
topos: use headers to pass dlg id between receive and send of dlg requests
- it is no longer in the context to be used directly
(cherry picked from commit 95572016c2d6764f75775230d5e6cf5d180c6e06)
commit f6697740e7d55f8eca2039c235feaff91f5aa14f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 30 00:30:57 2016 +0200
topos: restore stripped headers when receiving a dlg request
(cherry picked from commit 2cb59f1716931e58b00ba7c0c177b0609c796b17)
commit 486341c76bc09fb5ead0fa63b890adb260871740
Author: Sergey Okhapkin <[email protected]>
Date: Tue Mar 29 23:21:46 2016 +0200
geoip2: Improve detection of addresses used by anonymous proxies
(cherry picked from commit c49011c2cc63d35bca6904748da166814a792fc9)
commit 75df6618a6eaec8314480de193e2a9a7cbe25324
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Mar 29 23:12:44 2016 +0200
pv: fix compile warning for shm_initialized() test
- coherent whitepacing across the file
(cherry picked from commit d3d1592eb7148586cb70e93f549ff11fd5cf5316)
commit 20fd3b1a1e1663fc79b3b44e39a874ecbfc6ce5c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Mar 29 23:07:19 2016 +0200
pv: coherent indentation and whitespacing
(cherry picked from commit 594d1090b1b4cea26892f14f0adebc46bc05314b)
commit 14d9a00bd61b3f0248b39e0306445efe8a215fc7
Author: Olle E. Johansson <[email protected]>
Date: Wed Mar 30 11:12:20 2016 +0200
auth_radius Update documentation to be more clear about the different libraries supported
(cherry picked from commit 057abc8d5588139059c37de232c2dcfa4c0e04cd)
commit dc828be6da416b8bb1ba8fbcc52942221782314e
Author: Olle E. Johansson <[email protected]>
Date: Mon Mar 28 19:09:21 2016 +0200
http_client Add configurable authentication methods
Attempt to fix issue #515
(cherry picked from commit 4bf3a517991b374308b033b85c82058c37e4e90a)
commit 37e59b5d1d3d12a2358d24fc5e37f2f55ee2e41a
Author: Olle E. Johansson <[email protected]>
Date: Mon Mar 28 11:54:53 2016 +0200
http_client Debug http_proxy and add http_proxy usage to the http_client_query function
(cherry picked from commit 34ffef464fbb26c3526990a0bf8b9c5d1cd4ee97)
commit cb26fbd82c9594bd670beb27cb3ee1b99603b6c6
Author: Olle E. Johansson <[email protected]>
Date: Mon Mar 28 12:08:25 2016 +0200
http_client Add error parsing for DNS issues with http_proxy
(cherry picked from commit 438f91b8b5a43516d8904f23be2fa9898fdc465c)
commit 78bc680355075304e6e93d91347a564ac8eed20f
Merge: 00a01a4 78a43ba
Author: Olle E. Johansson <[email protected]>
Date: Wed Mar 30 08:53:57 2016 +0200
Merge branch '4.4' of https://github.com/kamailio/kamailio into 4.4
* '4.4' of https://github.com/kamailio/kamailio: (32 commits)
Update hep.c
core: mem - updated defines to pkg mod stats
Makefile.defs: version set to 4.4.0-rc2
Makefile.defs: re-enable pkg malloc
topos: reused stored branch attributes in case of retransmission
http_async_client: use pkg-config for libevent compile flags detection
mem: shm - updated macros for mod stats api
uuid: detect if pkg-config knows about uuid lib
mem/tlsf_malloc: updates to use new api names for module stats
mem/q_malloc: updates to use new api names for module stats
mem/f_malloc: updates to use new api names for module stats
core: mem/shm - use module stats fields for init of managers
core: mem/pkg - use module stats fields for init of managers q
core - mem: renamed api fields for module stats to repleft the purpose
tm: coherent indentation
p_usrloc: free allocated items in case of no more memory during domain add
core: mem - export pkg api even when using system malloc
presence: remove jumping to error from error in update_presentity()
http_client: check first if pointer is not exceeding limit
usrloc: if no location record loaded from db, then no attrs to look up
...
commit 00a01a4d7eb736a0ee481e10e2e8fe876e5edbeb
Author: Olle E. Johansson <[email protected]>
Date: Mon Mar 28 19:56:36 2016 +0200
http_client Fix typo
...and compile before commit...
(cherry picked from commit 7a23fd2c9ec66332097b639d4bedde52731e2bae)
commit fadd19ed1832d88fdeea7df267557419191447f9
Author: Olle E. Johansson <[email protected]>
Date: Mon Mar 28 20:42:37 2016 +0200
http_client Add note about empty string in configuration file
(cherry picked from commit 68547d50668032c1a43e81f2eabf4d2b709ff049)
commit 78a43ba3f86c336295d5385c8d5ec3039c3c1032
Merge: 24d31da ac90a7c
Author: Alexandr Dubovikov <[email protected]>
Date: Tue Mar 29 23:17:03 2016 +0200
Merge pull request #554 from adubovikov/4.4
modules/sipcapture: fixed correlation_id pointer for HEPv2/v1
commit ac90a7c1066cc8a5e01152a1c6bfc704f6667d98
Author: Alexandr Dubovikov <[email protected]>
Date: Tue Mar 29 13:53:19 2016 +0200
Update hep.c
commit 24d31da6fea5f177a43b492853362d56e9298ef6
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 28 14:37:59 2016 +0200
core: mem - updated defines to pkg mod stats
(cherry picked from commit 69f9328ddd959a70de8b94152704326dcca6a8cc)
commit 8ce95cbe27a0244ae1db2630bcc8c513485155ca
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 28 11:22:27 2016 +0200
Makefile.defs: version set to 4.4.0-rc2
commit 543958280f732c5a9de2fbc7f84ae227e6929098
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 28 11:21:26 2016 +0200
Makefile.defs: re-enable pkg malloc
- was disabled for compile tests with system malloc
commit acb67a89ceba1428e465b1ff8e052b7683241e61
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 28 10:56:14 2016 +0200
topos: reused stored branch attributes in case of retransmission
(cherry picked from commit a4043c445b0673ca8f5ff7819caf9ac156da1e73)
commit 94e0ca56f2fd7ed56b511ab3572484cd780279a6
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 28 10:22:10 2016 +0200
http_async_client: use pkg-config for libevent compile flags detection
- re-enable pkg-config for libcurl
(cherry picked from commit 88d8aabb748d2c0ab476cea9a4a17eb990b618f7)
commit ef8ee4cd13396bbd4fa2be1cd7b07a69bcd55eeb
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Mar 27 14:40:46 2016 +0200
mem: shm - updated macros for mod stats api
(cherry picked from commit e5538f1814ed5b96a01c7006d15c9192238c9b19)
commit 21cb1bf26aed825cc0a2e5d7bdee0d61e1a700cc
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Mar 27 14:40:09 2016 +0200
uuid: detect if pkg-config knows about uuid lib
(cherry picked from commit 66fc01f48ea2d6fa8f20f39e1bcd01d498f8580d)
commit 97c2f855920f1aca0d47ed339e11cb0b2188edde
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Mar 27 14:24:00 2016 +0200
mem/tlsf_malloc: updates to use new api names for module stats
(cherry picked from commit 1eafbaf5b2d25879225b8e4c4797285dba2d460f)
commit cb2c14f2dbdbc6fdcb7a0565b2718379241d655a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Mar 27 14:23:46 2016 +0200
mem/q_malloc: updates to use new api names for module stats
(cherry picked from commit 8f2864b1845cfa2b520c0886e30d1f5df285eef6)
commit d39d166e753ade7dfbd0f439db03f7d09f91a601
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Mar 27 14:23:02 2016 +0200
mem/f_malloc: updates to use new api names for module stats
(cherry picked from commit ec15fc65bc6d38e74fdcf6a1fa6ef10053452365)
commit 7c521fcbded0a14b8bfa5488511fe0a08f105085
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Mar 27 14:22:37 2016 +0200
core: mem/shm - use module stats fields for init of managers
(cherry picked from commit 26dbc87aac8d117bf0928eb2124ecc91e512e20f)
commit 792491709f30331e0d53bda610a7614eff6228ee
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Mar 27 14:21:55 2016 +0200
core: mem/pkg - use module stats fields for init of managers
q
(cherry picked from commit b568c6533670b1400f7c12bd13169d41542c351a)
commit bc63f4726541d694da2184a3f41becb78966c4be
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Mar 27 14:21:12 2016 +0200
core - mem: renamed api fields for module stats to repleft the purpose
(cherry picked from commit 50ac46bfc233531f9f4be22be4aee07a8faa0325)
commit 85a5b41599e9a8a27c10acdc17438b0571e5171d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Mar 27 12:04:47 2016 +0200
tm: coherent indentation
- removed historical top comments
(cherry picked from commit 5d903fd40a9e89d601be25df282a008ba8ba421e)
commit 1a1f3606bde2a4e45ade6212a440e5289de5af91
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Mar 27 11:48:33 2016 +0200
p_usrloc: free allocated items in case of no more memory during domain add
(cherry picked from commit b27384a0a7c6567a9ecebab3f987079ad0ff7366)
commit dec9de968e5894fba808e01614a29655ce375141
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Mar 27 11:39:09 2016 +0200
core: mem - export pkg api even when using system malloc
(cherry picked from commit 33fe5e38d2eefc2244eccb6279c082a789ed0307)
commit 745e5dd42d032f0343c88d033e3b924fa79cd5ae
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sun Mar 27 11:38:17 2016 +0200
presence: remove jumping to error from error in update_presentity()
- coherent indentation
(cherry picked from commit 07dbe3697bcad18f5766fc0d71a7fc48ff8a26d0)
commit f229c60396fa8590bbbb2d66cb8006dd31ab6521
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Mar 26 22:29:27 2016 +0100
http_client: check first if pointer is not exceeding limit
- then test its value not to be null char
(cherry picked from commit 47a776efcd3d5c2ffafdd780fa169edc85e436d2)
commit b667c768dd87575873cec872abdf3caaf20c9ffc
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Mar 26 13:09:53 2016 +0100
usrloc: if no location record loaded from db, then no attrs to look up
(cherry picked from commit bedd6f4df9d2b5600bed5e31052bc49f8b18382f)
commit fd20bff1e420a93be588b2c0dd4189f6f7e8ea0b
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Mar 26 13:01:01 2016 +0100
seas: init variable to get rid of compile warning
(cherry picked from commit 3a25e489d0ab8d55d4011ccf62de4f3d8d08b028)
commit ed9ad742f9e9cd0d6e75dc788923addf9984ce3d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Mar 26 12:58:33 2016 +0100
lib/trie: init variable to get rid of compile warnings
(cherry picked from commit 5075cef8230202138bf08c402797d9dffcb8971d)
commit b28b3d27597b898add46051f24120f833b035d3d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Mar 26 11:26:29 2016 +0100
ndb_redis: safety check for log message parameters
(cherry picked from commit 0a51e8c941b1c916137eb3e57fa7db86ecb9a1f8)
commit 6a65b9ae0432491a1bcf540643f7b90cbc0c3ad1
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Mar 26 11:22:32 2016 +0100
dispatcher: proper check for ds active ping variable
(cherry picked from commit cafb1522b2c27aae404d97fe242324423ccdb99b)
commit 410bdba67ec77e87d2ff53f429bc260c03b10317
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Mar 26 11:18:36 2016 +0100
crypto: safety check for memory allocation and free on error cases
(cherry picked from commit 181c3cfa266ec5897cc2fdd889d90928f90fcbb8)
commit 4080d31080b5ad74504715b404e0829be090c731
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Mar 26 11:11:25 2016 +0100
cnxcc: use pkg-config for libevent compile flags
(cherry picked from commit fa0d3267890e77a5184490d11f76fe4cb400e2df)
commit a45f580174ee5b21746e5e0172c55fccb421d25d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Mar 26 10:23:02 2016 +0100
cnxcc: use pkg-config for hiredis lib compile flags
(cherry picked from commit 162ccdaeeb6bff185f49b3dc2e2b9b43687ec0fc)
commit b04d257acd0dddd87051266493a81b93210de3bc
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Mar 26 11:05:26 2016 +0100
ndb_redis: fix for broken output of pkg-config for hiredis
(cherry picked from commit 4a40dd39cec713c569dc3480c905d808026aad39)
commit b53bf975bddf16424d7b6416276371e12cf590f4
Author: Daniel-Constantin Mierla <[email protected]>
Date: Sat Mar 26 08:44:16 2016 +0100
ndb_redis: use pkg-config for compile flags
(cherry picked from commit 57bcad1b336e7aae5c0933a83ac4ab16f6893896)
commit 7423c33bfb56268bfa9cb3c03966c37c9a2d7d69
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 24 09:21:00 2016 +0100
dispatcher: coherent indentation and whitespacing
(cherry picked from commit 1d401e0a9b4c3010c32b0084ec6a218fc46e4f78)
commit e8f230e7989eb0aef2510f52738e8718863b8567
Author: Daniel-Constantin Mierla <[email protected]>
Date: Wed Mar 23 16:08:48 2016 +0100
kamctl: refreshed definition of location table
(cherry picked from commit 2ddf88df7deeebf2966344031eb905811b8e86cb)
commit d11cc80c3a4a2fdeb446837c550517e4f4a511a9
Author: Juha Heinanen <[email protected]>
Date: Wed Mar 23 16:32:06 2016 +0200
srdb1/schema: removed unique constraint from connection_idx
(cherry picked from commit d72ac166b152ca6906248d67e2605d5b283fa01e)
commit eee6382b683349395004627e7ebc5a7ae9216024
Author: Olle E. Johansson <[email protected]>
Date: Wed Mar 16 15:01:08 2016 +0100
http_client Adding support for HTTP proxy on a connection and default level
Addresses issue #541
Documentation coming in separate commit
commit 26026da13f76ffcea34d1482b925979e520631ad
Author: Victor Seva <[email protected]>
Date: Mon Mar 21 22:23:44 2016 +0100
pkg/kamailio/deb: update version to 4.4.0-rc1
commit 16c087b459f9394723714ae597aa0d90fb12389c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 21 17:22:55 2016 +0100
Makefile.defs: version set to 4.4.0-rc1
commit ff3857597627fd4f650fbf53be60b7d5ad2a4543
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 21 17:09:51 2016 +0100
topos: propagate via branch from receive to send event
- identify properly the branch
(cherry picked from commit 787c41c08eae9f9431f792ec616530145f66cc3c)
commit a5a08f40481c2bdd2de200e6504dd0c330361bef
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 21 14:46:23 2016 +0100
kamctl: db script with larger topos fields
(cherry picked from commit f8b9bbdcb95575b90bd75dba71b6117c76127bc1)
commit 9acf49bc944b6c5ec1010087963b847bffd4dee4
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 21 14:45:52 2016 +0100
lib/srdb1: tags fields made larger
- store more fields for branch
(cherry picked from commit 9eaca5332e4b6be9f2437806b47ef1077eb57959)
commit ed0c8ed358883974775e00597cc06f61ca20b89c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 21 14:24:25 2016 +0100
kamctl: further updates to topos db scripts
(cherry picked from commit fedf9e8875791ff53188fb812a6d97aae9b1ceba)
commit 3470856a34b97526e848d0004cd643e198dac05f
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 21 14:23:35 2016 +0100
lib/srdb1: fields for local sockets
- replace src ip with full address column
(cherry picked from commit 4efc9b3730e15f9e9f2274a8dfee59d76e5ecabd)
commit 6f6b932bed271b9c677b57cfd6159db7c10f3dfb
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 21 14:18:49 2016 +0100
topos: filling field for server record route values
(cherry picked from commit dc4306e4e201d2cfbe5cc76698e8c7c3ec06d44a)
commit 417c54b3e0f9b9929c7c34c6ebffb6f753b33fa1
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 21 11:40:04 2016 +0100
topos: don't detect direction based on route header ftag
- the local server header is not re-added yet
(cherry picked from commit ca4494d465eaec8c544f61e9034147387c861688)
commit a599f7ec14fc244d0cf2dd7545233538ce4879ed
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 21 11:32:08 2016 +0100
topos: split storage of record route for a, b and server sides
(cherry picked from commit a215b926e3f1df0f2aca2f86e5ad1e3c9dde3796)
commit c887f1a84a2755cae122bfc3887a2857fe986c29
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 21 11:01:53 2016 +0100
kamctl: updates to topos db scripts
(cherry picked from commit 6497b9a562386aeae47c0aaa10d09418269c6d8d)
commit a67eed2e587ad8ed04c9069f188155ba62ddf093
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 21 11:01:11 2016 +0100
lib/srdb1: dbschema - split record route storage
(cherry picked from commit d43986940878962a35883370a14f4330d2fd597a)
commit bea13a3ea4362a1f99a81b948c7839e2dbaedfe7
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 18 18:05:02 2016 +0100
topos: added missing params to docs
(cherry picked from commit 956b5ae838b0627710473a15746ffd2cd96dfbc0)
commit 0a3174f9c6f8f9819c1c92e3e83ee3ca7502f19e
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 18 17:20:00 2016 +0100
topos: don't store dialog data for message request
- only branches are enough
(cherry picked from commit 7993b4a7cf7281bc99bf1bae3777f3f0d18b24b1)
commit c5336e36179a25dec1dd37804af79e12d0274a8a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 18 16:52:24 2016 +0100
topos: shortcut to handle forwarded MESSAGE replies
- no dialog created there
(cherry picked from commit 6885748a5146d4531a0e235e67621df49df67d97)
commit d9dbd6f1ea43f566ef161794e1da9d49f069a1ca
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 18 16:43:14 2016 +0100
topos: MESSAGE may be without Contact header
(cherry picked from commit 1c7f39389225ef5c1430bb8540b6fd9c249734bb)
commit 0df89ce099641607ba38f2ce99061c6209babcda
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 18 16:05:18 2016 +0100
topos: no processing needed for 100 responses
(cherry picked from commit 98f927149c2f6865dd6b709f4a3bb7be77e57f5c)
commit fa2f3ddc188d758d588177e254b1fcacdecc9bbd
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 18 15:19:18 2016 +0100
topos: cseq number and method linked to db
(cherry picked from commit f591b7e0b0c71648a9ac62dd9604955d7c2acb75)
commit 324a2cc72d260fa4f925198670373e7a36929167
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 18 15:15:57 2016 +0100
kamctl: refreshed topos db scripts
(cherry picked from commit eb1e8e2ff46a1ecac81b05985dc09a37036ce1ab)
commit 97212998731cc849a1ce64c21c4def4f65a64668
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 18 15:15:21 2016 +0100
srdb1/schema: cseq stored as string for topos
- no conversion from sip header
(cherry picked from commit 0dd9c526f762974ceb397cc2c7862fa7ff122ebf)
commit 66387d3c6a425f1b4c2123dc3397351af8d9d616
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 18 14:58:27 2016 +0100
topos: store method and cseq for dialogs and branches
(cherry picked from commit c2e404b82f20a12b5909bbf610cbfb7f5d101c12)
commit 40eca4ba61b8f068e5f9869ae86ea5a57c777096
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 18 14:08:53 2016 +0100
kamctl: updated scripts for topos db
(cherry picked from commit c8d25c34d8efa5c6e40fb26d523a9d4e5d66595c)
commit 46176217c8a6e61b353045243865b5f9e0e9f741
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 18 14:08:26 2016 +0100
lib/srdb1: topos schemas extended to store method and cseq
(cherry picked from commit c8fb903b9649fc8ef49a1bfff455e58b2265d05a)
commit 22195053b664d20f4eea78a5bbf228f587a5eab4
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 18 13:23:06 2016 +0100
dialog: force cleanup of aged terminated dialogs
- reported by Dmitri Savolainen, GH #545
(cherry picked from commit 23a3481302d5aca04be0e8d10f6d4ce23dbc36aa)
commit 03862d7b6057ef08146cfea5ffe9debff35263ea
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 17 22:56:41 2016 +0100
xhttp_rpc: added notes about how to use the module
(cherry picked from commit 68cbac03d95893f4f27b46a37233cf796a7484d9)
commit 79940803b2a631b21bb851a6380b16806ce31981
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 17 22:47:02 2016 +0100
pipelimit: set array result tipe for rpc commands
- rpc stats and get pipes can return more than one item
(cherry picked from commit 1c22f395df81dab09288ff945e97b0040894daaf)
commit 3b0308db6e46b45a564975b9d49640f1454ce1d5
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Mar 15 12:40:09 2016 +0100
ims_registrar_pcscf: remove duplicate implementation and use _strnistr() from core
(cherry picked from commit 331ab29e77e178067a23291bd20638201ba9b393)
commit c2dfad3ee3b5bd766f1c5fd2a35780472039ae54
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Mar 15 12:39:45 2016 +0100
sdpops: reuse _strnstr() from core instead of own implementation
(cherry picked from commit e69c3284231917f5c63871842b6ce6ab37b419eb)
commit 48136b5dc0a2a082621c828438371504e0a636b6
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Mar 15 12:39:16 2016 +0100
tm: _strnstr() moved to core
(cherry picked from commit 4910ddf9eebb8fa5106300b9e684ecb67fb2d225)
commit 9b9989a0c6fea5860313ccde90055bbaa69cdc6c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Mar 15 12:38:46 2016 +0100
topos: use _strnstr() from core instead of strnstr()
(cherry picked from commit f5d4446dae8db02e6d4136724f85baed65f7bf4a)
commit 2dcf15e18f7aa4842091c14c360e2ee1694ed9dc
Author: Daniel-Constantin Mierla <[email protected]>
Date: Tue Mar 15 12:37:37 2016 +0100
core: _strnstr() and _strnistr() defined in core
- alternative to strnstr() which is not in all OSes, pluse the
insensitive option
(cherry picked from commit 7772e14fc298956f57429a67ea4524818b22a158)
commit 50df69df2b7a5307802f6dcaac9b90acfbe2b44d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 18 13:32:59 2016 +0100
core: parse content type allows '_' char
- reported by Fabio Margarido, GH #547
(cherry picked from commit b65927a8f6039810ffdb7b7f31ce2d36c9535fbd)
commit 2271e6bdaf2916d1c50d367d09041b2d6142a09d
Author: Ovidiu Sas <[email protected]>
Date: Mon Mar 14 17:07:46 2016 -0400
modules/topos: fix warning: variable "ptsd" set but not used [-Wunused-but-set-variable]
(cherry picked from commit f50c712f401f50b8ca36addbd8440f418a9b266f)
commit 3ef987c3230bb76f0eb1dea35998866271c93f31
Author: Ovidiu Sas <[email protected]>
Date: Mon Mar 14 17:03:30 2016 -0400
modules/topos: fix warning: comparison between pointer and integer [enabled by default]
(cherry picked from commit b4d1206fd50bb61d1ad9ff4ed500157105b140b6)
commit 0977d5a392b4c9236fa1334141df640d10aa1cb9
Author: Ovidiu Sas <[email protected]>
Date: Mon Mar 14 16:59:41 2016 -0400
modules/topos: fix warning: label "ready" defined but not used [-Wunused-label]
commit 73313e6296cfc81c1dc8167845ee8fd3d0397a73
Author: Emmanuel Schmidbauer <[email protected]>
Date: Mon Mar 14 17:17:03 2016 +0100
permissions: fix memory leak
- free ruri_pattern from trusted struct in empty_hash_table()
(cherry picked from commit 93fd86c882fd82f4277a80322dd729c2dc0370a0)
commit 734531b733a1983a718594b568f956f676d3ace3
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 14 14:37:01 2016 +0100
uac: reset append to rr string var to avoid double free in case of error
- reported by Fred Posner, GH #543
(cherry picked from commit 6a362f032bdf5cf73dd3960e88bfb06dfb72bb85)
commit 84d73b950f3ec13fe5f5345a4440d0909e30fff4
Author: Daniel-Constantin Mierla <[email protected]>
Date: Mon Mar 14 11:39:55 2016 +0100
tsilo: lock before linking var to the entry in slot
- entry points to the address of first entry, which can be updated
before aquiring the lock
(cherry picked from commit 8ae2713477027a229ae4ee7045557151e467aff3)
commit b80163a38a2d5bacad0bbfe47810de052dfe7f7d
Author: Victor Seva <[email protected]>
Date: Fri Mar 11 09:21:01 2016 +0100
pkg/kamailio/deb: version set to 4.4.0-rc0
commit 8e07e229d3bbd245a5ce3f67d73faf128dcf4ac2
Author: Victor Seva <[email protected]>
Date: Fri Mar 11 09:18:59 2016 +0100
pkg/kamailio/deb: version set to 4.4.0-pre3
commit 80aae34215d6e2a62573ae6a76edba0d4ae62191
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 11 08:32:18 2016 +0100
Makefile.defs: version set to 4.4.0-rc0
- branch for release series 4.4.x created
commit a5c25822ba44c6102c871a7e8d32bf7f7746a805
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 11 08:24:29 2016 +0100
Makefile.defs: version set to 4.4.0-pre3
commit 0ab124af340cf01ceb46cb5d8f8acbf69dea3a95
Merge: 9b4c0c2 313a5db
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 11 01:26:40 2016 +0100
Merge pull request #540 from linuxmaniac/vseva/mysql_warning
db_mysql: change log level from WARN to INFO for ping checks
commit 9b4c0c29319c008d6ae6bedb8b657150dc5ca64d
Author: Daniel-Constantin Mierla <[email protected]>
Date: Fri Mar 11 01:18:46 2016 +0100
topos: restore headers on receiving response
commit 11fc3e2015e0d0247bb6c0a7dfd3157efba20d5b
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 23:39:47 2016 +0100
topos: load and pack db dialog data
commit a741f797a5631a11191054cdb5559e246cc2face
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 23:27:05 2016 +0100
topos: load and pack db branch data
commit 9950e67d476e7310573ddc01c83aa1280e020fb0
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 21:46:03 2016 +0100
kamctl: refresh of db creation scripts
commit 9f185fd22abcd4963a74ecb2c909ea5108573bda
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 21:45:15 2016 +0100
lib/srdb1: dbschema - keep branch side rr and uri for topos
commit becedd0b35f0edeb7e8dfaaeef18e37fc5f36593
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 21:00:57 2016 +0100
topos: clean expired records on timer
commit ebd47e445ba03b6620408593a422652448f025e0
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 20:24:50 2016 +0100
topos: keep branch of new new via in dedicated field
commit 50f6aa51697387da24bd4cef02345383822066a9
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 20:20:16 2016 +0100
kamctl: regenerated db script files
commit b250d9ca8f562a82bf3e26acfb47b56898d2a01b
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 20:19:16 2016 +0100
lib/srdb1: dbschema - split via branch in own column for topos
commit e480a12aaa019676c479df3bc4f9a1ea70f7512c
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 19:15:06 2016 +0100
topos: link tags and contacts in msg
commit 8502ebaf368580989ea0a1cf4246d3f19dde1733
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 17:51:30 2016 +0100
topos: expire values for branches and dialogs can be set via params
commit ca7827b2b4a55959fc366871b410131eedba75f6
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 17:48:14 2016 +0100
topos: cleanup expired dialog records
commit 94863a7c42496d64157e6f89a8f3bbe24ffd2779
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 17:46:19 2016 +0100
topos: cleanup expired branch records
commit e895c000403139a628841eaab56127274012ca7a
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 17:32:43 2016 +0100
topos: use datetime db type for record timestamp
commit ed78ad87cdf5f9a0740388995f19638603d2c29b
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 17:30:49 2016 +0100
topos: force use of db table always
commit 4b9a3a7ae2a97c158a2adb3e0eecc6701ecd7781
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 17:24:52 2016 +0100
topos: wrap for empty fields to db
commit 9eaef8ad5b601bbc6e5e245431060355f39382f4
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 17:05:47 2016 +0100
topos: persistent branch data storage
commit 5654079944fd4ac608b50e13436c508d4f261a47
Author: Daniel-Constantin Mierla <[email protected]>
Date: Thu Mar 10 16:53:35 2016 +0100
topos: proper storage of dlg data for persistence
commit 313a5db2fdf73d8af3d8a5a1b02a656019c2102b
Author: Victor Seva <[email protected]>
Date: Thu Mar 10 17:00:56 2016 +0100
db_mysql: change log level from WARN to INFO for ping checks
commit ea0550fac1f1cb2c9cd9779d3979b9f9f0e3cd27