forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
4937 lines (2599 loc) · 126 KB
/
Copy pathChangeLog
File metadata and controls
4937 lines (2599 loc) · 126 KB
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
=========================== Release 1.9.2 ==============================
2014-03-12 Vlad Paiu <vladpaiu at opensips dot org>
* [0ae9a46] :
Added support for embedded arrays within MongoDB documents
(cherry picked from commit 61e21a0a2d9d79b91e5e8692a7c1f3e7cc77cf83)
2014-03-12 Vlad Paiu <vladpaiu at opensips dot org>
* [26bdb57] :
For topo hiding and fix_route_dialog() usage, do not try do add del lumps for already deleted route headers
(cherry picked from commit 5a119db9031d6231c521367847bf1b3c1b6bb7a5)
2014-03-11 Liviu Chircu <liviu at opensips dot org>
* [513abb2] :
residential config: Also define the "xcap" db_url
(cherry picked from commit 4b4ac96e13dc4686172eb4eecb9dee68be2e6f2b)
2014-03-10 Bogdan Andrei IANCU <bogdan at opensips dot org>
* [55eaec2] :
Merge pull request #174 from wdoekes/wjd-fix_dialogaggr_memleak
presence_dialoginfo: Fix memory leak in dlginfo_agg_nbody.
(cherry picked from commit 1e02b323fa38e81949a3e8e9b3cf4e37dd9fa6e5)
2014-03-10 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [f2286d3] :
When updating the database records, first perform all update and inserts and then check the timeout for expired records -> records to be deleted. Doing first the delete may hide records "expired but to be updated". Credits go to Nick Altmann Closes bug #112.
(cherry picked from commit 3c1164a012204e92150c5df5101aba709e4cb123)
(cherry picked from commit 916f3eec56255bff911ba6e11b1565702ea401af)
2014-03-01 Liviu Chircu <liviu at opensips dot org>
* [81f3470] :
Fix crash when printing $(ct[*])
(cherry picked from commit aeb4e886d4cd4fde00440671f913605def9db02f)
2014-02-13 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [95a3857] :
improve docs
2014-02-06 Liviu Chircu <liviu at opensips dot org>
* [375c1f0] :
Fix NULL pointer deref. in "acc_db_request" when "db_url" is not set
(cherry picked from commit 5d61f3789b191c04d0595aed6e1eb94392fc9e0c)
2014-02-05 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [5ecddfc] :
Fixed bogus test over the presence of a request route. This was generating bogus warning messages to the logs, but without any negative impact over the actual processing. Credits go to rrb3942 on GITHUB Closes issue #162
2014-02-05 Walter Doekes <walter+github at wjd dot nu>
* [c94887a] :
digest+m_auth: Allow a domain in the digest username.
Before this patch, a domain in the digest username was allowed:
Digest username="abc@domain", realm="domain"
but only if the domain is equal to the realm. This was introduced in
a92bf789 (Juha Heinanen, Mar. 29 2006).
The SIP spec. doesn't mention any such restriction.
This patch undoes that commit and makes sure the whole username is used
when authenticating through `pv_www_authorize` and `pv_proxy_authorize`.
That makes the following valid:
Digest username="abc@domain", realm="something different"
2014-01-30 Liviu Chircu <liviu at opensips dot org>
* [30570f6] :
Fix "mf_process_maxfwd_header" retcode in case of parsing errors
(cherry picked from commit 707982e4ec75f33a1feb5fb00b8b1b71ef77a6bf)
2014-01-15 vladpaiu <vladpaiu at opensips dot org>
* [3b1a1c0] :
Merge pull request #160 from rrb3942/localcache_counter_expire
Do not reset counter expiration on incr/decr
(cherry picked from commit 11a74d7c6dcf1578672b337923729bf3a0aa4a33)
2014-01-15 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [524a4c0] :
"Interrupted system call" on "select" must not be reported as error/warning
2014-01-15 Razvan Crainea <razvan at opensips dot org>
* [da32abc] :
properly print statistics while running "-V"
(cherry picked from commit e8195fc099efbd0af6c1b5ebfced857da5dab31d)
2014-01-10 Bogdan Andrei IANCU <bogdan at opensips dot org>
* [8978023] :
Merge pull request #156 from lovelle/1.8
Add new line in dbt_base.c for info message log
2013-12-20 Saúl Ibarra Corretgé <saghul at gmail dot com>
* [a2a234e] :
mediaproxy: fixed detecting messages without a body
(cherry picked from e4a334eaba6e7f402fd26a9e354428b066fc6835)
2013-12-20 Saúl Ibarra Corretgé <saghul at gmail dot com>
* [c3931c5] :
mediaproxy: always parse To header
(cherry picked from 359db7f8713921042d14beffd83b5b07e40536fe)
2013-12-15 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [9ee2828] :
Fixed bogus triggering of PUBLISHing for non-INVITE sequential requests. Credits go to Damien Sandras Closes pull request #149
(cherry picked from commit e0cc9d009151a086f42c08d7f8092b8c7d5835ed)
2013-12-15 Bogdan Andrei IANCU <bogdan at opensips dot org>
* [f8edd82] :
Merge pull request #150 from staskobzar/master
opensipsctl is calling ds_relaod for dr instead of dr_reload
(cherry picked from commit 6b6be3057762fb9d0e98bcea104e02d45a30b4c2)
2013-12-11 Razvan Crainea <razvan at opensips dot org>
* [080637d] :
revert bogus commit for mi_json
(cherry picked from commit fe6533689857f165f2c77a5c65f0b248cac82ef3)
2013-12-11 Razvan Crainea <razvan at opensips dot org>
* [1c01f56] :
remove bogus flushing for mi_json
TODO: find a proper way for handling flushing, since the current
implementation leads to a infinite loop
(cherry picked from commit 0d47a32d18c656a22aa536f5eeb24e3310ade481)
(cherry picked from commit bd38945a28f0ac93fb3be306d550b04e8d424d05)
2013-12-11 Razvan Crainea <razvan at opensips dot org>
* [a93aab6] :
mi_json: escape '\\' character
also fix incorrect '"' escaping
(cherry picked from commit 28b399bb166a786bb0e943ff072606d2d01d96b6)
Conflicts:
modules/mi_json/http_fnc.c
2013-12-10 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [e0e9a53] :
Generate proper branch param for the NAT ping requests Credits go to Varun (varunvairavan on GITHUB) Closes #145
(cherry picked from commit 1f18541ced045645f8cbda1c73a85fe52597a1db)
2013-12-07 Bogdan Andrei IANCU <bogdan at opensips dot org>
* [7253e68] :
Merge pull request #135 from bat-modulis/master
Renamed permissions parameter 'from_col' to 'pattern_col'
(cherry picked from commit 10763008a99a48c0375f1a5bee32bb05231426b0)
2013-12-07 Bogdan Andrei IANCU <bogdan at opensips dot org>
* [16a27c7] :
Merge pull request #129 from dsandras/ds-pua-expires-refresh-fix
Fix bug where a new publication does not extend the desired expire time.
(cherry picked from commit ccac0fac1da8ad663e500148fb7f7d9e43e34fd1)
2013-12-06 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [1b47fc6] :
Fixed bogus condition in GT, GTE, LT and LTE script tests. Reported by dcb314 on GITHUB Closing issue #146
2013-12-03 Razvan Crainea <razvan at opensips dot org>
* [3673fb1] :
fixed doc avp names
2013-12-02 Razvan Crainea <razvan at opensips dot org>
* [0085333] :
drouting: fix drc_table doc default value
(cherry picked from commit f25c8e1e520902fde023613cf86ef0cc675d0e32)
2013-12-02 Vlad Paiu <vladpaiu at opensips dot org>
* [4a41dc1] :
Properly take into account the dialplan priority in case entry matches both string and regex rules
(cherry picked from commit 0625610376acbc29f5a9f6a7a79ec897ebfe53fa)
2013-11-28 Răzvan Crainea <razvan at opensips dot org>
* [c7c6815] :
Merge pull request #139 from shimaore/pkg_mem_events
Allow for `event_pkg_threshold` support.
Credits go to Stéphane Alnet (shimaore)
(cherry picked from commit 25289f0c2b0f2bd3137dc062a031be359d6e8937)
2013-11-27 Vlad Paiu <vladpaiu at opensips dot org>
* [7915308] :
fixed README typo
(cherry picked from commit 144e112db1f785875a671f57a727393c2a3b7764)
2013-11-24 Saúl Ibarra Corretgé <saghul at gmail dot com>
* [8d93a21] :
Load xcap module, presence_xml depends on it
2013-11-24 Saúl Ibarra Corretgé <saghul at gmail dot com>
* [7d23870] :
Fixed residential example when using presence
2013-11-23 Bogdan Andrei IANCU <bogdan at opensips dot org>
* [424476d] :
Merge pull request #122 from dsandras/ds-fix-dialog-info-entity
This patch fixes the entity URI in XML documents to contain "sip:".
(cherry picked from commit 377e7574d411aa974cf469d6df18b6213b43a31f)
2013-11-22 Bogdan Andrei IANCU <bogdan at opensips dot org>
* [cbd7ab6] :
Merge pull request #131 from dsandras/ds-pua-mi-warning-fix
Fixes bug where a refreshed PUBLISH request triggers an error message.
2013-11-22 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [a48232c] :
Fixed bogus warning because of variables not being reset. Reported by Jeff Pyle, part of fixing issue #126.
2013-11-22 Ovidiu Sas <osas at voipembedded dot com>
* [0a191ce] :
uac_registrant: re-register with expires value imposed by the registrar
(cherry picked from commit f9a8d985829ed1cce3a2f0985a8c72368d0b3325)
2013-11-22 Liviu Chircu <liviu at opensips dot org>
* [6999178] :
Fix the DB representation of message flags in the acc module
* storing flags as strings rather than bitmasks prevents flag conflicts
when doing flag modifications in the script, then restarting the proxy
* similar usrloc issue was fixed in commit 98b6b0437
2013-11-22 Razvan Crainea <razvan at opensips dot org>
* [613969f] :
revert commit ec0d05a
dialog variables might be binary, therefore strlen should not be used
(cherry picked from commit 7401a7a4a4820706aa05d96d5bebdc93c6db6b40)
2013-11-20 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [e2b9332] :
Do not free the header string as it is part of the lumps (and freed together with the lumps). Reported by Jeff Pyle. Fixing bug #126
2013-11-20 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [da06d87] :
Fixed keeping turns on handling PUBLISHes for the same presentity - when presentity is deleted (due a unPUBLISH) do not do any turn related ops anymore Reported by Damien Sanders
2013-11-20 Vlad Paiu <vladpaiu at opensips dot org>
* [b674730] :
Reset the lump cond flags when the condition evaluates to false.
In case there are multiple branches, the conditions can evaluate
differently on each branch - which might lead to bad counting of the
added lumps ( used by the dialog module for dlg validation )
(cherry picked from commit 24f9366858d0568a2eaa231f37d349efd2d70d96)
2013-11-20 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [fad1519] :
Fixed restoring SOCKET info from AVP during failover
(cherry picked from commit cc657ffc81e13e66dfba9ffba3e5e9f380e22c1d)
2013-11-17 Liviu Chircu <liviu at opensips dot org>
* [8f8c5de] :
Mask compile-time shift/reduce conflict due to if statement ambiguity
(cherry picked from commit c4b8be1cb86ba6d169ae97b221d4986f8ecad9a4)
2013-11-15 Razvan Crainea <razvan at opensips dot org>
* [3d0d871] :
rework ratelimit distributed queries
instead of adding -1 to the counter, use the cachedb_sub function exported by
the cachedb module. This prevents ratelimit counters from adding extremely
large values for some backends (ex: memcached).
Thanks go to Brett Nemeroff for reporting and testing.
(cherry picked from commit c06183325e408f47ba4e0a1e1be274fe23581e25)
2013-11-04 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [c791b78] :
Proper usage of build_req_buf_from_sip_req() function - socket and proto are required. Closes Bug 664 on SF.
2013-11-04 Vlad Paiu <vladpaiu at opensips dot org>
* [159a270] :
Allow drouting module to be used for DID matching only ( where you only have prefixes provisioned, no GWs, and call do_routing with the 'C' flag )
(cherry picked from commit 92a2c9d6061462b2c818da0963e805cbfaa62904)
2013-11-04 Vlad Paiu <vladpaiu at opensips dot org>
* [ecd9ee6] :
Do proper return code to script from cachedb_* functions ( treat 0 as success )
(cherry picked from commit 5635d716e0bf1ce8a23688698fe6497fadfe7f23)
2013-11-01 Vlad Paiu <vladpaiu at opensips dot org>
* [ea711f6] :
Also trace the CANCEL requests in case we're doing trace_dialog()
(cherry picked from commit 50463f044c5bd42eb5485cac52419a8ec45ee201)
2013-10-30 Ovidiu Sas <osas at voipembedded dot com>
* [da9780a] :
core: enhance error log for un-parsable msg by adding the source IP and port
(cherry picked from commit 57e60928db2ba2a406026565e4569155fb811b6b)
2013-10-29 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [ba15663] :
Use proper locking function (via the generic locking API) Reported by Max E. Reyes Vera Juarez.
2013-10-29 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [a858f91] :
Re-install dlg callbacks (for restoring FROM/TO hdr) upon re-loading dialogs on startup. Reported by Jeff Pyle.
2013-10-23 Bogdan Andrei IANCU <bogdan at opensips dot org>
* [5e5f611] :
Merge pull request #109 from rrb3942/shutdown_segfault
Reset prepared statement between query lists on shutdown
2013-10-23 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [8cf06b8] :
Fixed the weight-based balancing alg. Credits go to Rob Gagnon (rgagnon24)
2013-10-23 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [27af4ab] :
Proper support for BIGINT (as long) in the db_text SQL driver. Many thanks to Jeff Pyle for reporting and troubleshooting this.
2013-10-22 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [74a2cab] :
Removed "auto" flag for the dlg_id in DB_TEXT spec file Reported by Jeff Pyle.
2013-10-22 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [169f519] :
README files regenerated from XMLs
2013-10-18 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [1f20046] :
Fixed bad prototype for abort when compiling with TM_TIMER_DEBUG. Reported by Mayama Takeshi Closes issue #105
2013-10-18 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [c937082] :
Fixed locking on purging profiles for terminated dialogs - in strange cases of concurancy between provisional and final replies, the profile ops for provisional reply may end up iterating on a deleted list. Reported by Trevor Francis (46labs) Closes issue #102
2013-10-18 Earl C. Ruby III <eruby at knowledgematters dot net>
* [a0e4a59] :
The latest Linux distros from OpenSUSE, Fedora, and other non-Debian based distros no longer add symlinks for libcurses.so -> libncurses.so. Trying to compile menuconfig with -lcurses will not work on these distros, so I changed -lcurses to -lncurses, since -lncurses will work on any modern Linux distro with the ncurses5 libraries installed.
See http://stackoverflow.com/questions/1517756/whats-the-difference-between-lcurses-and-lncurses-when-compiling-c-using-ncur for more info.
(cherry picked from commit 7ae769dac06146253ea07d8d930d73f7ccaa817a)
2013-10-17 Razvan Crainea <razvan at opensips dot org>
* [503ba4b] :
fix ratelimit memory corruption
(cherry picked from commit 19cd04ab12fe37a4fd5685e7eabde1d435f8c8b4)
2013-10-15 Ovidiu Sas <osas at voipembedded dot com>
* [bf74841] :
uac_auth: fix memory leak reported by Jeff Pyle <jpyle@fidelityvoice.com> - affected modules: b2b_entities, uac, uac_registrant
(cherry picked from commit 868976769543970844d9001a2c68e11a3eb026b0)
2013-10-16 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [464d85a] :
Make pv_parse_format() more verbous on reporting the causes to fail. Reported by peppolon on IRC
2013-10-10 Liviu Chircu <liviu at opensips dot org>
* [1f36615] :
Fix a particular startup crash
e.g. when defining only 1 tcp interface while specifying
"disable_tcp=true"
(cherry picked from commit 101ee782480af07cd9d056b41b9f33d331d21951)
2013-10-07 Vlad Paiu <vladpaiu at opensips dot org>
* [34e438e] :
Fixed the re-loading of dlg vars after restart Credits to Nick Altmann
(cherry picked from commit ec0d05aaef41b0a4f30419bbab1295eb4bce7e49)
2013-10-04 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [92dfede] :
In DELAYED mode, flush vars & profile to DB at ACK time too - no timer tick between 200 OK and ACK was droping the update operation to DB. Please note that this "bug" had actually no implications, as dialog data is either used from memory cache, either from DB after a restart (and a shutdown flushes everything to DB). Related to issue #97.
2013-10-03 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [5a93021] :
handle the signals while waiting for the startup route to end (if not, the main proc will never know if the child running startup route crashed and it will hang for ever during startup)
2013-10-03 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [12840ae] :
- doc examples fixed Reported by "miha" on IRC
2013-10-01 liviuchircu <liviu at opensips dot org>
* [9cbee7c] :
Fix some documentation typos
(cherry picked from commit c229d98c3074e3f3c83e99918ed30f9d7e1c8dd6)
2013-10-01 liviuchircu <liviu at opensips dot org>
* [5d79a5f] :
Fix missing GPL headers in event_xmlrpc module
(cherry picked from commit 5bcab3923d0c4ed7d8d613544cc6f1a043dc78c3)
2013-09-25 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [0b428d3] :
- fixed double free when building insert fails (in buffered insert mode) Reported by Brett Nemeroff
2013-09-25 Bogdan-Andrei Iancu <bogdan at opensips dot org>
* [33c4b6f] :
- fixed overflow in parsing the content len value Reported by franklyfox on GITHUB Closing issue #78
2013-09-20 Bogdan Andrei IANCU <bogdan at opensips dot org>
* [7606eab] :
Merge pull request #73 from wdoekes/wjd-pua_min_expires_doc
pua.c sets int min_expires= 300, not 0 as documentation states.
2013-09-17 Damien Sandras <dsandras at beip dot be>
* [f986bac] :
Fix PUA module so that it sends a final PUBLISH on expiration.
A final PUBLISH with expires=0 is now generated when a publication has
expired. This will trigger the transmission of a final state NOTIFY.
Cherry picked from: c5a57a8d39cf568d6558332ca71ea8344a5a4f57
2013-09-16 liviuchircu <liviu at opensips dot org>
* [9d638cb] :
Fix evi crash when defining more than 10 events
(cherry picked from commit ba04cba6d5f7bc945bbc42d2e46694639fea8b79)
=========================== Release 1.9.1 ==============================
2013-05-08 20:22:28 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [10018] :
backport from trunk (rev #10017)
- fixed expiring of presentities in the pua module - remove from hash and DB.
Credits go to Ovidiu Sas for reporting and helping with troubleshooting$
2013-05-08 20:15:34 Razvan Crainea <razvancrainea at opensips dot org>
* [10016] :
Updated version to 1.9.1
2013-05-08 18:56:35 Vlad Paiu <vladpaiu at opensips dot org>
* [10014] :
fixed warning introduced by previous commit
2013-05-08 18:44:48 Vlad Paiu <vladpaiu at opensips dot org>
* [10012] :
backport from trunk (rev #10011)
always free the DB result ( or else subsequent select queries will/might fail )
2013-05-08 18:37:10 Vlad Paiu <vladpaiu at opensips dot org>
* [10009] :
backport from trunk (rev #10008)
always enforce the column delimiter
2013-05-08 17:24:30 Vlad Paiu <vladpaiu at opensips dot org>
* [10005] :
backport from 1.8 (rev #10004)
allow digits in the Content-Type
Victor Fernandez Martinez
2013-05-08 16:06:58 Vlad Paiu <vladpaiu at opensips dot org>
* [10001] :
do not mess up existing dialog legs in case re-sizing the legs array fails due to no more share mem
2013-05-08 14:43:50 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9999] :
backport from trunk (rev #9998):
- fixed triggering of error route - reset the error info all the time after the error route execution, to be sure we have only 1 triggering. Not reseting the error info may trigger error route multiple time for the same error, due nested usage of run_action_list (for IF, WHILE and SWITCH statements)
2013-05-07 14:31:01 Vlad Paiu <vladpaiu at opensips dot org>
* [9992] :
backport from trunk (rev #9991)
GRUU fixes for building & matching GRUUs
Credits to Tolga Tarhan
2013-05-03 17:22:16 Ovidiu Sas <osas at voipembedded dot com>
* [9989] :
b2b_logic: set proper Contact header for external scripts
- closes sf 3612046: opensips crashing when excuting b2b_logic extern script
- backport from trunk rev #9988
2013-04-28 18:51:26 Vlad Paiu <vladpaiu at opensips dot org>
* [9980] :
fixed temporary GRUU bug that lead to infinite loop
Credits to Tolga Tarhan
2013-04-22 18:00:30 Liviu Chircu <liviu at opensips dot org>
* [9976] :
backport from trunk (rev #9975):
[core]: Fixed a typecast related bug in crc32_uint
2013-04-22 12:20:36 Vlad Paiu <vladpaiu at opensips dot org>
* [9974] :
backport from trunk (rev #9973)
Improved error handling
Better re-connect handling
Credits to Ryan Bullock
2013-04-19 13:55:53 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9970] :
backport from trunk (rev #9969):
fixed the contact removel when using the force registration flag with limited number of contact.
- Credits to Kiss Karoly for reporting and assisting with the debugging / testing
- Closes bug id 3610662 on SF
2013-04-19 12:02:47 Razvan Crainea <razvancrainea at opensips dot org>
* [9967] :
Backported from trunk (rev #9966):
event_rabbitmq: read/write commands only once
Thanks to Brett and Trevor for helping in debugging this
Closes bug report #361001
2013-04-18 18:36:14 Razvan Crainea <razvancrainea at opensips dot org>
* [9964] :
Backported from trunk (rev #9963):
double check if the dialog can be found after created
2013-04-18 18:29:45 Razvan Crainea <razvancrainea at opensips dot org>
* [9961] :
Backported from trunk (rev #9960):
restore route type after running error route
2013-04-18 17:28:35 Razvan Crainea <razvancrainea at opensips dot org>
* [9958] :
Backported from trunk (rev #9957):
prevent REINVITEs from overwriting acc internal structures
2013-04-10 18:48:40 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9953] :
backport from trunk (rev #9952):
- fixed re-PUBLISH in pua framework (when the PEUBLISH expire is shorter than presentity lifetime)
- fixed the callback parameter for the re-PUBLISH request.
Many thanks to Damien Sandras for reporting and helping with troubleshooting and testing this.
2013-04-08 19:25:03 Razvan Crainea <razvancrainea at opensips dot org>
* [9950] :
Backported from trunk (rev #9949):
Updated rtpproxy documentation for bridge mode
2013-04-08 18:56:29 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9947] :
backport from trunk (rev #9946):
- fixed choosing the outbound interface in serial forking scenarios
Thanks to John Quick for reporting and helping with the troubleshooting
2013-04-01 19:46:26 Ovidiu Sas <osas at voipembedded dot com>
* [9942] :
uac_registrant: backport from trunk (rev# 9934, rev# 9935)
- fix mispelled id for registrant timer check
- do NOT alter the initial expires interval for a binding
- related to issue #3609028 reported by Paul (dipegang)
2013-03-28 12:37:25 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [9938] :
Backport from trunk r9937
Fixed matching identity rules when using percent encoded URIs
2013-03-25 18:48:06 Vlad Paiu <vladpaiu at opensips dot org>
* [9930] :
fixed deadlock in case of internal error
2013-03-25 18:06:48 Razvan Crainea <razvancrainea at opensips dot org>
* [9928] :
Backported from trunk (rev #9927):
make sure that DEFS is not inherited between executions
2013-03-22 16:52:31 Vlad Paiu <vladpaiu at opensips dot org>
* [9926] :
backport from trunk (rev #9925)
fixed cachedb_url format documentation
2013-03-22 16:27:37 Vlad Paiu <vladpaiu at opensips dot org>
* [9923] :
backport from trunk (rev #9922)
fixed docs about the hep_capture_on param
2013-03-19 14:05:41 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [9921] :
Backport from trunk r9919
Only send PIDF manipulation when there are no other presence bodies
2013-03-19 14:04:12 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [9920] :
Backport from trunk r9918
Fix handling PUBLISH with Expires 0
SF bug ID: 3607182
2013-03-14 17:46:07 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9913] :
backport from trunk (rev #9912)
- fixed parsing the name of gateways in carrier definition (Gateways with minus char allowed in gateways, but carriers are not loading with such gateways)
Credits go to Nick Altmann
Closes patch #3607865
2013-03-11 11:49:29 Vlad Paiu <vladpaiu at opensips dot org>
* [9895] :
backport from trunk (rev #9894)
fixed dlg_db_sync to match the recent dialog.id table changes
2013-03-11 10:43:01 Vlad Paiu <vladpaiu at opensips dot org>
* [9892] :
backport from 1.8 (rev #9891)
fixed probing mode 1 behavior
2013-03-08 13:52:28 Razvan Crainea <razvancrainea at opensips dot org>
* [9889] :
Backported from trunk (rev #9888);
fixed documentation typo
2013-03-08 11:40:35 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9885] :
backport from trunk (rev #9884):
- move log from ERR to DBG - when testing the SDP for private IPs, not find an SDP is not actually an error.
Reported by Jan ONDREJ.
2013-03-07 17:39:36 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9882] :
backport from trunk (rev #9881):
fix docs - MF hdr is no longer forwarded throught B2B, but a new one is generated for the new call.
Reported by Ryan Bullock
Closes bug #3607102
2013-03-07 14:12:07 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9879] :
backport from trunk (rev #9878):
- path field in location increased from 126 to 255 to accomodate larger path hdr from overSIP.
Reported by Vallimamod Abdullah
Closing bug report #3606244
2013-03-06 16:07:53 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [9872] :
Backport from trunk r9871
Fixed compilation when using system malloc for pkg memory
2013-03-05 16:28:34 Vlad Paiu <vladpaiu at opensips dot org>
* [9859] :
backport from trunk (rev #9858)
fixed issue with hanged transactions in case one forked branch fails to be sent
2013-03-05 11:09:28 Vlad Paiu <vladpaiu at opensips dot org>
* [9856] :
backport from trunk (rev #9855)
fixed dlg_db_sync crash while in no-db mode
Credits to Nick Altmann
2013-02-27 16:27:43 Vlad Paiu <vladpaiu at opensips dot org>
* [9843] :
fixed regression - can now directly compile with TLS=1 make without setting the USE_TLS define via menuconfig
2013-02-27 15:44:38 Razvan Crainea <razvancrainea at opensips dot org>
* [9842] :
Updated 1.9 stable Changelog
=========================== Release 1.9.0 ==============================
2013-02-27 15:41:54 Razvan Crainea <razvancrainea at opensips dot org>
* [9841] :
Removed the RC prefix
2013-02-27 15:36:40 Razvan Crainea <razvancrainea at opensips dot org>
* [9840] :
Updated CREDITS according to latest fixes for 1.9
2013-02-27 10:57:44 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9839] :
backport from trunk (rev #9838):
- fixed crash in MI command "list_tcp_conns" when TCP support is compiled in but disabled.
Reported by Ovidiu Sas.
Closes bug #3606141
2013-02-26 14:11:36 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9832] :
backport from trunk (rev #9831):
- consider foundable in hash table the presentities which were just created and are waiting for reply (they have no timeout, no etag, pending for initial reply). This will avoid creating multiple presentities if we have a burst of publishes but with slow repling.
Many thanks to Damien Sandras for reporting and helping with the debugging.
2013-02-25 12:14:48 Vlad Paiu <vladpaiu at opensips dot org>
* [9819] :
backport from trunk (rev #9818)
fixed missing return for Cancels already matched from script
2013-02-22 18:39:00 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9815] :
backport from trunk (rev #9813):
- fixed loading data from db - do not discard GW/Carriers if no rules - we can do routing directly to a carrier (route_to_carrrier() )
Reported by Nick Altmann
Closes bug #3605439
2013-02-22 18:38:31 Liviu Chircu <liviu at opensips dot org>
* [9814] :
backport from trunk (rev #9812):
route_to_carrier() and route_to_gw() must accept both pvars and strings as parameters
2013-02-21 14:18:43 Vlad Paiu <vladpaiu at opensips dot org>
* [9810] :
backport from trunk (rev #9809)
automatically set TLS=1 when using menuconfig to enable USE_TLS
2013-02-19 17:05:45 Razvan Crainea <razvancrainea at opensips dot org>
* [9805] :
Backported from trunk (rev #9804):
Fixed ratelimit bug where the counter reaches -1
Reported by Matt Williams
Closes bug #3603732
2013-02-17 20:37:05 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9801] :
- fixed URL for module docs
2013-02-17 20:32:51 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9798] :
- fixed help text for "db migrate"
2013-02-17 09:38:29 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [9794] :
backport from trunk (rev #9793):
- fixed bug in marking as used (in a LB failover scenario) the destinations with IDs bigger than 8.
Thanks to Seth Schultz for reporting and help with troubleshooting