Re: [sr-dev] [kamailio] auth_radius: support for not appending realm to the username passed to RADIUS (#456)

2015-12-30 Thread Phil Lavin
> @@ -90,11 +91,12 @@ static cmd_export_t cmds[] = { > * Exported parameters > */ > static param_export_t params[] = { > - {"radius_config",PARAM_STRING, &radius_config }, Reverted this but the alignment is out-of-wack and there's a mixture of tabs and spaces --- Reply to this

Re: [sr-dev] [kamailio] auth_radius: support for not appending realm to the username passed to RADIUS (#456)

2015-12-30 Thread Phil Lavin
Closed #456. --- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/456#event-502663775___ sr-dev mailing list sr-dev@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev

Re: [sr-dev] [kamailio] auth_radius: support for not appending realm to the username passed to RADIUS (#456)

2015-12-30 Thread Phil Lavin
Ok ref master - I'll close this PR, rebase, and open a new one --- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/456#issuecomment-167960610___ sr-dev mailing list sr-dev@lists.sip-router.org http://lists.sip

[sr-dev] [kamailio] auth_radius: support for not appending realm to the username passed to RADIUS (#457)

2015-12-30 Thread Phil Lavin
- Implement append_realm_to_username parameter in auth_radius which allows the unmolested digest username to be passed to RADIUS in the User-Name attribute. This is required for some RADIUS implementations. This is the same PR as #456 except based on master You can view, comment on, or merge t

Re: [sr-dev] [kamailio] tcpops: implement event_route for unexpectedly closed tcp connections (#454)

2015-12-30 Thread Daniel-Constantin Mierla
Many thanks for this contribution, it was on a to-do list for quite some time. I will look over the patch and merge it if all ok. One question for now -- given your details that the event route is executed on tcp connection kill or time out, I guess those were some examples and the event route

[sr-dev] git:master:ee7568cb: Merge pull request #457 from phil-lavin/feature-dont-append-realm-to-username-master

2015-12-30 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: ee7568cb7da1be0c3c3d4ba2cd5bada4b4895bee URL: https://github.com/kamailio/kamailio/commit/ee7568cb7da1be0c3c3d4ba2cd5bada4b4895bee Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2015-12-30T10:43:26+01:00 Merge pull request #45

Re: [sr-dev] [kamailio] auth_radius: support for not appending realm to the username passed to RADIUS (#457)

2015-12-30 Thread Daniel-Constantin Mierla
Merged #457. --- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/457#event-502685245___ sr-dev mailing list sr-dev@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev

Re: [sr-dev] [kamailio] auth_radius: support for not appending realm to the username passed to RADIUS (#457)

2015-12-30 Thread Daniel-Constantin Mierla
Thanks for the contribution. --- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/457#issuecomment-167968264___ sr-dev mailing list sr-dev@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listin

[sr-dev] git:master:94da0d64: tsilo: check if tsilo hash table is still set when executing tm callback

2015-12-30 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 94da0d648805b958d266b789015f66cef8628ae4 URL: https://github.com/kamailio/kamailio/commit/94da0d648805b958d266b789015f66cef8628ae4 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2015-12-30T17:41:18+01:00 tsilo: check if tsilo

[sr-dev] git:master:c7e411ed: tm: reinit ref counter if attempting to free while still in wait timer

2015-12-30 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: c7e411edb3c68260d43f86ee6977d468c074836b URL: https://github.com/kamailio/kamailio/commit/c7e411edb3c68260d43f86ee6977d468c074836b Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2015-12-30T21:18:23+01:00 tm: reinit ref counter

Re: [sr-dev] [kamailio] tcpops: implement event_route for unexpectedly closed tcp connections (#454)

2015-12-30 Thread Armen Babikyan
Hi Daniel, I just repushed this branch. Originally, I only considered tcp connection kill via TCP RST (which results in read() == -1 && errno == ECONNRESET) and timeout events (read() == -1 && errno == ETIMEDOUT). I have revised my branch to also execute the event_route on gracefully-closed TC