forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
9275 lines (4789 loc) · 236 KB
/
Copy pathChangeLog
File metadata and controls
9275 lines (4789 loc) · 236 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
# OpenSIPS 1.7.2
2012-02-22 19:37:41 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8744] :
backport fronm trunk (rev #8741)
- fixed updating the dialog info based on notifies - when matching a notify request, consider only the subsriber-like entitis in hash.
Solved crash (on matching notify versus publish) reported by James Lamanna
2012-02-22 19:34:34 Razvan Crainea <razvancrainea at opensips dot org>
* [8742] :
Backported from trunk (rev #8740):
updated documentation links
2012-02-22 17:26:11 Vlad Paiu <vladpaiu at opensips dot org>
* [8739] :
backport from trunk (rev #8738)
pass send_socket when forwarding replies
2012-02-22 17:18:14 Razvan Crainea <razvancrainea at opensips dot org>
* [8737] :
Updated specs to 1.7.2
2012-02-22 16:25:09 Vlad Paiu <vladpaiu at opensips dot org>
* [8736] :
backport from trunk ( rev #8735 )
- topology_hiding() adds the proper outgoing interface IP in the Contact header
- topology_hiding() can be used in situations where you modify the Contact header before ( like fix_nated_contact, etc )
2012-02-22 15:58:16 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8734] :
backport from trunk (rev #8733):
-fixed the mis-handling of pre-defined codecs (by IANA) (codecs without payload descriptions).
Standard codecs are simply recognized by ID.
Closes bug #3436522
2012-02-22 14:58:57 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8732] :
backport from trunk (rev #8731):
- force_rport() takes affect also if called after t_newtran().
Closes bug #3485739
2012-02-22 14:16:18 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8730] :
backport from trunk (rev #8728 and #8729):
- make the dset printing buffer dynamic, so that larger sets of contacts can be used.
- removed the static limit for the dset buffer
Closes bug #3490495.
2012-02-21 16:39:20 Vlad Paiu <vladpaiu at opensips dot org>
* [8726] :
fixed broken parsing of SIP msg
2012-02-20 16:32:34 Vlad Paiu <vladpaiu at opensips dot org>
* [8724] :
backport from trunk (rev #8723 )
improved doc regarding 100 Trying generation
fixes bug #3485743
2012-02-15 13:05:44 Vlad Paiu <vladpaiu at opensips dot org>
* [8715] :
backport from trunk (rev #8714)
return 1 in case of unknown errors. mysqlclient specifies non-zero return code on unknown errors, and not a positive code. Avoid re-connecting and resetting prep stmts in case there are conflicts on db indexes, for eg
2012-02-07 16:51:21 Vlad Paiu <vladpaiu at opensips dot org>
* [8706] :
backport from trunk (rev #8705)
updated docs about return code of avp_db_query
2012-02-03 17:46:35 Razvan Crainea <razvancrainea at opensips dot org>
* [8703] :
Backported from trunk (rev #8525):
Fixed sockaddr error on OpenBSD
2012-01-31 10:36:47 Di-Shi Sun <di-shi at transnexus dot com>
* [8697] :
Updated configuration file.
2012-01-30 15:19:51 Razvan Crainea <razvancrainea at opensips dot org>
* [8695] :
fixed previous usrloc backport for 1.7
2012-01-30 15:15:03 Razvan Crainea <razvancrainea at opensips dot org>
* [8694] :
Backported from trunk (rev #8693):
fixed rtpproxy_offer/answer functions - don't overwrite the RTPProxy
reply when called with none or one parameter
2012-01-30 15:00:55 Razvan Crainea <razvancrainea at opensips dot org>
* [8692] :
Backported from trunk (rev #8691):
Fixed bug while fetching sip_instance column in usrloc
2012-01-25 20:51:40 Anca Vamanu, <anca at oepnsips dot org>
* [8687] :
Fix: destroy the subscription dialog when Notify replied with 408 (reported by Saul Ibarra Corretge)
2012-01-20 15:08:47 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8679] :
backport from trunk (rev #8678):
bug fixed : if failed to parse the first line, we simply consider that the whole buffer was parsed, so that nothing is left to be parsed :) - this will do the trick and make "msg" struct acceptable for following parsing attempts
Reported by Ronald Cepres - many thanks for the testing and debugging
2012-01-19 11:47:49 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [8674] :
Backport from trunk r8669:
Fixed nat_traversal module to work properly if dialog was created before nat_keepalive was called
2012-01-17 20:37:12 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8672] :
- fixed jumping to next "a" line if "\n" only is used as line separator - not sure if the SDP RFC allows \n along \r\n, but the rest of the SDP parser to accept this, so it is a matter of consistence to accept it everywhere.
2012-01-17 19:43:34 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8670] :
- fixed parsing of clockrate and params for the "rtpmap" attribute in SDP;
- proper handling of malformed formats for rtpmap
2012-01-17 14:17:19 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8667] :
backport from trunk (rev #8666):
- fixed ugly pkg memory leak triggered by usage in failure route of body manipulation function, of destination URI changing and of PATH usage.
Reported by Ryan Bullock (many thanks for help in troubleshooting and testing this)
2012-01-13 15:03:15 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [8660] :
Backport from trunk r8651:
Fixed compilation error when OpenSSL is compiled without SSL2 support
2012-01-12 13:02:44 Anca Vamanu, <anca at oepnsips dot org>
* [8656] :
- fixed bogus character in start string (bug #3471973)
2012-01-11 13:01:35 Razvan Crainea <razvancrainea at opensips dot org>
* [8654] :
Rollback the db_flatstore module to revision #8631
2012-01-10 16:59:37 Vlad Paiu <vladpaiu at opensips dot org>
* [8653] :
backport from trunk ( #8652 )
fixed ugly bug
2012-01-06 17:50:46 Razvan Crainea <razvancrainea at opensips dot org>
* [8649] :
Backported from trunk (#8347):
fixed restoring headers for sequentials in serial forking scenario
Reported by Kiss Karoly
2012-01-05 14:57:35 Vlad Paiu <vladpaiu at opensips dot org>
* [8646] :
Backport from trunk ( rev #8643 )
increased mysql blob support
2012-01-05 13:41:48 Vlad Paiu <vladpaiu at opensips dot org>
* [8645] :
Backport from trunk ( rev #8644 )
Fixed Debian init script to make sure /var/run/opensips/ folder exists
Credits to shimaore
Closes bug #3463402
2012-01-05 00:39:33 Ovidiu Sas <osas at voipembedded dot com>
* [8642] :
b2b_entities: fix crash for SIP replies w/o 'To' header
- reported by "Ryan Revels" <ryan@revelous.net>
2012-01-03 19:48:15 Razvan Crainea <razvancrainea at opensips dot org>
* [8640] :
Fixed db_flatstore module errors after backporting from 1.7
Reported by Plamen on User list
2012-01-03 12:52:32 Razvan Crainea <razvancrainea at opensips dot org>
* [8639] :
Backported from trunk (#8616):
replaced the IP address received by rtpproxy with
the second parameter of the rtpproxy_* functions
2012-01-03 12:40:00 Razvan Crainea <razvancrainea at opensips dot org>
* [8638] :
Backported from trunk (rev #8637):
Allow exec_* functions to be called from timer route
Feature request #3466493
2011-12-23 10:43:51 Razvan Crainea <razvancrainea at opensips dot org>
* [8632] :
Added single_file parameter in the db_flatstore module used to
specify that all processes should dump data in the same file
instead of different files for each process.
2011-12-22 12:14:20 Razvan Crainea <razvancrainea at opensips dot org>
* [8631] :
Backported from trunk (rev #8630):
fixed AVP name resolving when names are specified as pvar
2011-12-20 19:38:03 Ovidiu Sas <osas at voipembedded dot com>
* [8629] :
backports: Revision: 8560 8614 8615
uac_registrant: check the validity of a forced socket
tm: adding the ability to force a remote IP as a destination
- usefull when we send uac requests to a destination identified by a FQDN,
but we want to control/force a particular entry for the given FQDN
- this is usefull for the uac_registrant to keep registrations on the same server
- this is usefull for the b2b modules to send in-dialog requests to the same
destination is the remote target is an FQDN
uac_registrant: keep re-registering on the same server for FQDNs
2011-12-16 03:17:38 Ovidiu Sas <osas at voipembedded dot com>
* [8626] :
b2b_logic: backport from trunk
- Revision: 8624 - fix db cleanup for calls without entities during init db restore
- Revision: 8625 - during call restore from db, the local_index must be preserved
2011-12-15 22:55:00 Ovidiu Sas <osas at voipembedded dot com>
* [8623] :
b2b_logic: release the lock before exiting on error case
- backport from trunk Revision: 8622
2011-12-13 16:43:36 Ovidiu Sas <osas at voipembedded dot com>
* [8620] :
registrar: fix memory leak for forced registrations
- backport from trunk: Revision: 8604
2011-12-13 11:59:48 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8618] :
backport from trunk (rev 8617):
fixed the text param in Reason header - needs to be quoted as per RFC 3226
Credits go to Mark Dalby (krypt0knight)
Closes patch 3448143
2011-12-09 17:46:47 Ovidiu Sas <osas at voipembedded dot com>
* [8613] :
examples: fix nathelper.cfg
- backport from trunk Revision: 8612
2011-12-05 18:32:10 Ovidiu Sas <osas at voipembedded dot com>
* [8606] :
registrar: fix opensips crash while calling save on on_reply for REGISTER with no Expires header field
- backport from trunk (Revision: 8605)
- closes patch id# 3451207 reported by Ruslan Bukin (bukinr)
- credits goes to Ruslan Bukin (bukinr)
2011-11-29 15:30:22 Razvan Crainea <razvancrainea at opensips dot org>
* [8596] :
Backported from trunk(#8595):
* Properly insert permissions CONTEXT_INFO and PATTERN into database
Reported and fixed by Richard Revels - closes bug #3442873
* Quote arguments sent when the script is executed with bash
Reported and fixed by Richard Revels - closes bug #3442146
2011-11-29 05:24:58 Di-Shi Sun <di-shi at transnexus dot com>
* [8593] :
Fixed buffer overflow issue when number of destinations more than 5.
2011-11-26 10:27:25 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8591] :
- better description for the db_default_url core param in default script
2011-11-24 19:50:03 Ovidiu Sas <osas at voipembedded dot com>
* [8588] :
opensips.cfg: fix default config
- no db => comment out db_default_url
# OpenSIPS 1.7.1
2011-11-23 15:57:31 Vlad Paiu <vladpaiu at opensips dot org>
* [8586] :
Backport from trunk ( rev #8585 )
fixed topology hiding & routing requests before the dialog is established
2011-11-23 13:49:39 Razvan Crainea <razvancrainea at opensips dot org>
* [8584] :
Backported from trunk (8503 and 8526):
Removed unused but declared variables
- fixes gcc 4.6.1 warning -Wunused-but-set-variable
Fixed some warnings:
* 'isatty' redeclaration and 'input'
* included stdlib in mem/mem.c for malloc function
2011-11-22 13:59:07 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [8583] :
Fixed engage_media_proxy on parallel forking scenarios
2011-11-21 21:21:26 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8576] :
backport from trunk (rev #8575)
- fixed dangling pointers in "key" field of statistics
2011-11-21 14:00:16 Razvan Crainea <razvancrainea at opensips dot org>
* [8574] :
Backported from trunk (#8573):
Fixed parsing loop in rtpproxy module when a bogus message is receive
Reported by Kiss Karoly
2011-11-18 18:02:41 Vlad Paiu <vladpaiu at opensips dot org>
* [8571] :
backport from trunk ( rev #8570 )
reset pointer to NULL in order to not access invalid memory later
Fixes bug #3429715
2011-11-18 17:30:43 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8568] :
backport from trunk (rev #8567)
fixed crash in double call of fix_nated_contact()
Reported by Kiss Karoly
Closes bug #3436582
2011-11-17 18:03:04 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8562] :
backport from trunk (rev #8561):
- fixed handling the negative indexes for "branch" script variables
2011-11-17 10:32:01 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [8559] :
Changed severity of some log lines from INFO to DBG
2011-11-16 22:40:31 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [8557] :
Fixed using zero as netmask in permissions module
2011-11-16 22:37:25 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [8555] :
Fixed callcontrol interaction with dialog module
- Dialog is immediately created when call_control is called
- Removed no longer needed TM module callback and script postptrocess
callback
2011-11-16 21:58:42 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [8553] :
Fixed mediaproxy interaction with dialog module
- Create dialog on call to engage_media_proxy
- Internally call user_media_proxy on transaction forwarded
callback instead of doing it on dialog creaton
2011-11-16 18:21:37 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8550] :
backport from trunk (rev #8549):
fixed body lumps deletion when message body is delete from failure route.
Reported by Ryan Bullock.
Closes bug #3432430.
2011-11-15 11:55:43 Razvan Crainea <razvancrainea at opensips dot org>
* [8548] :
Backported from trunk (#8543):
fixed memory corruption when rtpproxy autobridging is used.
* Reported by Sergey Lavrov
* Credits for patch go to Walter Doekes
2011-11-14 18:30:35 Vlad Paiu <vladpaiu at opensips dot org>
* [8547] :
Backport from trunk ( rev #8546 )
fixed callback registering with topology hiding
2011-11-14 13:47:43 Razvan Crainea <razvancrainea at opensips dot org>
* [8545] :
Backported from trunk (rev# 8544):
delete notification UNIX socket in mod_destroy
Reported by Kiss Karoly
2011-11-10 10:15:58 Di-Shi Sun <di-shi at transnexus dot com>
* [8541] :
Fixed reporting called number with user parameters issue.
2011-11-09 12:21:45 Razvan Crainea <razvancrainea at opensips dot org>
* [8539] :
Backported from trunk (#8538):
Fixed 'rtpproxy_stream2*' count parameter parsing - also accept negative values
2011-11-08 19:02:11 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8537] :
backport from trunk (rev #8267)
- load statistics use the statistics interface instead of atomic ops
Reported by Ovidiu Sas
2011-11-08 13:18:26 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8535] :
backport from trunk (rev #8534):
fixed 2 bugs
- fixed the sign of the SIP reply code (500 instead of -500) in case on internal errors
- in acc, properly handle the FAKED_REPLY when checking for provisional replies with SDP.
Reported by Kiss Karoly (thanks for the help with troubleshooting)
2011-11-02 12:42:31 Vlad Paiu <vladpaiu at opensips dot org>
* [8523] :
Backport from trunk (rev #8522 )
In case of select error, do not move forward to checking the FDs
2011-11-01 22:41:53 Anca Vamanu, <anca at oepnsips dot org>
* [8520] :
- fixed possible crash - wrong size calculated at realloc
2011-11-01 15:13:30 Ovidiu Sas <osas at voipembedded dot com>
* [8518] :
b2b_logic: backport r8516
fix crash on call termination when running b2b_logic without db
* reported by:
Jock McKechnie (jock.mckchnie@gmail.com)
Darren (ddgiants@gmail.com)
2011-10-24 14:38:20 Vlad Paiu <vladpaiu at opensips dot org>
* [8509] :
backport from trunk ( rev #8508 )
validate_dialog() different return codes for each type of check failure
2011-10-18 13:30:29 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8500] :
backport from trunk (rev #8499):
- fixed return error code for pv_XXX_authorize() - report the case of "bad password".
Credits go to Walter Doekes
Closes bug #3422604
2011-10-18 13:08:51 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8497] :
backport from trunk (rev #8496):
-fixed bug in evaluating regexp based conditions - as strings has to be null terminated, the script interpreter tries to put a '0' at the end of operators, but some of them may be static strings in the read-only data segment, so they cannot be written. The fix changed the way the "const" values are initialized, so that they would not end up in RO data segment.
Closes bug #3424888
2011-10-18 11:39:22 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8493] :
backport from trunk (rev #8492):
- fixed tests on index for several vars - when using another var as index, if value is 0, results in error
Reported by Walter Doekes
Closes bug #3423601
2011-10-13 22:07:02 Anca Vamanu, <anca at oepnsips dot org>
* [8481] :
- fix: To and From header not the same in send Invite and ACK when uri contained parameters (bug #3406294)
2011-10-12 10:18:37 Di-Shi Sun <di-shi at transnexus dot com>
* [8476] :
Merged bug fix from trunk.
1. Fixed network ID reporting issue.
2. Fixed t_relay check issue in sample configuration file.
2011-10-11 16:24:45 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8473] :
backport from trunk (rev #8472):
- fixed ugly bug in inserting the rport in via (in replies) when no rport or received exists. The correct fix in this case is to force both received and rport - RFC says that rport must come together with received.
Reported by UnixDev and wdoekes on IRC channel #opensips.
2011-10-11 11:26:03 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8470] :
backport from trunk (rev #8469):
-documentation fixes and updates
Credits go to Walter Doekes
Closes bug #3417793
2011-10-10 15:59:16 Vlad Paiu <vladpaiu at opensips dot org>
* [8460] :
backport from trunk ( #8459 )
fix importing rules doc from DB
2011-10-03 15:25:13 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8444] :
backport from svn (rev #8424 + #8436):
fix in properly inserting rport / received params in replies when VIA hdr has multiple bodies.
Closes bug #3415264
2011-10-03 14:52:51 Razvan Crainea <razvancrainea at opensips dot org>
* [8442] :
Backported from trunk (rev 8441):
Reset flags when using dispatcher list_file
Fixes bug #3417791
2011-10-03 14:14:34 Vlad Paiu <vladpaiu at opensips dot org>
* [8440] :
backport from trunk ( rev #8439 )
Return code allows to differentiate between queries that return no result set and queries that produced errors
2011-10-02 16:20:44 Anca Vamanu, <anca at oepnsips dot org>
* [8431] :
- fix bug: initialize global pointers pres_event_p and dialog_event_p to NULL
2011-10-02 15:59:54 Anca Vamanu, <anca at oepnsips dot org>
* [8429] :
- applied patch from Walter Doekes(#3413995) : bug fix in memory management
2011-09-30 13:58:16 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8425] :
backport from trunk (rev #8424)
- fixed the size of the list of resources (when doing LB). Original description: when calling load_balance() with "resource1" and sometimes with "resource1;resource2" the call_res static array in do_load_balance is resized, and call_res_no is updated to two. When calling get_dst_load, call_res_no is passed, instead of rl->n, so get_dst_load is always performed on 2 resources, even when only one is passed.
Credits go to Walter Doekes
Closes bug #3414860
2011-09-30 13:45:56 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8422] :
backport from trunk (rev #8421):
- fixed several mem leaks when doing lb_reload
Credits go to Walter Doekes
Closes bug #3411398
2011-09-29 13:53:34 Vlad Paiu <vladpaiu at opensips dot org>
* [8418] :
backport from trunk (rev #8417 )
proper Via header memory free
fixes bug #3414001
Thanks to Walter Doekes
2011-09-29 13:04:42 Vlad Paiu <vladpaiu at opensips dot org>
* [8414] :
backport from trunk (rev #8413)
fixed wrong module_destroy in case uac_auth API is not available
fixes bug #3415272
Credits to Walter Doekes
2011-09-27 16:03:35 Razvan Crainea <razvancrainea at opensips dot org>
* [8398] :
Backported from trunk (8397):
Fixed bug in the rtpproxy module - when a disabled rtpproxy
is chosen to handle the request, it was entering in a loop that never stopped
2011-09-27 12:36:02 Vlad Paiu <vladpaiu at opensips dot org>
* [8395] :
backport from trunk (#8394)
fixed to param freeing
2011-09-23 13:38:45 Vlad Paiu <vladpaiu at opensips dot org>
* [8385] :
backport from trunk ( #8384 )
Fix crash in case the DB contains dialogs with sockets that OpenSIPS is not listening on anymore
2011-09-23 11:17:55 Razvan Crainea <razvancrainea at opensips dot org>
* [8382] :
Backported from trunk (r8216):
fixed cfgutils README - removed invalid function 'get_random'
2011-09-22 13:56:16 Vlad Paiu <vladpaiu at opensips dot org>
* [8381] :
backport from trunk :
complete commit #8375
Credits to Walter Doekes
2011-09-21 20:43:56 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8378] :
backport from trunk (rev #8377)
- fixed bug leading into infit looping over the same character if the SDP 'c' line is malformed
This is a dangerous bug as it can be used to attack and exploit opensips with malformed pacakges.
Credits for reporting and fix go to Christophe Sollet
2011-09-21 18:32:33 Vlad Paiu <vladpaiu at opensips dot org>
* [8376] :
- set param list in TO header to NULL upon freeing params
- fixed unreachable code in b2b_logic
- fixed mem leak in osp
Thanks to Walter Doekes for reporting
Closes bug #3411434
2011-09-14 01:41:14 Ovidiu Sas <osas at voipembedded dot com>
* [8372] :
b2b_logic: backport revision 8369 from trunk:
update dlginfo structure not updated for early dialogs
closes bug id: 3353049
2011-09-14 01:31:47 Ovidiu Sas <osas at voipembedded dot com>
* [8371] :
b2b_logic: setting svn keywords
2011-09-12 11:09:36 Vlad Paiu <vladpaiu at opensips dot org>
* [8368] :
backport from trunk ( rev #8367)
fixed attempt of accesing bogus address
Fixes bug #3407299
Thanks to Richard Revels for reporting and patch
2011-09-09 22:02:05 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8366] :
backport from trunk (rev #8365):
- fixed bug when appending timer to a timer process.
Reported and debugged by Ovidiu Sas
2011-09-09 18:20:55 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [8364] :
Backport from trunk r8361:
Added call token to callcontrol to help detect callid duplicates
2011-09-09 18:17:08 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [8363] :
Backport from trunk r8360:
Added ability to limit concurrent calls to CallControl
2011-09-09 18:12:49 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [8362] :
Backport from trunk r8359:
Pass the prepaid account flag's value to the call-control application
Credits go to Luci Stanescu
2011-09-08 14:17:02 Vlad Paiu <vladpaiu at opensips dot org>
* [8355] :
backport from trunk (#8354)
fixed error checking
2011-09-08 06:12:54 Di-Shi Sun <di-shi at transnexus dot com>
* [8352] :
Update README.
2011-09-08 05:41:44 Di-Shi Sun <di-shi at transnexus dot com>
* [8351] :
Update documentation.
2011-09-07 12:04:11 Razvan Crainea <razvancrainea at opensips dot org>
* [8349] :
Backported from trunk (#8348):
fixed rtpproxy socket parsing error
2011-09-06 12:18:18 Vlad Paiu <vladpaiu at opensips dot org>
* [8346] :
backport from trunk ( rev #8345 )
fixed ugly bug in case of TLS that would cause connection corruption
Fixes bug #3404595
2011-09-05 13:42:09 Razvan Crainea <razvancrainea at opensips dot org>
* [8344] :
Backported from trunk (# 8182):
Added a new function test_and_set_dlg_flag that can
atomically check and set a flag value
2011-09-01 11:17:49 Razvan Crainea <razvancrainea at opensips dot org>
* [8343] :
Backported from trunk (#8342):
Included <netinet/in_systm.h> header before <netinet/ip.h> for FreeBSD systems.
Closes bug #3401475
2011-08-26 19:03:40 Razvan Crainea <razvancrainea at opensips dot org>
* [8341] :
Backported from trunk (#8340):
Fixed documentation title
# OpenSIPS 1.7.0
2011-08-26 17:14:15 Razvan Crainea <razvancrainea at opensips dot org>
* [8338] :
Updated ChangeLog
2011-08-26 16:42:43 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8337] :
- 1.7 is no longer beta, but stable
2011-08-26 13:36:18 Razvan Crainea <razvancrainea at opensips dot org>
* [8336] :
Backported from trunk (#8335):
Fixed perl syntax in osipsconsole when OpenSIPS tables are created
2011-08-26 12:48:20 Bogdan-Andrei Iancu, <bogdan at opensips dot org>
* [8333] :
backport from trunk (rev #8330):
-fixed reason phrase in cancel (as per rfc 3326) : add reason for CANCELs generated by opensips at timeout and for cancels received from caller
Reported by Pete Kelly
2011-08-26 12:44:15 Razvan Crainea <razvancrainea at opensips dot org>
* [8332] :
Backported from trunk (#8331):
fixed failed transactions accounting when cdr_flag is used
2011-08-26 11:44:42 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [8328] :
Backport from trunk r8327:
Added missing flag definition to parser
2011-08-25 20:02:30 Vlad Paiu <vladpaiu at opensips dot org>
* [8326] :
backport from trunk ( #8325 )
allow traced_user_avp to have an integer value
2011-08-25 19:47:30 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [8324] :
Updated nat_traversal module documentation
2011-08-25 19:25:26 Saúl Ibarra Corretgé <saul at ag-projects dot com>
* [8322] :
Backport from trunk r8321: