forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
5789 lines (3703 loc) · 161 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
=========================== Release 2.1.0 ==============================
2015-03-18 Liviu Chircu <[email protected]>
* [3c6873c] :
update acc SQL scripts
2015-03-18 Liviu Chircu <[email protected]>
* [3865052] :
update CREDITS
2015-03-18 Răzvan Crainea <[email protected]>
* [d68733e] :
update debian rules to create separate debs
2015-03-18 Razvan Crainea <[email protected]>
* [b89660b] :
update specs for the new modules
* fixed a few fedora copy&paste error
* add specs in debian
2015-03-18 Vlad Paiu <[email protected]>
* [adf2b4c] :
Fixed SIP message updating into SHM Do not touch the existing message ( might be regular MSG or fake one ) - let the respective cleaning functions ( per regular MSG or faked ) to take care of this
2015-03-18 Vlad Paiu <[email protected]>
* [28ef79c] :
Input is not mandatory when running exec
2015-03-18 Răzvan Crainea <[email protected]>
* [23d240f] :
presence: update documentation for the new E_PRESENCE_PUBLISH event
2015-03-18 Răzvan Crainea <[email protected]>
* [32ded12] :
Merge pull request #423 from telematico/master
add event support to presence module.
2015-03-18 Răzvan Crainea <[email protected]>
* [0b78ab1] :
Merge pull request #404 from wdoekes/wjd-cfgutils-errmsg-fix
cfgutils: Clarify shvset/varset error message.
2015-03-18 Vlad Paiu <[email protected]>
* [fcf5544] :
Add second parameter for m_dump to limit maximum number of dumped messags Credits to Nick Altmann
2015-03-18 Vlad Paiu <[email protected]>
* [e5cb980] :
Add User-Agent filtering capabilities for lookup() Credits to Nick Altmann
2015-03-18 Vlad Paiu <[email protected]>
* [645b56c] :
Lower log level to WARNING for certain cases in order to reduce log polution Credits to Nick Altmann
2015-03-17 Razvan Crainea <[email protected]>
* [dbca5f4] :
rtpengine: do not register mi functions twice
2015-03-17 Bogdan-Andrei Iancu <[email protected]>
* [9a82575] :
Update documentation
2015-03-17 ionutrazvanionita <[email protected]>
* [38dc567] :
Regenerated certificates with OpenSIPS DN
2015-03-17 ionutrazvanionita <[email protected]>
* [bb0ef8c] :
Renewed certificates expiry date: Mar 16 2016
2015-03-17 Liviu Chircu <[email protected]>
* [4d019ce] :
dispatcher: doc update
2015-03-17 Liviu Chircu <[email protected]>
* [388ce73] :
dispatcher: add the "persistent_state" modparam
Closes #430
2015-03-17 Liviu Chircu <[email protected]>
* [b3880a4] :
fraud_detection: fix uninitialized pointer
2015-03-17 Liviu Chircu <[email protected]>
* [667e379] :
fraud_detection: fix crash if db_url not given
2015-03-17 Liviu Chircu <[email protected]>
* [9ff8bf3] :
startup: only run destroy_f if init_f has been run
This prevents some particular startup crashes (e.g. fraud_detection).
2015-03-17 Liviu Chircu <[email protected]>
* [264f466] :
drouting: fix crash with empty db_url
2015-03-16 ionutrazvanionita <[email protected]>
* [1422358] :
Removed content that is now in Advanced tutorial section from proto_tls documentation
2015-03-16 Liviu Chircu <[email protected]>
* [ceb3a11] :
opensipsdbctl: proper OpenSIPS version in command list
2015-03-14 Nick Altmann <[email protected]>
* [73ae1a8] :
RPM spec: updated for 2.1
2015-03-13 Liviu Chircu <[email protected]>
* [7f2ac40] :
dispatcher: document prio column
2015-03-13 Răzvan Crainea <[email protected]>
* [cfd25fa] :
remove devel section from proto_tls
keep proto_tls_devel.xml for further processing
2015-03-13 Răzvan Crainea <[email protected]>
* [28f5eb9] :
add proto_ws readme
2015-03-13 Răzvan Crainea <[email protected]>
* [a193aa1] :
add proto_tcp readme
2015-03-13 Liviu Chircu <[email protected]>
* [a674a45] :
forking phase: properly handle signals on startup_route
Properly detect an abort within startup_route
(e.g. if an assert() fails with abort_on_assert = yes)
2015-03-13 Vlad Paiu <[email protected]>
* [717cffb] :
Always load proto_udp.so module since we have default UDP listener
2015-03-13 Vlad Paiu <[email protected]>
* [65a15aa] :
Fixed FD closing in proto_ws Don't close FD if in our own process when write fails
2015-03-13 Bogdan-Andrei Iancu <[email protected]>
* [03da45a] :
Fix adding RR params.
Do not use context for keep track of added RR params, as other modules (like TH) may change the RR lumps, so you may end up inconsitent (context says YES, lumps say NO).
All the time look at the lumps to see if RR was done, if params are there, etc.
2015-03-13 Razvan Crainea <[email protected]>
* [cb427c9] :
relax alias declaration syntax
2015-03-13 Razvan Crainea <[email protected]>
* [522dc7d] :
update opensips.cfg to 2.1
2015-03-13 Razvan Crainea <[email protected]>
* [417aa9a] :
properly populate the source address for siptrace
2015-03-13 ionutrazvanionita <[email protected]>
* [8de908d] :
Fixed proto_tls FD closing When sending through a TLS connection, do not close the FD if already in our process x
2015-03-12 Vlad Paiu <[email protected]>
* [ca12c67] :
Have osipsconfig generate config files with proper mpath set Fixes issue #418
2015-03-12 Razvan Crainea <[email protected]>
* [b9ffd9c] :
set default WebSocket port
2015-03-12 Vlad Paiu <[email protected]>
* [9a4b9a6] :
Fixed callback ordering for TH replies to initial requests when using dialog First the dialog callbacks should get called so the module can update it's internal structures, and then the TH cbs should strip things
2015-03-12 Liviu Chircu <[email protected]>
* [ae0d275] :
opensipsdbctl: update "migration" command for OpenSIPS 2.1
2015-03-12 Liviu Chircu <[email protected]>
* [f1ba20b] :
opensipsdbctl: appropriate terminal colors for info and warning
2015-03-12 Liviu Chircu <[email protected]>
* [cd90816] :
opensipsdbctl: add "cachedb" in the list of extra tables
2015-03-12 Bogdan-Andrei Iancu <[email protected]>
* [f4f0227] :
Identation fixes
2015-03-12 Bogdan-Andrei Iancu <[email protected]>
* [4cbbfaa] :
Copyright updated
2015-03-12 Razvan Crainea <[email protected]>
* [b6d4230] :
rr: no need to search the outbound interface
for single route messages, the outbound interfaces is the same with the
inbound one, so there is no need to search for an outbound socket
2015-03-12 Bogdan-Andrei Iancu <[email protected]>
* [f612548] :
Proper WS support in tracing and capturing (Homer)
2015-03-12 Razvan Crainea <[email protected]>
* [73f5a23] :
mi_xmlrpc: format error message as XML
2015-03-12 Razvan Crainea <[email protected]>
* [aafe2ef] :
httpd: propagate tree status code in http return
2015-03-12 Razvan Crainea <[email protected]>
* [d897605] :
allow any protocol in blacklist
2015-03-12 Bogdan-Andrei Iancu <[email protected]>
* [c948b8e] :
Fix compile err (using deprecated macros)
2015-03-12 Bogdan-Andrei Iancu <[email protected]>
* [bef76d1] :
removed all SHM_MEM - shared mem is mandatory
2015-03-12 Bogdan-Andrei Iancu <[email protected]>
* [cb0a88f] :
remove SHM_MEM defines + beautification
2015-03-12 Liviu Chircu <[email protected]>
* [1a8a993] :
Fix routing list debug output (on -DEXTRA_DEBUG)
2015-03-12 Razvan Crainea <[email protected]>
* [9018a94] :
import unistd for versions lower than 2.5.39
2015-03-12 Razvan Crainea <[email protected]>
* [870fa0d] :
Revert "Solve isatty flex warning"
This reverts commit 752d776e24eded80b4fa9e56a53329c03c8f1d49.
2015-03-12 Razvan Crainea <[email protected]>
* [3ba1804] :
do not change publish status in EXPIRE callback
2015-03-11 Bogdan-Andrei Iancu <[email protected]>
* [4e30e8d] :
Fix detection for HAVE_TCP_KEEPxxxx support.
Reported by Pete Kelly
2015-03-11 Vlad Paiu <[email protected]>
* [be9d58c] :
Added FAQ note in the readme about the moving of the topology_hiding() function
2015-03-11 ionutrazvanionita <[email protected]>
* [55d8355] :
merged tlsops module in proto_tls
2015-03-11 Razvan Crainea <[email protected]>
* [7cdd58a] :
check if the callback is not expire, then verify ctx
Thanks go to Peter Kelly for reporting this
2015-03-11 Liviu Chircu <[email protected]>
* [dc6c865] :
tm: fix compilation issues on -DEXTRA_DEBUG
2015-03-10 Bogdan Andrei IANCU <[email protected]>
* [66837ba] :
Merge pull request #429 from etamme/master
expose the DTLS passive flag to allow for passive relay through rtpengine
2015-03-10 Eric Tamme <[email protected]>
* [b577559] :
expose the DTLS passive flag to allow for passive relay through rtpengine
2015-03-10 Bogdan-Andrei Iancu <[email protected]>
* [eaa5f1a] :
Fix ul_show_contact output.
2015-03-10 Liviu Chircu <[email protected]>
* [ab5ec5b] :
msg, branch flags: add extra logging if -DEXTRA_DEBUG is present
2015-03-10 Liviu Chircu <[email protected]>
* [d4fec77] :
tm: proper handling of branch flags in branch_route
2015-03-10 Vlad Paiu <[email protected]>
* [f0869bc] :
Do not close the FD on write errors even if in our context, so we don't get errors when we remove from worker's list
2015-03-10 Vlad Paiu <[email protected]>
* [4d97a8d] :
Fixed freeing of per connection buffer Do not touch the buffer in case we are in a writing context
2015-03-10 Razvan Crainea <[email protected]>
* [d080bcc] :
properly parse WS socket
Credits go to Eric Tamme for reporting this
2015-03-10 ionutrazvanionita <[email protected]>
* [43eaaac] :
Fixed copyright for tls doc
2015-03-10 ionutrazvanionita <[email protected]>
* [59ecda4] :
updated tls documentation
2015-03-10 Razvan Crainea <[email protected]>
* [2781c81] :
fix offset when adding WS transport parameter
2015-03-10 Bogdan-Andrei Iancu <[email protected]>
* [90c410c] :
Fix timer delay detection.
Instead of using the timer TICK to detect its own delays (which is a bit bogus), use the internal timer (which has a higher granularity) to detect delays in the TIMER or UTIMER timers.
2015-03-10 Vlad Paiu <[email protected]>
* [7987850] :
Changed menuconfig templates for generating configs to use the proto_tcp and proto_tls modules
2015-03-10 Razvan Crainea <[email protected]>
* [ad9d1ce] :
exec: fix inline compile errors
2015-03-10 Liviu Chircu <[email protected]>
* [07118f8] :
modules/proto_sctp: add documentation & README
2015-03-10 Liviu Chircu <[email protected]>
* [1eff0b3] :
net/proto_udp: add documentation & README
2015-03-10 Liviu Chircu <[email protected]>
* [18da7b4] :
.html, .pdf and README generation: also build inside "net/" dir
The following commands will now also build documentation from the net/
directory:
* make modules-readme
* make modules-docbook-html
* make modules-docbook-txt
* make modules-docbook-pdf
Some examples:
* make modules-readme modules="proto_udp proto_sctp dialog"
* make modules-docbook-html modules="net/proto_udp modules/tm"
2015-03-09 Vlad Paiu <[email protected]>
* [aba0f90] :
Removed USE_TLS and USE_TCP defines - added support for compiling proto_tls and proto_sctp modules
2015-03-09 Liviu Chircu <[email protected]>
* [122ace5] :
proto_ws: fix unitialized var
2015-03-09 Razvan Crainea <[email protected]>
* [e25e029] :
WS: remove polarssl dependency
2015-03-09 Vlad Paiu <[email protected]>
* [3e440cb] :
When adding FD to hash, check if it exceeds max_fd_no in order to avoid mem corruption
2015-03-09 Razvan Crainea <[email protected]>
* [5f268d6] :
siptrace: support ws protocol
2015-03-09 Razvan Crainea <[email protected]>
* [922fc63] :
ws: for now, we only need the state in shmem
2015-03-09 Razvan Crainea <[email protected]>
* [5d659ff] :
ws: properly search params within a header
2015-03-09 Razvan Crainea <[email protected]>
* [3b88906] :
ws: add module parameters
2015-03-09 Razvan Crainea <[email protected]>
* [7903f2c] :
add WebSocket transport protocol
2015-03-09 Razvan Crainea <[email protected]>
* [178b0cc] :
siptrace: check protocol without colon
Thanks for Satish Patel for reporting this
2015-03-08 Liviu Chircu <[email protected]>
* [0509320] :
dialplan: document timerec_col
2015-03-07 Liviu Chircu <[email protected]>
* [9b626bf] :
cfg.y: do not start OpenSIPS when using HP_MALLOC cfg params
Also fix a linking error on other allocators (commit 607fdddf)
Reported by SamyGo
2015-03-06 Liviu Chircu <[email protected]>
* [607fddd] :
HP_MALLOC: fix hp_status()
* Proper display of free fragment buckets on sig USR1/TERM/shutdown
* some code refactoring
2015-03-06 Vlad Paiu <[email protected]>
* [0aa3df4] :
Fix poll method before initializing UDP & TCP layers
2015-03-06 Vlad Paiu <[email protected]>
* [a3deecc] :
Properly close FDs When releasing the connection in a bad state, we don't always want to close the actual FD in con ( eg. we have the con in a write context, and we have acquire the FD from main - con->fd will be from another worker's context )
2015-03-06 Liviu Chircu <[email protected]>
* [ca0290b] :
remove all svn-specific $Id$ tokens from license headers
2015-03-06 Vlad Paiu <[email protected]>
* [aec9956] :
Fixed bug in unhashing FDs Reset the READ pending flags before running the IO handler
2015-03-05 Liviu Chircu <[email protected]>
* [8dfe15e] :
json: set $json content to NULL if assignment fails
This makes it possible to test for parsing errors if the $json variable
was already populated (possibly even from other SIP requests!)
2015-03-05 Liviu Chircu <[email protected]>
* [8ae9f60] :
rest_client: documentation update
2015-03-05 Liviu Chircu <[email protected]>
* [60d2473] :
rest_post: allow the Content-Type parameter to be NULL
This makes libcurl use the default Content-Type for POST
requests: "application/x-www-form-urlencoded"
2015-03-05 Vlad Paiu <[email protected]>
* [0802311] :
Optimized TCP writing Do not try to aquire FD from main on TCP write in case the TCP connection is already polled on in the context of the current TCP worker
2015-03-05 Liviu Chircu <[email protected]>
* [4efeba5] :
bin interface processing: add check for min length
2015-03-04 Liviu Chircu <[email protected]>
* [5451ab6] :
rest_client: add async capabilities to rest_post()
2015-03-04 Carlos Oliva <[email protected]>
* [dc751e5] :
added event support to presence module.
The event E_PRESENCE_PUBLISH will be triggered each time the presence module receives a PUBLISH
The parameters of the event are:
user::AOR
domain::domain
event::event_type
expires::int_time_to_expire
etag::etag_string
body::string_with_xml_body_of_publish
2015-03-03 Liviu Chircu <[email protected]>
* [7b96d7a] :
Documentation improvements and fixed typos
2015-03-03 Liviu Chircu <[email protected]>
* [0b04f61] :
sngtc: Improve documentation on fetching and compiling libsngtc_node
(cherry picked from commit 9b8b13072e22426f4e5b8e1c3942a0b225e6da2d)
Conflicts:
modules/sngtc/sngtc.c
pt.c
2015-03-03 Liviu Chircu <[email protected]>
* [f3ed4db] :
Fix infinite recursion when nesting $param variables
Keep an array with the route parameters of each nesting level. This
makes it possible to access the parameters of previous route()
statements even if they contain $param variables.
Closes #412
2015-03-03 Vlad Paiu <[email protected]>
* [1f517c3] :
Fix param.valueat at param.name - params are stored in the same order
2015-03-03 Liviu Chircu <[email protected]>
* [685da74] :
avpops: Proper validation for DB_CAP_RAW_QUERY capability
Prevent OpenSIPS from starting if avp_db_query() is used and the concerned
DB engine does not support raw SQL queries. This prevents runtime
crashes in some rare cases (e.g. issues with db_http module, which might
not have full support)
Fixes #405
(cherry picked from commit 8d978ac4530ebf95925efc44cb11d0a549e20a52)
2015-03-02 Liviu Chircu <[email protected]>
* [31c472c] :
opensipsdbctl: Fix DB creation in dev mode
* scripts/opensipsdbctl ... now works
2015-03-02 Liviu Chircu <[email protected]>
* [7fefe50] :
opensipsctl: Fix TLS certificate generation in dev mode
* you can now run scripts/opensipsctl tls ...
* no need to specify ETCDIR
* do not throw error when giving no command
* add template for explicit ETCDIR in opensipsctlrc
Fixes #369
2015-03-01 Bogdan-Andrei Iancu <[email protected]>
* [1b08408] :
Fix setb0flags() usage
2015-03-01 Bogdan-Andrei Iancu <[email protected]>
* [4eeb67d] :
Fix compile warnings
2015-03-01 Bogdan-Andrei Iancu <[email protected]>
* [f3e711d] :
expose get_sock_info_list()
2015-02-28 Ovidiu Sas <[email protected]>
* [3e5915a] :
Makefile.conf.template" add proto_sctp to the list of excluded modules
2015-02-28 Bogdan-Andrei Iancu <[email protected]>
* [2dd472a] :
Update for the new proto design
2015-02-28 Bogdan-Andrei Iancu <[email protected]>
* [2052432] :
If fd is NULL, tcp_conn_get() skips aquire fd
2015-02-28 Bogdan-Andrei Iancu <[email protected]>
* [713e22f] :
Fix: do not set timeout on tcp_conn_get()
2015-02-27 Bogdan-Andrei Iancu <[email protected]>
* [98796b3] :
Merge branch 'transport-interface'
Conflicts:
Makefile.conf.template
io_wait.c
io_wait.h
reactor_defs.h
tcp_main.c
tcp_read.c
udp_server.c
2015-02-27 Razvan Crainea <[email protected]>
* [487998a] :
expose init_tcp_req() to other modules
2015-02-27 Bogdan-Andrei Iancu <[email protected]>
* [44f3f55] :
Use conn idx as it is known.
2015-02-26 Bogdan-Andrei Iancu <[email protected]>
* [11aedc6] :
Major rework on TCP conns lifetime and timeouts.
2015-02-26 Liviu Chircu <[email protected]>
* [7e966f6] :
opensipsctl: fix compatibility issues with FreeBSD [part 2]
Yet another /bin/sh compatibility issue. Completes commit a2494eba
2015-02-25 ionutrazvanionita <[email protected]>
* [2e25e95] :
added schema to uri transformations
2015-02-25 Razvan Crainea <[email protected]>
* [0e720aa] :
store the last called prefix
Check why we keep the last prefix global
2015-02-25 root <[email protected]>
* [3f9ed17] :
Merge branch 'master' of github.com:OpenSIPS/opensips
2015-02-24 Bogdan-Andrei Iancu <[email protected]>
* [608de67] :
Fix parser error - URI in Contact hdr is mandatory
(cherry picked from commit 1fa6a230e499347b29003826790917d44576bda3)
2015-02-24 Bogdan-Andrei Iancu <[email protected]>
* [66f368e] :
FIXME -> TODO
2015-02-24 Bogdan-Andrei Iancu <[email protected]>
* [3222e1e] :
FIX some race condition of conn handling.
Credits go to Vlad.
2015-02-23 Bogdan-Andrei Iancu <[email protected]>
* [3018687] :
Do not release conn from worker after read.
2015-02-23 Bogdan-Andrei Iancu <[email protected]>
* [deee756] :
Set conn lifetime via fcntl like function.
2015-02-23 Bogdan-Andrei Iancu <[email protected]>
* [41dc79d] :
Expose a conn fcntl like function to App level.
1. tcp_conn_fcntl() function offered by TCP net layer
2. TLS and TCP protos reuses this function for Transport layer.
2015-02-22 Bogdan-Andrei Iancu <[email protected]>
* [78c8462] :
Better timeout granularity on connect.
2015-02-22 Bogdan-Andrei Iancu <[email protected]>
* [eb1b02c] :
setting tcp_send_timeout to default 10 ms
2015-02-22 Bogdan-Andrei Iancu <[email protected]>
* [b343ca1] :
TCP related timeouts migreate to ms.
tcp_send_timeout moved as parameter to proto_tcp module
tcp_send_timoout, tcp_async_local_connect_timeout, tcp_async_local_write_timeout consistenly moved to miliseconds.
default tcp_send_timeout value set to 10 ms
2015-02-22 Bogdan-Andrei Iancu <[email protected]>
* [0ef2199] :
Migrate timeouts from sec to msecs.
Reduce the default timeouts from 30secs to 100 msecs.
2015-02-22 Bogdan-Andrei Iancu <[email protected]>
* [dd3d898] :
Total removal of USE_IPV6 define
2015-02-22 Bogdan-Andrei Iancu <[email protected]>
* [5c3f2f3] :
Fix SCTP proto detection in TM module.
Credits go to @jamesabravo on GITHUB
Closes #413 .
2015-02-21 root <[email protected]>
* [7ae82f6] :
emergency module refactoring -- dividing in smaller C files
2015-02-20 Bogdan-Andrei Iancu <[email protected]>
* [8ff6195] :
Add auto-disabling of TCP/UDP layers if not used by any proto.
2015-02-20 Bogdan-Andrei Iancu <[email protected]>
* [25455ca] :
Removed all USE_TCP dependencies
2015-02-20 Razvan Crainea <[email protected]>
* [2c99b4e] :
if no listeners are defined, remove the module
2015-02-20 Bogdan-Andrei Iancu <[email protected]>
* [c488a94] :
Partial removal of USE_TCP
2015-02-20 Bogdan-Andrei Iancu <[email protected]>
* [8becb75] :
Re-order TCP related parameters
2015-02-20 Bogdan-Andrei Iancu <[email protected]>
* [172eea3] :
Each protocol has its own default port parameter.
Removed the global core parameter "port".
Each protocol exports a module parameter for setting the defaul port.
2015-02-19 Bogdan-Andrei Iancu <[email protected]>
* [eb3355a] :
Fix complile err, remove old files
2015-02-19 Bogdan-Andrei Iancu <[email protected]>
* [29438b6] :
Remove USE_SCTP define
2015-02-19 Bogdan-Andrei Iancu <[email protected]>
* [6f31dda] :
Full migration of SCTP support to module
2015-02-19 Bogdan-Andrei Iancu <[email protected]>
* [3c1043b] :
Add SCTP proto as module/proto_sctp
2015-02-19 Ovidiu Sas <[email protected]>
* [f3f7f42] :
httpd: fix memory leak for non-POST requests
2015-02-19 Razvan Crainea <[email protected]>
* [5e5aec4] :
merge proto bind and init in a single step
2015-02-19 Razvan Crainea <[email protected]>
* [36586d6] :
net: bind protocols and default port before mod_init
2015-02-18 Bogdan-Andrei Iancu <[email protected]>
* [2a14ce8] :
Add missing files with the TLS param handling
2015-02-18 Bogdan-Andrei Iancu <[email protected]>
* [fac0275] :
TLS final & major cleanup in core.
Move all TLS related parameters from core to proto_tls module.
Remove USE_TLS from all code.
Make mandatory to specify the proto in the definition of a listener (in cfg file).
2015-02-18 Bogdan Andrei IANCU <[email protected]>
* [20ebcf0] :
Merge pull request #416 from etamme/master
fixed bitmask to cover all 3 bits vs. 1st and 3rd. Thanks to eldonogith...
2015-02-18 Bogdan Andrei IANCU <[email protected]>
* [60e03a1] :
Merge pull request #414 from jbonicioli/master
modified source and target table for registrant table migration
2015-02-18 Razvan Crainea <[email protected]>
* [465c4be] :
rabbitmq: set the connected flag only after socket is created
Credits go to Ovidiu Sas for detecting, debugging and solving this issue
2015-02-18 Eric Tamme <[email protected]>
* [adf010e] :
fixed bitmask to cover all 3 bits vs. 1st and 3rd. Thanks to eldonogithub.
2015-02-18 Bogdan-Andrei Iancu <[email protected]>
* [a059c26] :
init_proto() merged into mod_init()
2015-02-18 jbonicioli <[email protected]>
* [9139584] :
modified source and target table for registrant table migration
2015-02-18 Bogdan-Andrei Iancu <[email protected]>
* [b8cc61e] :
Proper integration of TLS conn clean with TCP net.
2015-02-18 Bogdan-Andrei Iancu <[email protected]>
* [a73e0b7] :
USE_TLS massive removal
2015-02-17 Bogdan-Andrei Iancu <[email protected]>
* [e7ed341] :
TLS state machine and write ops added.
2015-02-17 Bogdan-Andrei Iancu <[email protected]>
* [776380f] :
tcp_conn_create() enhanced.
Remeber if the conn was accepted or connected.
Use proto from the involved socket (must be the same).
Conn has also proto_flags (protocol specific flags)
2015-02-17 Bogdan-Andrei Iancu <[email protected]>
* [ee3227b] :
Cleanup in TCP connection states.
2015-02-17 Bogdan-Andrei Iancu <[email protected]>
* [135120f] :
tcp_blocking_connect() moved from TCP proto layer to TCP network layer (to be reused by TLS too).
2015-02-17 Vlad Paiu <[email protected]>
* [f61f685] :
Check for dlg api loading when trying to call match_dialog()
2015-02-17 ionutrazvanionita <[email protected]>
* [0eb2b4d] :
Merge branch 'master' of https://github.com/OpenSIPS/opensips
2015-02-17 ionutrazvanionita <[email protected]>
* [48a2193] :
avoid compilation warning
2015-02-17 Vlad Paiu <[email protected]>
* [c03e0b6] :
Added license headers
2015-02-17 Vlad Paiu <[email protected]>
* [d84649e] :
Added topology_hiding module
The module can work on top of the dialog module, or as a standalone module ( thus alowing topology hiding for all types of dialogs - not just INVITE based )
Exposes topology_hiding() and topology_hiding_match() funcs.
Current limitations :
- uac_replace_from / uac_replace_to will not work if running without the dialog module ( the Record-Route headers added by the Proxy are stripped )
- callid hiding works just when running on top of the dialog module
2015-02-17 ionutrazvanionita <[email protected]>
* [c53bd4f] :
Merge branch 'master' of https://github.com/OpenSIPS/opensips
2015-02-17 ionutrazvanionita <[email protected]>
* [94cf5dd] :
Added created and setup time on missed calls when cdr flag is set
2015-02-17 Bogdan-Andrei Iancu <[email protected]>
* [076e5dd] :
Reading part made functional.
2015-02-17 Bogdan-Andrei Iancu <[email protected]>
* [31ff8e5] :
One more split in defs and funcs hdr files.
2015-02-17 Bogdan-Andrei Iancu <[email protected]>
* [8527f36] :
Separate common TCP functions to be reused by TLS.
2015-02-16 Bogdan-Andrei Iancu <[email protected]>
* [4444595] :
Moving TLS related files into modules/proto_tls
2015-02-13 Bogdan-Andrei Iancu <[email protected]>
* [e1bbbe5] :
Intial upload of call emergency module.
Credits go to Robison Tesini & Evandro Villaron.
2015-02-13 Bogdan-Andrei Iancu <[email protected]>
* [e8158cd] :