summaryrefslogtreecommitdiff
path: root/src/mod_sip_proxy.erl (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2022Badlop2022-02-111-1/+1
|
* Update newest copyright year to 2021 (#3464)Badlop2021-01-271-1/+1
|
* Update copyright to 2020 (#3149)Badlop2020-01-281-1/+1
|
* Use new configuration validatorEvgeny Khramtsov2019-06-141-12/+7
|
* Replace code using p1_time_compat wrapper with native functionsPaweł Chmielowski2019-02-271-2/+2
| | | | | | | Since we now require R19, we shouldn't need that anymore. There are still couple places where p1_time_compat:unique_timestamp() is used as there is no direct equivalent.
* Update copyright to 2019 (#2756)Badlop2019-01-081-1/+1
|
* Get rid of ejabberd.hrl headerEvgeniy Khramtsov2018-06-141-1/+0
| | | | | | | | | The header consisted of too many unrelated stuff and macros misuse. Some stuff is moved into scram.hrl and type_compat.hrl. All macros have been replaced with the corresponding function calls. TODO: probably type_compat.hrl is not even needed anymore since we support only Erlang >= OTP 17.5
* Introduce new gen_mod callback: mod_options/1Evgeniy Khramtsov2018-01-231-8/+4
| | | | | | | The callback is supposed to provide known options and their default values, as long as the documentation. Passing default values into get_mod functions is now deprecated: all defaults should be provided by the Mod:mod_options/1 callback.
* Update copyright datesEvgeniy Khramtsov2018-01-051-1/+1
|
* Use ejabberd_pkix API in mod_sipEvgeniy Khramtsov2017-11-231-4/+9
|
* Cleanup some headersChristophe Romain2017-11-101-1/+2
|
* Replace gen_fsm with p1_fsm to avoid warnings in OTP20+Evgeniy Khramtsov2017-08-051-4/+3
|
* Introduce --enable-stun and --enable-sip configure optionsEvgeniy Khramtsov2017-05-231-0/+5
| | | | | STUN/TURN and SIP is not compiled by default anymore. Use --enable-stun, --enable-sip or --enable-all to enable them.
* Don't validate an option in gen_mod:get*opt() functionsEvgeniy Khramtsov2017-04-301-32/+4
| | | | | | | | | | | | | | The changes are very similar to those from previous commit: * Now there is no need to pass validating function in gen_mod:get_opt() and gen_mod:get_module_opt() functions, because the modules' configuration keeps already validated values. * New functions gen_mod:get_opt/2 and gen_mod:get_module_opt/3 are introduced. * Functions gen_mod:get_opt/4 and get_module_opt/5 are deprecated. If the functions are still called, the "function" argument is simply ignored. * Validating callback Mod:listen_opt_type/1 is introduced to validate listening options at startup.
* Don't validate an option in ejabberd_config:get_option() functionsEvgeniy Khramtsov2017-04-291-3/+2
| | | | | | | | | | | | | The commit introduces the following changes: * Now there is no need to pass validating function in ejabberd_config:get_option() functions, because the configuration keeps already validated values. * New function ejabberd_config:get_option/1 is introduced * Function ejabberd_config:get_option/3 is deprecated. If the function is still called, the second argument (validating function) is simply ignored. * The second argument for ejabberd_config:get_option/2 is now a default value, not a validating function.
* Don't re-define validation functions in multiple placesEvgeniy Khramtsov2017-04-281-7/+1
|
* Get rid of p1_sha callsAlexey Shchepin2017-03-141-1/+1
|
* Fix some dialyzer warningsEvgeniy Khramtsov2017-02-181-1/+1
|
* Cleanup file headersChristophe Romain2017-01-031-4/+3
|
* Update copyright date automatically (#1442)Badlop2017-01-021-1/+1
|
* Get rid of excessive (io)list_to_binary/1 callsEvgeniy Khramtsov2016-11-241-2/+2
|
* Update copyright to 2016 (#901)Badlop2016-01-131-1/+1
|
* More now() replacementsPaweł Chmielowski2015-12-071-4/+2
|
* Move JID related functions to jid.erl (#847)Evgeniy Khramtsov2015-11-241-6/+6
|
* cosmetic cleanupChristophe Romain2015-10-071-1/+1
|
* Add config validation at startupEvgeniy Khramtsov2015-06-011-4/+10
|
* Fix missing copyright dates to 2015 (EJAB-1733)Christophe Romain2015-01-211-0/+17
|
* Fix Record-Route signingEvgeniy Khramtsov2014-07-171-4/+16
|
* Add new option support: always_record_routeEvgeniy Khramtsov2014-07-071-7/+20
|
* Use -include_lib instead of -include for esip and p1_xmlMatwey V. Kornilov2014-07-051-1/+1
| | | | | -include_lib is used in order to find deps. Rebar include magic is not required anymore. Rebar uses deps as library directory.
* Don't add 'rport' paramater to 'Via' headerEvgeniy Khramtsov2014-06-021-2/+1
|
* Rename option 'route' to 'record_route' and add new option 'routes'Evgeniy Khramtsov2014-06-021-18/+26
|
* Sign 'Record-Route' in order to proxy unauthorized ACKsEvgeniy Khramtsov2014-06-011-3/+62
|
* Fix 'via' option lookupEvgeniy Khramtsov2014-05-311-1/+1
|
* Add new option: routeEvgeniy Khramtsov2014-05-311-4/+21
|
* Don't add 'Record-Route' header for mid-dialog requestsEvgeniy Khramtsov2014-05-311-6/+16
|
* Don't substitute URI in ACKEvgeniy Khramtsov2014-05-311-2/+2
|
* Fix previous commitEvgeniy Khramtsov2014-05-301-4/+4
|
* Process 'Contact' headers more accurately (as per RFC3261)Evgeniy Khramtsov2014-05-301-6/+6
|
* Fix proxying of ACK requests for 2xx responsesEvgeniy Khramtsov2014-05-231-4/+50
|
* Remove unused functionEvgeniy Khramtsov2014-05-021-6/+2
|
* Forking supportEvgeniy Khramtsov2014-05-021-47/+120
|
* Some cleanupEvgeniy Khramtsov2014-05-021-2/+46
|
* Multiple REGISTER bindings supportEvgeniy Khramtsov2014-05-021-3/+3
|
* Locate sessions by proxy processes directlyEvgeniy Khramtsov2014-05-021-9/+21
|
* SIP supportEvgeniy Khramtsov2014-04-301-0/+152
Conflicts: configure configure.ac doc/guide.tex