Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Wolfgang Kampichler
@wkampich pushed 1 commit. b458bbcba00cd6678617f004bbdeff2a1b0c524d lost: memory leak fix and code refactoring -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/kamailio/kamailio/pull/2675/files/25378c0388bb4365e8d4f1a4e874381fe339cd3b.

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Wolfgang Kampichler
@wkampich commented on this pull request. > +#define PATH_NODE (const char *)"via" +#define PATH_NODE_VIA (const char *)"via" +#define MAPP_NODE (const char *)"mapping" +#define MAPP_NODE_URI (const char *)"uri" +#define MAPP_PROP_EXP (const char *)"expires" +#define MAPP_PROP_LUP (const char *)

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Daniel-Constantin Mierla
@wkampich: lost_copy_string() is not a significant amount of code to replace with pkg_str_dup(), the signature is different as well -- overall, it could be good, but not a must. If you fix the leak, the PR should be ready to merge. -- You are receiving this because you are subscribed to this th

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Wolfgang Kampichler
@wkampich commented on this pull request. > + goto err; + } + /* clean up */ + tmp.s = NULL; +

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Wolfgang Kampichler
@wkampich commented on this pull request. > + tmp.len = > strlen(fsrdata->mapping->name->text); + name.s = lost_copy_string(tmp, &name.len); + } +

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Wolfgang Kampichler
@wkampich commented on this pull request. > + case RESPONSE: + if(fsrdata->uri != NULL) { + /* get the first uri element */ + if((tmp.s = fsrdata->uri->value) != NULL) {

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Wolfgang Kampichler
@wkampich commented on this pull request. > - - /* get the error patterm */ - err.s = lost_get_childname(root, errors_element, &err.len); - LM_DBG("findService error response: [%.*s]\n", err.len, err.s); - if(err.len == 0) { -

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Wolfgang Kampichler
@wkampich commented on this pull request. > + if(rtp.len == 0) { + LM_WARN("no response type found\n"); + rtype = NULL; + } else { + len = 0; + /* response type string sanity check *

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Wolfgang Kampichler
@wkampich commented on this pull request. > + if(oldurl.s != NULL && > oldurl.len > 0) { + if(str_strcasecmp(&url, &oldurl) == 0) { +

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Wolfgang Kampichler
@wkampich commented on this pull request. > LM_ERR("lost request failed\n"); goto err; } LM_DBG("findService request: [%.*s]\n", req.len, req.s); /* send findService request to mapping server - HTTP POST */ - curlres = httpapi.http_

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Wolfgang Kampichler
@wkampich commented on this pull request. > + + /* clean up */ + if(rtype != NULL) { + pkg_free(rtype); + } + + if(heldreq != NULL && len == 0) { + LM_ERR("could not create POST request\n"); + goto err; + } + + LM_DBG(

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Wolfgang Kampichler
@wkampich commented on this pull request. > + lost_free_string(&idhdr); + goto err; + } + } else { + LM_ERR("failed to get location service for [%.*s]\n", did.len, +

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Wolfgang Kampichler
@wkampich commented on this pull request. > + /* send via connection */ + curl = httpapi.http_connect(_m, &con, NULL, &res, mtheld, &que); + } else { + /* we have no connection ... do a NAPTR lookup */ + if(lost_parse_host(did.s, &host,

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Wolfgang Kampichler
@wkampich commented on this pull request. > pkg_free(ptr); - ptr = NULL; + *held = NULL; +} + +/* + * lost_copy_string(str, int*) { yes true `pkg_str_dup(..)` would be an option; basically I only use the function when a pointer to a string is necessary and requires zero t

[sr-dev] git:master:5a96993e: topos: use context for sruid

2021-03-31 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 5a96993efd6cff7677a5c49fee15c30715903ea0 URL: https://github.com/kamailio/kamailio/commit/5a96993efd6cff7677a5c49fee15c30715903ea0 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2021-04-01T00:01:22+02:00 topos: use context for

[sr-dev] git:master:5c2699c4: core: sruid - use specific prefix for global variables

2021-03-31 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 5c2699c4f6a9e8a24057b754e6510433129f509d URL: https://github.com/kamailio/kamailio/commit/5c2699c4f6a9e8a24057b754e6510433129f509d Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2021-03-31T23:55:51+02:00 core: sruid - use spec

Re: [sr-dev] [kamailio/kamailio] import_file - wildcard support (#2125)

2021-03-31 Thread sergey-safarov
Closed #2125. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/2125#event-4536210145___ Kamailio (SER) - Development Mailing List sr-dev@l

Re: [sr-dev] [kamailio/kamailio] import_file - wildcard support (#2125)

2021-03-31 Thread sergey-safarov
Closing as no devs to implement. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/2125#issuecomment-811273926___ Kamailio (SER) - Developm

[sr-dev] git:master:858fab6b: topos: ability to execute event routes when messages

2021-03-31 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 858fab6bbf0c26f22bb9411e9385c10d654a6da5 URL: https://github.com/kamailio/kamailio/commit/858fab6bbf0c26f22bb9411e9385c10d654a6da5 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2021-03-31T21:59:51+02:00 topos: ability to exec

[sr-dev] git:master:4eae7ee7: topos: option to set a context value via modparam or function

2021-03-31 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 4eae7ee7819c528297e24778ae480d3a2e0a8188 URL: https://github.com/kamailio/kamailio/commit/4eae7ee7819c528297e24778ae480d3a2e0a8188 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2021-03-31T21:46:14+02:00 topos: option to set a

[sr-dev] git:master:3363d467: kamctl: db schema regenerated - updates to userblocklist and topos modules

2021-03-31 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 3363d4671e9dcb68bf182f9eae708ca55c71 URL: https://github.com/kamailio/kamailio/commit/3363d4671e9dcb68bf182f9eae708ca55c71 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2021-03-31T21:45:14+02:00 kamctl: db schema rege

[sr-dev] git:master:e6609d40: lib: srdb1 - added x_context column to topos tables

2021-03-31 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: e6609d4041f9bc74b68fe83b67ba4499e8fb1924 URL: https://github.com/kamailio/kamailio/commit/e6609d4041f9bc74b68fe83b67ba4499e8fb1924 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2021-03-31T21:44:12+02:00 lib: srdb1 - added x_c

Re: [sr-dev] [kamailio/kamailio] acc_json: param to accept pre-encoded json values (#2699)

2021-03-31 Thread Julien Chavanton
@jchavanton pushed 1 commit. 0a293fdbe2dfe1ac4741e0a1aec0495de3d3b900 acc_json: param to accept pre-encoded json values -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/kamailio/kamailio/pull/2699/files/934125304d8f156f17007c53d69cd547

Re: [sr-dev] [kamailio/kamailio] import_file - wildcard support (#2125)

2021-03-31 Thread Daniel-Constantin Mierla
This is pretty old, if no dev plans to work on it, then it will be closed soon. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/2125#issuecomment-811106706__

Re: [sr-dev] [kamailio/kamailio] $(hdr(foo)[idx]) is 0-based, textopsx.remove_hf_value("foo[idx]") is 1-based, they should be the same (#2387)

2021-03-31 Thread Daniel-Constantin Mierla
Closed #2387. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/2387#event-4535082816___ Kamailio (SER) - Development Mailing List sr-dev@l

Re: [sr-dev] [kamailio/kamailio] $(hdr(foo)[idx]) is 0-based, textopsx.remove_hf_value("foo[idx]") is 1-based, they should be the same (#2387)

2021-03-31 Thread Daniel-Constantin Mierla
Added explicit notes about 1-based index in textopsx docs. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/2387#issuecomment-811105390___

Re: [sr-dev] [kamailio/kamailio] Dispatcher SNI support (#2591)

2021-03-31 Thread Daniel-Constantin Mierla
Closed #2591. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/2591#event-4534933408___ Kamailio (SER) - Development Mailing List sr-dev@l

Re: [sr-dev] [kamailio/kamailio] Dispatcher SNI support (#2591)

2021-03-31 Thread Daniel-Constantin Mierla
I added the function `tls_set_connect_server_id(srvid)` in tls module trying to cover this kind of need to specify the server id for next tls connect in the event_route[tm:local-request], where you can set its value from the dispatcher route attributes. Testing and feedback would be appreciated

Re: [sr-dev] [kamailio/kamailio] xavp set in event_route[tm:local-request] are not used in SIP transaction (#2413)

2021-03-31 Thread Daniel-Constantin Mierla
I added the function `tls_set_connect_server_id(srvid)` in tls module trying to cover this kind of need to specify the server id for next tls connect. Testing and feedback would be appreciated. I am closing this issue, in case of a problems, open a new one reporting what happens. -- You are re

Re: [sr-dev] [kamailio/kamailio] xavp set in event_route[tm:local-request] are not used in SIP transaction (#2413)

2021-03-31 Thread Daniel-Constantin Mierla
Closed #2413. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/2413#event-4534915332___ Kamailio (SER) - Development Mailing List sr-dev@l

Re: [sr-dev] [kamailio/kamailio] topos+topos_redis TTL for SUBSCRIBE (#2652)

2021-03-31 Thread Daniel-Constantin Mierla
Closed #2652. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/2652#event-4534568033___ Kamailio (SER) - Development Mailing List sr-dev@l

Re: [sr-dev] [kamailio/kamailio] topos+topos_redis TTL for SUBSCRIBE (#2652)

2021-03-31 Thread Daniel-Constantin Mierla
Closing it, support for SUBSCRIBE handling was added by #2662. If there is any problem with that approach, open an issue with details about what is not working with the current version of the module in master branch. -- You are receiving this because you are subscribed to this thread. Reply to

[sr-dev] git:master:ac60e5d0: modules: readme files regenerated - textopsx ... [skip ci]

2021-03-31 Thread Kamailio Dev
Module: kamailio Branch: master Commit: ac60e5d0a9f847fe77458d733d6ca67c9352978d URL: https://github.com/kamailio/kamailio/commit/ac60e5d0a9f847fe77458d733d6ca67c9352978d Author: Kamailio Dev Committer: Kamailio Dev Date: 2021-03-31T16:16:15+02:00 modules: readme files regenerated - textopsx .

[sr-dev] git:master:6379f128: textopsx: docs - notes about 1-based indexing for hf value functions

2021-03-31 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 6379f1280ba41e87ddb34fa1705ffe4231dcac9c URL: https://github.com/kamailio/kamailio/commit/6379f1280ba41e87ddb34fa1705ffe4231dcac9c Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2021-03-31T16:06:31+02:00 textopsx: docs - notes

[sr-dev] git:master:47e9a74b: modules: readme files regenerated - tls ... [skip ci]

2021-03-31 Thread Kamailio Dev
Module: kamailio Branch: master Commit: 47e9a74bbe48025d238b85eac9ba5ed183f70667 URL: https://github.com/kamailio/kamailio/commit/47e9a74bbe48025d238b85eac9ba5ed183f70667 Author: Kamailio Dev Committer: Kamailio Dev Date: 2021-03-31T16:01:16+02:00 modules: readme files regenerated - tls ... [s

[sr-dev] git:master:c9702415: topos: add functionality to set a variable host part for the Contact header

2021-03-31 Thread Henning Westerholt
Module: kamailio Branch: master Commit: c9702415579b8c7c2eb525accc909a586c17c2d1 URL: https://github.com/kamailio/kamailio/commit/c9702415579b8c7c2eb525accc909a586c17c2d1 Author: Henning Westerholt Committer: Henning Westerholt Date: 2021-03-31T13:58:40Z topos: add functionality to set a varia

[sr-dev] git:master:4edb9b27: tls: docs for tls_set_connect_server_id(srvid)

2021-03-31 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 4edb9b27aa5cf8e39cb87c78557391445952b21c URL: https://github.com/kamailio/kamailio/commit/4edb9b27aa5cf8e39cb87c78557391445952b21c Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2021-03-31T15:51:04+02:00 tls: docs for tls_set_

[sr-dev] git:master:e979a341: tls: added tls_set_connect_server_id(srvid) function

2021-03-31 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: e979a341c1b142bb02da25c7753e7efb2d34e80a URL: https://github.com/kamailio/kamailio/commit/e979a341c1b142bb02da25c7753e7efb2d34e80a Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2021-03-31T15:44:41+02:00 tls: added tls_set_con

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Henning Westerholt
Good point @miconda regarding the zero termination, then of course one needs to do a copy. The license topic is of course valid as well, the original author of the enum code is Juha. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Daniel-Constantin Mierla
Moving code to the core from existing module must ensure it can be relocated under BSD license. Regarding the cloning of some str values, they seem to be required due to used functions that require zero-terminated strings, like ipstr that is passed to lost_get_nameinfo(), which is using libc in

Re: [sr-dev] [kamailio/kamailio] pua_dialoginfo: Add display attributes to identity tags. (#2617)

2021-03-31 Thread Daniel-Constantin Mierla
Closed #2617. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/2617#event-4532899105___ Kamailio (SER) - Development Mailing List sr-dev@lis

Re: [sr-dev] [kamailio/kamailio] pua_dialoginfo: Add display attributes to identity tags. (#2617)

2021-03-31 Thread Daniel-Constantin Mierla
In master, see #2615. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/2617#issuecomment-810869265___ Kamailio (SER) - Development Mailing L

Re: [sr-dev] [kamailio/kamailio] Add display name support to "pua_dialoginfo" (#2615)

2021-03-31 Thread Daniel-Constantin Mierla
Closed #2615. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/2615#event-4532892041___ Kamailio (SER) - Development Mailing List sr-dev@l

Re: [sr-dev] [kamailio/kamailio] Add display name support to "pua_dialoginfo" (#2615)

2021-03-31 Thread Daniel-Constantin Mierla
Added in master branch (to be in 5.5 series) -- see the docs for attribute_display parameter. Testing and feedback would be appreciated, if it works as expected or not. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https:

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Henning Westerholt
@henningw commented on this pull request. Thanks for the update. I just did a quick review, focus on the usual string handling and memory allocation topics. > pkg_free(ptr); - ptr = NULL; + *held = NULL; +} + +/* + * lost_copy_string(str, int*) { Have you considered using

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Olle E. Johansson
All good. Thanks for fixing! -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/2675#issuecomment-810817098___ Kamailio (SER) - Development Ma

Re: [sr-dev] [kamailio/kamailio] cplc and pua_dialoginfo enhancement (#2676)

2021-03-31 Thread Daniel-Constantin Mierla
Merged #2676 into master. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/2676#event-4532354520___ Kamailio (SER) - Development Mailing Lis

Re: [sr-dev] [kamailio/kamailio] cplc and pua_dialoginfo enhancement (#2676)

2021-03-31 Thread Daniel-Constantin Mierla
Thanks, merging. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/2676#issuecomment-810808466___ Kamailio (SER) - Development Mailing List s

Re: [sr-dev] [kamailio/kamailio] extensions to lost and http_client modules (#2675)

2021-03-31 Thread Daniel-Constantin Mierla
Code duplication was removed for http client module. I guess this can be merged, if no other opinions against. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/2675#issuecomment-81080

Re: [sr-dev] [kamailio/kamailio] acc_json: param to accept pre-encoded json values (#2699)

2021-03-31 Thread Daniel-Constantin Mierla
It can be merged from my point of view. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/2699#issuecomment-810803783___ Kamailio (SER) - Dev

[sr-dev] git:master:30cb2e4e: modules: readme files regenerated - http_async_client ... [skip ci]

2021-03-31 Thread Kamailio Dev
Module: kamailio Branch: master Commit: 30cb2e4ec263e182e0726b217086135de2e2520c URL: https://github.com/kamailio/kamailio/commit/30cb2e4ec263e182e0726b217086135de2e2520c Author: Kamailio Dev Committer: Kamailio Dev Date: 2021-03-31T12:01:18+02:00 modules: readme files regenerated - http_async

[sr-dev] git:master:14a39965: http_async_client: add curl_follow_redirect parameter

2021-03-31 Thread gled
Module: kamailio Branch: master Commit: 14a399652bb813f77da13956eb47e1f16c5d6b8f URL: https://github.com/kamailio/kamailio/commit/14a399652bb813f77da13956eb47e1f16c5d6b8f Author: gled Committer: gled Date: 2021-03-26T17:17:09-07:00 http_async_client: add curl_follow_redirect parameter - add c

[sr-dev] git:master:91c73d62: http_async_client: configure curl redirect per query

2021-03-31 Thread Federico Cabiddu
Module: kamailio Branch: master Commit: 91c73d62bcb5e635aae4462393e3fe71b64657f1 URL: https://github.com/kamailio/kamailio/commit/91c73d62bcb5e635aae4462393e3fe71b64657f1 Author: Federico Cabiddu Committer: Federico Cabiddu Date: 2021-03-31T11:50:29+02:00 http_async_client: configure curl redi

[sr-dev] git:master:3b339e15: modules: readme files regenerated - pua_dialoginfo ... [skip ci]

2021-03-31 Thread Kamailio Dev
Module: kamailio Branch: master Commit: 3b339e15e0c14c688b2dea1c2a46b212cd60eef8 URL: https://github.com/kamailio/kamailio/commit/3b339e15e0c14c688b2dea1c2a46b212cd60eef8 Author: Kamailio Dev Committer: Kamailio Dev Date: 2021-03-31T10:16:13+02:00 modules: readme files regenerated - pua_dialog

[sr-dev] git:master:499d1fcf: pua_dialoginfo: docs for attribute_display param

2021-03-31 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 499d1fcf4a16a7f52fda7548c990de70745b54d4 URL: https://github.com/kamailio/kamailio/commit/499d1fcf4a16a7f52fda7548c990de70745b54d4 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2021-03-31T10:01:11+02:00 pua_dialoginfo: docs f

[sr-dev] git:master:be279afb: pua_dialoginfo: new param attribute_display

2021-03-31 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: be279afb807ad74c7d46f9e57cfa7fae5226a1e3 URL: https://github.com/kamailio/kamailio/commit/be279afb807ad74c7d46f9e57cfa7fae5226a1e3 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2021-03-31T10:01:11+02:00 pua_dialoginfo: new pa

[sr-dev] git:master:8c69bd53: pua_dialoginfo: use helper functions for operations with str inside build_dialoginfo()

2021-03-31 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 8c69bd53ebd47c51f37bdcc96a8719b1d1c69947 URL: https://github.com/kamailio/kamailio/commit/8c69bd53ebd47c51f37bdcc96a8719b1d1c69947 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2021-03-31T10:01:11+02:00 pua_dialoginfo: use he

Re: [sr-dev] git:master:b94c0282: modules: readme files regenerated - crypto ... [skip ci]

2021-03-31 Thread Henning Westerholt
Hi Olle, thanks for the pointer, it was just a spelling mistake 😉. Should be fixed now. Cheers, Henning -- Henning Westerholt – https://skalatan.de/blog/ Kamailio services – https://gilawa.com -Original Message- From: sr-dev On Behalf Of Olle E. Johansson Sent: Wednesday, March 31,