[sr-dev] git:master:f16ba6d4: auth: exported auth_get_www_authenticate() to kemi

2023-04-26 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: f16ba6d4a5305be84d5a2b9d1e6c6a15368c8c76 URL: https://github.com/kamailio/kamailio/commit/f16ba6d4a5305be84d5a2b9d1e6c6a15368c8c76 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2023-04-26T20:36:36+02:00 auth: exported auth_ge

[sr-dev] git:master:1f802a96: tls: fix formatting in tls_select.c

2023-04-26 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 1f802a96f0ce4c376d64be65bca27994bb2742cb URL: https://github.com/kamailio/kamailio/commit/1f802a96f0ce4c376d64be65bca27994bb2742cb Author: Marcus Orchard Committer: Daniel-Constantin Mierla Date: 2023-04-26T20:20:51+02:00 tls: fix formatting in tls_selec

[sr-dev] Re: [kamailio/kamailio] tls: get san entries by index (PR #3408)

2023-04-26 Thread Daniel-Constantin Mierla
Merged #3408 into master. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/3408#event-9106606876 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER) - Developme

[sr-dev] Re: [kamailio/kamailio] tls: get san entries by index (PR #3408)

2023-04-26 Thread Daniel-Constantin Mierla
Thanks! Going to merge it. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/3408#issuecomment-1523859603 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER) - D

[sr-dev] Re: [kamailio/kamailio] TLS Module does not expose all entries in the subject alternative name (Issue #3400)

2023-04-26 Thread Daniel-Constantin Mierla
Closed #3400 as completed via #3408. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3400#event-9106607082 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER

[sr-dev] git:master:7fd502fe: tls: get san entries by index

2023-04-26 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 7fd502fe433695b798249404cae144365d08b9c7 URL: https://github.com/kamailio/kamailio/commit/7fd502fe433695b798249404cae144365d08b9c7 Author: root Committer: Daniel-Constantin Mierla Date: 2023-04-26T20:20:51+02:00 tls: get san entries by index - adds coun

[sr-dev] git:master:42351ec9: lost: P-A-I parsing with display name fixed (#3426)

2023-04-26 Thread Wolfgang Kampichler
Module: kamailio Branch: master Commit: 42351ec91b38ce3f8eff51978d00010f54481924 URL: https://github.com/kamailio/kamailio/commit/42351ec91b38ce3f8eff51978d00010f54481924 Author: Wolfgang Kampichler Committer: Wolfgang Kampichler Date: 2023-04-26T17:56:23+02:00 lost: P-A-I parsing with display

[sr-dev] Re: [kamailio/kamailio] lost: HELD request with broken sip uri (Issue #3426)

2023-04-26 Thread Wolfgang Kampichler
> To clarify, there are C functions to actually parse a a URI component, that > gives you control about what parts you want to access, > [link](https://github.com/kamailio/kamailio/blob/5a2df203a244e79a1868910da312f765091d22f5/src/modules/sipcapture/sipcapture.c#L1984) Thanks for the example - I

[sr-dev] Re: [kamailio/kamailio] sanity: implement reserved char check in the header and values (Issue #3421)

2023-04-26 Thread sergey-safarov
Thanks, @oej I will close the issue because we have a localized issue with sip uri parsing in the `P-Asserted-Identity` header. https://github.com/kamailio/kamailio/issues/3426 -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3421#issuecomment-15

[sr-dev] Re: [kamailio/kamailio] sanity: implement reserved char check in the header and values (Issue #3421)

2023-04-26 Thread sergey-safarov
Closed #3421 as completed. -- Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/3421#event-9102502109 You are receiving this because you are subscribed to this thread. Message ID: ___ Kamailio (SER) - Develo

[sr-dev] Re: hooking mechanism for routing blocks

2023-04-26 Thread Henning Westerholt
(also added sr-dev) Hello, It probably not exactly what you are looking for, but a common way for modules to provide "hooks" towards the configuration for later extensions is about the event_route facility. You can find many of this event routes used from modules (on simple example is dispatch

[sr-dev] Re: [kamailio/kamailio] lost: HELD request with broken sip uri (Issue #3426)

2023-04-26 Thread Henning Westerholt
To clarify, there are C functions to actually parse a a URI component, that gives you control about what parts you want to access, [link](https://github.com/kamailio/kamailio/blob/5a2df203a244e79a1868910da312f765091d22f5/src/modules/sipcapture/sipcapture.c#L1984) -- Reply to this email directly

[sr-dev] Re: [kamailio/kamailio] lost: HELD request with broken sip uri (Issue #3426)

2023-04-26 Thread Henning Westerholt
We should use the core parser and not re-implement parser component in modules, if not strictly necessary. One (probably unrelated) reason that get_from and get_pai return different results is that the grammar for both headers is different defined from the RFCs. But I agree that its confusing th

[sr-dev] Re: [kamailio/kamailio] lost: HELD request with broken sip uri (Issue #3426)

2023-04-26 Thread Wolfgang Kampichler
Thanks for testing. The LoST module uses core parser functions `../core/parser/parse_from.h` and `../core/parser/parse_ppi_pai.h` to get content of the corresponding header. When reproducing the error I saw that `get_from` and `get_pai` give different results. For `get_from` it is no problem