forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
1442 lines (779 loc) · 36.5 KB
/
Copy pathChangeLog
File metadata and controls
1442 lines (779 loc) · 36.5 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
2010-12-20 21:25:49 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7602] :
fixed compile warnings on Solaris
2010-12-20 21:22:47 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7601] :
- more fixing for BSD compile
2010-12-20 21:16:53 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7600] :
- fixed BSD compile warnings
2010-12-20 21:13:23 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7599] :
- DB update scrips (in 1.6 family)
2010-12-20 20:48:26 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7597] :
- fixed solaris compiling
- fixed license
2010-12-20 20:43:29 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7596] :
fixed missing include on BSD
2010-12-20 20:42:18 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7595] :
removed dep files from SVN
2010-12-20 20:40:13 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7594] :
- fixed compile warnings on xxxBSD
2010-12-20 20:22:19 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7593] :
- removed dialplan from the default modules
2010-12-20 19:54:37 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7591] :
- fixed xxxBSD compile warning
2010-12-20 19:37:46 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7590] :
fixed compile warning
2010-12-20 19:10:31 Anca Vamanu, <anca at voice-system dot ro>
* [7587] :
- fix: change the meaning of expires_offset parameter( do not subtract if from the returned expires, but increase the period to store the subscription with it), reported in bug #3069214
2010-12-20 16:58:44 Anca Vamanu, <anca at voice-system dot ro>
* [7584] :
- fixed crash in error case
2010-12-20 16:32:28 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7582] :
README files updated
2010-12-20 16:14:57 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7579] :
- docs update
2010-12-20 16:09:55 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7578] :
- docs fixed
2010-12-20 15:56:51 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7576] :
-removed bogus test on RURI when input is actually give via pvars.
Credits go to Amduscias (IRC)
2010-12-20 15:31:57 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7575] :
fix some spacing
2010-12-20 15:21:04 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7573] :
- small backport from (trunk) - compile warning
2010-12-20 13:26:09 Anca Vamanu, <anca at voice-system dot ro>
* [7572] :
- fixed expires value notification at timeout(reported in bug #3140296)
2010-12-20 10:59:13 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7570] :
backport from truk (rev 7569):
- do not use a static holder for parameters when calling the TM callbacks - in some b2bua scenarios, the TM callback may be nasted, and parameters gets overwriten.
Reported by Ovidiu Sas.
2010-12-17 19:56:26 Razvan Crainea <razvancrainea at opensips dot org>
* [7568] :
Backported from trunk(7567):
Removed "detect_rtp_idle" module parameter - notifications can be enabled
by setting the "rtpp_notify_socket" module parameter.
rtpproxy_offer and rtpproxy_answer can now receive 'n' flag as a parameter
to activate timeout notifications for a certain call.
2010-12-17 17:28:57 Anca Vamanu, <anca at voice-system dot ro>
* [7565] :
- fix crash in a buggy uac behavior situation
2010-12-17 14:49:39 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7564] :
- fixed bogus line introduced with the prev commit
2010-12-17 10:41:23 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7562] :
backport from trunk (rev #7561):
- fixed handling of WANT_READ / WANT_WRITE events in TLS code. Description:
tls_blocking_write() polls for both POLLOUT and POLLIN at the same time. Normally, socket is ready for write all the time. It causes poll() at line 765 returned immediately.
When using t_relay("tls:xxx") in script, I always get "too many retries with no operation" error message because poll() function returns immediately.
I read the OpenSSL doc http://www.openssl.org/docs/ssl/SSL_connect.html and http://www.openssl.org/docs/ssl/SSL_get_error.html#item_SSL_ERROR_WANT_READ.
When SSL_connect(), SSL_read(), or SSL_write() return SSL_ERROR_WANT_READ, tls_blocking_write() should poll for POLLIN only. And when they return SSL_ERROR_WANT_WRITE, tls_blocking_write() should poll for POLLOUT only.
I think this bug also makes CPU usage to be 100% while looping.
Credits for the fix go to Worawit Wang.
Closes Bug report #3061895
Closes Patch #3118263
2010-12-17 10:26:31 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7560] :
backport from trunk (rev #7559):
- fixed pcre lib detection on Solaris
Credits go to Sergio Gutierrez
Closes patch #3138136
2010-12-17 10:08:29 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7558] :
backport from trunk (rev #7557):
- fixed several issues with prepared statements when dealing wiht DB reconnect events.
Credits go to Stanislaw Pitucha.
Closes bug report #3039943
2010-12-16 20:09:27 Anca Vamanu, <anca at voice-system dot ro>
* [7556] :
- fixed smth in last commit
2010-12-16 18:53:08 Anca Vamanu, <anca at voice-system dot ro>
* [7555] :
- fixed crash when presence module was used in library mode (reported by #3138571)
2010-12-16 17:51:28 Ovidiu Sas <osas at voipembedded dot com>
* [7553] :
backport: Revision 7232, 7233
nathelper: removing obsolete force_rtp_proxy function
- force_rtp_proxy is obsolete by rtpproxy_offer/rtpproxy_answer
nathelper: obsolete flag 's' removed
2010-12-16 17:12:51 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7552] :
- fixed bogus include
2010-12-16 16:29:36 Razvan Crainea <razvancrainea at opensips dot org>
* [7551] :
Fixed small bug introduced in the last commit
2010-12-16 12:43:11 Anca Vamanu, <anca at voice-system dot ro>
* [7548] :
- fixed possible mem leak
2010-12-15 19:20:44 Anca Vamanu, <anca at voice-system dot ro>
* [7547] :
Backported from trunk (7546):
implemented a listener for rtpproxy timeout notifications
added a patch for rtpproxy with a new timer for session establishment
2010-12-15 18:06:55 Anca Vamanu, <anca at voice-system dot ro>
* [7545] :
- fixed dialog info version (reported by Ovidiu Sas)
2010-12-15 13:51:58 Anca Vamanu, <anca at voice-system dot ro>
* [7542] :
- fix adding xmlns attribute twice (credits to Andrew Mortensen, admorten at isc.upenn.edu)
2010-12-15 12:47:33 Anca Vamanu, <anca at voice-system dot ro>
* [7540] :
- fixes in bla (reported by University of Pennsylvania, ISC/Networking & Telecom Dep.)
- increase version per watcher
- correct aggregation of dialogs
2010-12-14 11:40:15 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7538] :
- added missing files from previous backports
2010-12-14 11:37:22 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7537] :
backport from trunk (rev 7536):
- expose internal ret code for authentication function - you can see in the script if the failure was because of an error or because of auth rejected.
- do not log as error if some RADIUS AVP from response set were not found
2010-12-13 21:45:27 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7535] :
- docs updated
2010-12-13 21:21:24 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7534] :
-fixed handling of sstatistics when they are disabled
2010-12-13 21:19:08 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7533] :
- new fixup function added (internal usage)
2010-12-13 21:15:25 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7532] :
backport from trunk (rev #7295):
Added a new pseudovariable called 'env', that provides access to environment variables.
2010-12-13 21:11:50 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7531] :
backport from trunk (rev #7292):
added a new core function, construct_uri which builds a sip uri based on the protocol, username, domain, port and extra params that it receives
2010-12-13 21:07:53 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7530] :
backport from trunk (rev #7291):
Added a new pseudovariable called 'argv', that allows reading arguments specified with '-o' option in command line
2010-12-13 19:36:02 Ovidiu Sas <osas at voipembedded dot com>
* [7529] :
presence_callinfo: update svn ignore list
2010-12-13 19:35:09 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7528] :
- part of previous backports (tm related)
2010-12-13 19:34:20 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7527] :
- fix compiling
2010-12-13 19:33:34 Ovidiu Sas <osas at voipembedded dot com>
* [7526] :
bakport: Revision 7482
presence_callinfo: new module
2010-12-13 18:56:03 Ovidiu Sas <osas at voipembedded dot com>
* [7525] :
backport: Revision 7524
presence: print a warning in the logs for a failed NOTIFY
2010-12-13 18:31:19 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7522] :
backport from trunk (rev 7248):
- if next_branches() returns true, returns 1 if other branches are still pending and return 2 if no other branches are left for future processing - shortly, if 2: this is the last branch, if 1: other will follow
2010-12-13 18:29:13 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7521] :
backport from trunk (rev #7243)
moved time recurrence functions in core
2010-12-13 18:18:12 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7520] :
backport from trunk (rev #7228):
- fixed asyc handler for mi_datagram module - the t_uac_dlg function was never returning a reply as some internal sockets were not properly shared (inherited) at startup.
Reported and tested by Vallimamod Abdullah
Closes bug 3071925
2010-12-13 18:15:00 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7519] :
backport from trunk (rev #6564 & #7219):
Function to estimate fetch value for db
better comment
Credits go to Stanislaw Pitucha
2010-12-13 18:06:07 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7518] :
backport from trunk (rev 7212):
replaced UINT4 with uint32_t in rad_avp_add() function
2010-12-13 18:02:46 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7517] :
backport from trunk (rev #7183):
Added posibility to set destination domain and destination port from script
You can now set $dd and $dp
2010-12-13 18:00:22 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7516] :
backport from trunk (rev #7176):
fixed wrong check for IPv6
2010-12-13 17:57:00 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7515] :
backport from trunk (rev #7140):
Added bitwise operations support for string variables.
To be used with the new IP transformations in binary format.
2010-12-13 17:54:58 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7514] :
backport from trunk (rev 7134):
Added 3 new transformations : IP, SDP and CSV
2010-12-13 17:48:51 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7513] :
backport from trunk:
r7038
Exposed T pointer to on_req tm callbacks
r7131
added t_add_hdrs() function to add a custom header to all internally generated requests from a transaction (cancels, acks)
r7320
proper cleanup in case of error - reset the global transaction pointer if we fail to creat the transaction
Credits go to Kennard White
r7328
Added a new pseudo variable called 'bavp', that can have different values for each branch
r7352
- fixed bug in len calculation
Credits go to Kennard Whit
2010-12-13 17:28:55 Vlad Paiu <vladpaiu at opensips dot org>
* [7512] :
Backported from trunk :
Added a new exported function to the dialog module, fix_route_dialog(), which forces an in-dialog SIP message to contain the ruri, route headers and dst_uri, as specified by the internal data of the dialog it belongs to. The function will prevent the existence of bogus injected in-dialog requests ( like malicious BYEs )
Updated the validate_dialog() and fix_route_dialog() exported functions, so that they can now handle all types of routing ( loose to loose, loose to strict, strict to loose and strict to strict )
2010-12-13 17:02:36 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7511] :
backport from trunk (rev #7109):
Fixed missing include directive
2010-12-13 17:01:14 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7510] :
backport from trunk (rev 7107):
Added priority to RR callback functions
2010-12-13 15:05:59 Anca Vamanu, <anca at voice-system dot ro>
* [7508] :
- fixed - wrong definition of process_body function for events xcap-diff and message-summary
2010-12-10 21:23:39 Ovidiu Sas <osas at voipembedded dot com>
* [7506] :
b2b: adding the dbtext and db_berkley b2b_entities and b2b_logic files
2010-12-10 21:21:05 Ovidiu Sas <osas at voipembedded dot com>
* [7505] :
presence: set the default value to '' for extra_hdrs field from presentity table
2010-12-10 18:15:29 Anca Vamanu, <anca at voice-system dot ro>
* [7503] :
- fixed crash in prepare statements (thanks to Duane Larson for help with debugging)
2010-12-09 20:13:06 Anca Vamanu, <anca at voice-system dot ro>
* [7501] :
- fixed returning expired record
2010-12-09 17:27:40 Razvan Crainea <razvancrainea at opensips dot org>
* [7499] :
Backported from trunk (7139):
ACC linked with Dialog to generate CDRs
2010-12-08 18:05:22 Ovidiu Sas <osas at voipembedded dot com>
* [7493] :
pua_bla: whitespace removal
2010-12-08 17:53:20 Ovidiu Sas <osas at voipembedded dot com>
* [7492] :
pua_bla: whitespace removal
2010-12-08 17:06:17 Ovidiu Sas <osas at voipembedded dot com>
* [7491] :
backport: Revision 7264
- fixed body processing for 'dialog' event ( also applied patch from Vallimamod ABDULLAH)
- fixed flags operation in presence
2010-12-08 16:44:21 Ovidiu Sas <osas at voipembedded dot com>
* [7490] :
backport: Revision 7188
- applied patch #3058434 from Kennard White - a module parameter that enables including
closed status body in Notify when no published info is found for the user
- fixed wrong order of operations when cleaning expired published
2010-12-08 16:24:10 Ovidiu Sas <osas at voipembedded dot com>
* [7489] :
backport: Revision 7423
- applied patch #3116646, update contact in database at sequential Subscribe (credits to
Walter Doeke
s)
2010-12-08 16:06:32 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7488] :
backport from trunk (rev #7487)
- fixed (another) bug in replacing the contact by fix_nated_contact()
2010-12-08 13:46:09 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7486] :
backport from trunk (rev #7485):
- fixed bug in locking dialog while printing it via MI
- included the dialog vals and profiles to be printed as part of dialog context (via dlg_list_ctx MI func)
2010-12-07 19:48:33 Ovidiu Sas <osas at voipembedded dot com>
* [7481] :
backport: Revision 7448
textops: new function is_audio_on_hold()
- returns true if at least one 'audio' stream is on hold
- only 'audio' streams are checked
2010-12-07 17:10:10 Ovidiu Sas <osas at voipembedded dot com>
* [7479] :
backport: Revision 7426 7427
presence: fix extra headers presentity update
presence: handle body only if a 'Content-Type' header is defined for the processed event
- save body from PUBLISH only if Content-Type is defined
- send body in NOTIFY only if Content-Type is defined
2010-12-07 17:03:44 Ovidiu Sas <osas at voipembedded dot com>
* [7478] :
backport: Revision 7319 7327 7329 7330 7331
presence: support for extra headers in NOTIFY
- extra headers received in PUBLISH requests can be
stored and sent to the subscrber via NOTIFY requests
presence: new 'mandatory_body' flag
- distinguish between presence events that requires or not a body
presence: save the new 'mandatory_body' flag
presence: the list of extra headers is provided by each event
during the event registration process
- the list of headers must be provided as a <null> terminated list
- example:
str extra_hdrs[] = {
str_init("Extra_header_1"),
str_init("Extra_header_2"),
{NULL,0},
};
presence: new callback: build_empty_pres_info
- build_empty_pres_info callback allows a module
to provide specific dummy information for a
specific event when no information is available
in the presentity table.
2010-12-07 16:25:19 Ovidiu Sas <osas at voipembedded dot com>
* [7477] :
backport: Revision 7424 7428 7429
pua: define load_pua_api() for easier module api loading
pua: adding "call-info" to the list of known events
pua: reject new PUBLISH requests only if a 'content-type'
is defined for the event being processed
2010-12-07 15:30:07 Razvan Crainea <razvancrainea at opensips dot org>
* [7476] :
backport from trunk (rev 7475):
readers-writers synchronization mechanism
2010-12-07 12:40:25 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7474] :
- more docs updated
2010-12-07 12:15:11 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7472] :
- docs update
2010-12-07 06:39:58 Ovidiu Sas <osas at voipembedded dot com>
* [7470] :
backport: Revision: 7348
parser: adding "call-info" and "line-seize" to the list of known events
2010-12-07 04:03:49 Ovidiu Sas <osas at voipembedded dot com>
* [7469] :
backport: Revision: 7442
sdp parser: detect on hold media during sdp parsing
2010-12-07 02:25:37 Ovidiu Sas <osas at voipembedded dot com>
* [7468] :
backport: Revision: 7127
Reorganizing the core SDP parser:
- sendrecv and ptime are now session attributes
- parse connection and origin IP
- sdp helper logs are now configurable
- parse rtcp attributes
2010-12-06 17:20:12 Anca Vamanu, <anca at voice-system dot ro>
* [7465] :
- fixed compile warning
2010-12-06 15:33:22 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7464] :
backport from trunk (rev #7463):
- Adding Call-Info header to the list of known opensips headers.
Credits go to Ovidiu Sas
Closes patch 3123647
2010-12-03 17:05:29 Anca Vamanu, <anca at voice-system dot ro>
* [7462] :
- added missing file
2010-12-03 14:50:40 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7458] :
backport from truk (rev #7457):
- fixed test on dialog state when using get_dialog_info()
Credits go to Vallimamod Abdullah
Closes bug report 3095064
2010-12-03 14:44:42 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7456] :
backport from trunk (rev 7454):
- fixed typos in log messages
2010-12-03 14:37:13 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7455] :
backport from trunk (rev 7453):
-avoid table version check on DB drivers which do not support QUERY/SELECT ops (like whn using flatstore which is an INSERT only driver)
2010-12-03 13:34:41 Anca Vamanu, <anca at voice-system dot ro>
* [7452] :
- backport from trunk
- changes in the internal structures of b2b_logic
- export api from b2b_logic to be used by other modules
- fixes in b2b_logic and b2b_entitie
2010-12-02 18:33:50 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7450] :
backport from trunk (rev #7449 ):
bug fix: do not use same prepared statement for 2 different types of queries
2010-12-02 12:27:17 Anca Vamanu, <anca at voice-system dot ro>
* [7444] :
- use the new ruri if set in top hiding
2010-12-01 14:13:15 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7441] :
- dbschema re-generated
2010-12-01 14:12:22 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7440] :
backport from trunk (rev #7085 + #7086):
- type field added to aaa_map structure
-type of RADIUS AVP detected when AVP looked into dictionary
-if type is IPADDR or INTEGER and value is received as string, do the proper conversion
based on an patch submitted by Matt Lehner
Closes patch 3013565
2010-11-29 06:23:51 Di-Shi Sun <di-shi at transnexus dot com>
* [7430] :
Added support to append destination network ID by different ways.
2010-11-25 14:46:44 Sergio Gutierrez <saguti at gmail dot com>
* [7419] :
- Typo in module documentation. Credits go to Duane Larson who reported through mail list. Backport from trunk, rev 7417.
2010-11-23 19:14:10 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7410] :
fixed vendor ID when searching radius AVP in radius replies
2010-11-19 00:54:08 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7405] :
backport from trunk (rev #7404):
- added a new statistic to provide access to the opensips internal timestamp
2010-11-18 12:22:26 Anca Vamanu, <anca at voice-system dot ro>
* [7403] :
- fixed params handling for b2b_init_request (wrong report of too few parameters and crash)
2010-11-16 17:35:35 Anca Vamanu, <anca at voice-system dot ro>
* [7386] :
- fix - set relaied_branch before calling the callbacks (it was not working with dialog when no provisional reply was received)
2010-11-15 19:52:43 Anca Vamanu, <anca at voice-system dot ro>
* [7383] :
- fixed crash at startup due to wrong module loading order
2010-11-11 12:41:33 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7369] :
backport from trunk (rev 7367):
- fixed bogus db handling (reset handler when closing connection)
2010-11-11 12:40:44 Anca Vamanu, <anca at voice-system dot ro>
* [7368] :
- fixed partial commit
2010-11-11 12:27:14 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7366] :
backport from trunk (rev #7365):
- fixed bogus db_close at destroy time
2010-11-10 22:15:10 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7364] :
backport from trunk (rev #7363):
- fixed bug when URI contains parameters
2010-11-10 14:05:56 Anca Vamanu, <anca at voice-system dot ro>
* [7361] :
- fixes for UPDATE and crash
2010-11-10 12:18:21 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7359] :
backport from trunk (rev 7356):
fixed probing condition
2010-11-08 14:05:15 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7355] :
backport from trunk (rev #7354):
- more checks on connections
2010-11-04 11:34:10 Anca Vamanu, <anca at voice-system dot ro>
* [7351] :
- quite down sl and tm module when attempting to send a reply for ACK
2010-11-03 14:43:38 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7347] :
backport from trunk (rev #7346):
bug fixed : if nonce reused, return "stale" indicater in the challenge.
Credits for report go to Kennard White
2010-11-03 13:08:58 Anca Vamanu, <anca at voice-system dot ro>
* [7345] :
- fixed - strip uri from header if it contains '<' '>', fixed interpretation of the scenario to prevent atempting to bridge one entity with itself.
2010-10-29 01:02:46 Ovidiu Sas <osas at voipembedded dot com>
* [7337] :
opensipsctlrc: add b2b to the list of EXTRA_MODULES
- backport from trunk: Revision: 7323
- allow b2b tables to be installed via opensipsdbctl script
2010-10-28 12:54:39 Anca Vamanu, <anca at voice-system dot ro>
* [7336] :
- fix - update contact uri pointer in message structure
2010-10-27 15:04:49 Anca Vamanu, <anca at voice-system dot ro>
* [7334] :
- added the possibility to terminate a dialog from another module
2010-10-26 14:05:07 Anca Vamanu, <anca at voice-system dot ro>
* [7326] :
- some fixes backported from trunk
2010-10-22 12:54:45 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7318] :
backport from truk ( rev #7317):
- fixed passing the TO-TAG param if already provided via t_uac_dlg
2010-10-20 20:42:39 Anca Vamanu, <anca at voice-system dot ro>
* [7316] :
- fixed wrong key reference
2010-10-20 20:36:17 Anca Vamanu, <anca at voice-system dot ro>
* [7313] :
- completed the documentation ( -S option), thanks to Norman Brandinger
2010-10-19 16:35:32 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7310] :
backport from trunk (rev #7249):
- fix_nated_contact() may take as optional param a list of URI params to be added to Contact URI
2010-10-19 12:02:04 Anca Vamanu, <anca at voice-system dot ro>
* [7309] :
- fix - omission in the latest fix
2010-10-18 16:07:38 Anca Vamanu, <anca at voice-system dot ro>
* [7307] :
- small fix in send_request
2010-10-18 12:57:35 Anca Vamanu, <anca at voice-system dot ro>
* [7305] :
- fixed omission in the list of methods allowed in early dialog state
2010-10-18 11:59:24 Marc Leurent <lftsy at leurent dot eu>
* [7302] :
* Mon Oct 18 2010 Marc Leurent <marc.leurent@vtx-telecom.ch>
- Add missing dependencies pcre-devel for compilation
- Xlog Module has been merged into core.
2010-10-15 19:34:55 Anca Vamanu, <anca at voice-system dot ro>
* [7301] :
- fixes: - don't delete the logic record if sending request or reply fails (might cause missing BYE), fixes for UPDATE sent by the caller
2010-10-15 18:15:19 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7299] :
backport from trunk (rev #7298):
statistic functions take as param a VOID* instead of UNSIGNED SHORT
2010-10-15 17:45:30 Ovidiu Sas <osas at voipembedded dot com>
* [7297] :
backport from trunk rev:7296
parser: check that 'Content-Length' header is parsed before returning the length
2010-10-15 15:35:06 Bogdan-Andrei Iancu, <bogdan at voice-system dot ro>
* [7294] :
backport from trunk (rev #7293):