23 jan 2013 kl. 20:07 skrev Matthew Williams <[email protected]>:
> Yes, I committed to a side branch so you can review the changes ;-). If > that's not what I should do, I can push to master. It's just a small change that you can push. Go ahead. > > libjson appears to be available as an RPM (It's just libjson). Ok so libjson and libjson-c are the same? > On Ubuntu (and presumably Debian) it's libjson0 and libjson0-dev packages. I > don't know about BSD ports. Thanks for the feedback. I know there are people out there working with the spec files and such, so they like to know. :-) /O > > On Wed, Jan 23, 2013 at 1:55 PM, Olle E. Johansson <[email protected]> wrote: > Matthew! > > I am sure you know you cmmitted to a branch and not to main code base. > > A side question: Are these libraries available as RPMs for linux or ports for > FreeBSD? > > /O > > > 23 jan 2013 kl. 19:50 skrev Matthew Williams <[email protected]>: > > > Module: sip-router > > Branch: mgw/json > > Commit: 2d129b5538b64acea788b502dcf97c5ffffdf949 > > URL: > > http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=2d129b5538b64acea788b502dcf97c5ffffdf949 > > > > Author: Matthew Williams <[email protected]> > > Committer: Matthew Williams <[email protected]> > > Date: Wed Jan 23 10:49:52 2013 -0800 > > > > correct url to libjson in json and jsonrpc-c module docs > > > > --- > > > > modules/json/README | 2 +- > > modules/json/doc/json_admin.xml | 4 +--- > > modules/jsonrpc-c/README | 21 +++++++++++---------- > > modules/jsonrpc-c/doc/jsonrpc-c_admin.xml | 2 +- > > 4 files changed, 14 insertions(+), 15 deletions(-) > > > > diff --git a/modules/json/README b/modules/json/README > > index 4d4c0eb..381bedf 100644 > > --- a/modules/json/README > > +++ b/modules/json/README > > @@ -71,7 +71,7 @@ Chapter 1. Admin Guide > > > > The following libraries or applications must be installed before > > running Kamailio with this module loaded: > > - * libjson (http://metaparadigm.com/json-c/) > > + * libjson (https://github.com/json-c/json-c/wiki) > > > > 3. Parameters > > > > diff --git a/modules/json/doc/json_admin.xml > > b/modules/json/doc/json_admin.xml > > index 9c8e3a3..f8f899f 100644 > > --- a/modules/json/doc/json_admin.xml > > +++ b/modules/json/doc/json_admin.xml > > @@ -10,9 +10,7 @@ > > <!-- Module User's Guide --> > > > > <chapter> > > - > > <title>&adminguide;</title> > > - > > <section> > > <title>Overview</title> > > <para> > > @@ -43,7 +41,7 @@ > > <itemizedlist> > > <listitem> > > <para> > > - <emphasis>libjson > > (http://metaparadigm.com/json-c/)</emphasis> > > + <emphasis>libjson > > (https://github.com/json-c/json-c/wiki)</emphasis> > > </para> > > </listitem> > > </itemizedlist> > > diff --git a/modules/jsonrpc-c/README b/modules/jsonrpc-c/README > > index 7df3ed3..bfa8ea3 100644 > > --- a/modules/jsonrpc-c/README > > +++ b/modules/jsonrpc-c/README > > @@ -10,7 +10,7 @@ Jordan Levy > > > > <[email protected]> > > > > - Copyright � 2011 Flowroute LLC (flowroute.com) > > + Copyright © 2011 Flowroute LLC (flowroute.com) > > __________________________________________________________________ > > > > Table of Contents > > @@ -23,11 +23,11 @@ Jordan Levy > > 2.1. Kamailio Modules > > 2.2. External Libraries or Applications > > > > - 3. Exported Parameters > > + 3. Parameters > > > > 3.1. servers (string) > > > > - 4. Exported Functions > > + 4. Functions > > > > 4.1. jsonrpc_notification(method, parameters) > > 4.2. jsonrpc_request(method, parameters, return_route, > > @@ -49,11 +49,11 @@ Chapter 1. Admin Guide > > 2.1. Kamailio Modules > > 2.2. External Libraries or Applications > > > > - 3. Exported Parameters > > + 3. Parameters > > > > 3.1. servers (string) > > > > - 4. Exported Functions > > + 4. Functions > > > > 4.1. jsonrpc_notification(method, parameters) > > 4.2. jsonrpc_request(method, parameters, return_route, > > @@ -86,9 +86,10 @@ Chapter 1. Admin Guide > > > > The following libraries or applications must be installed before > > running Kamailio with this module loaded: > > - * libjson - http://metaparadigm.com/json-c/ > > + * libjson (https://github.com/json-c/json-c/wiki) > > + * libevent - http://libevent.org/ > > > > -3. Exported Parameters > > +3. Parameters > > > > 3.1. servers (string) > > > > @@ -105,13 +106,13 @@ modparam("jsonrpc", "servers", "localhost:9999,2 > > 10.10.0.1:9999,2 backup.server: > > 9999,1") > > ... > > > > -4. Exported Functions > > +4. Functions > > > > 4.1. jsonrpc_notification(method, parameters) > > 4.2. jsonrpc_request(method, parameters, return_route, error_route, > > result_var) > > > > -4.1. jsonrpc_notification(method, parameters) > > +4.1. jsonrpc_notification(method, parameters) > > > > Invokes the remote 'method' with the given 'parameters' as a > > notification. Unlike jsonrpc_request (below), notifications do not > > @@ -126,7 +127,7 @@ modparam("jsonrpc", "servers", "localhost:9999,2 > > 10.10.0.1:9999,2 backup.server: > > jsonrpc_notification("update_user", "{'id': 1234, 'name': 'Petros'}") > > ... > > > > -4.2. jsonrpc_request(method, parameters, return_route, error_route, > > +4.2. jsonrpc_request(method, parameters, return_route, error_route, > > result_var) > > > > Invokes the remote 'method' with the given 'parameters'. When the > > diff --git a/modules/jsonrpc-c/doc/jsonrpc-c_admin.xml > > b/modules/jsonrpc-c/doc/jsonrpc-c_admin.xml > > index 2b89549..ef5dcae 100644 > > --- a/modules/jsonrpc-c/doc/jsonrpc-c_admin.xml > > +++ b/modules/jsonrpc-c/doc/jsonrpc-c_admin.xml > > @@ -53,7 +53,7 @@ > > <itemizedlist> > > <listitem> > > <para> > > - > > <emphasis>libjson</emphasis> - http://metaparadigm.com/json-c/ > > + <emphasis>libjson > > (https://github.com/json-c/json-c/wiki)</emphasis> > > </para> > > </listitem> > > <listitem> > > > > > > _______________________________________________ > > sr-dev mailing list > > [email protected] > > http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev > > > _______________________________________________ > sr-dev mailing list > [email protected] > http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev > > > > -- > Matthew Williams > Flowroute LLC > Direct: 206-641-8071 > Mobile: 206-641-8271 > Web: www.flowroute.com > > Important Notice: This message is intended only for the person or entity to > which it is addressed. The information provided is confidential. > Accordingly, any review, retransmission, dissemination or other use of this > information by, or disclosure of it to, anyone other than the intended > recipient could have significant adverse effects and is prohibited. > Opinions, conclusions and other information in this message that do not > relate to official business of my company shall be understood as neither > given nor endorsed by it.
_______________________________________________ sr-dev mailing list [email protected] http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev
