[asterisk-ss7] Watermark and features patch for chan_ss7 0.9

Mr.Surender Reddy gvsurenderreddy at gmail.com
Fri Sep 21 17:29:35 CDT 2007


hi Jakub Klausa,

i tired to patch but gives the below message.

patch -p0 <chan_ss7-0.9.patch-3
can't find file to patch at input line 4
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff -urNP chan_ss7.orig/Makefile chan_ss7/Makefile
|--- chan_ss7.orig/Makefile     Mon Jul  3 14:55:46 2006
|+++ chan_ss7/Makefile  Thu Sep 20 19:48:59 2007
--------------------------
File to patch: Makefile
patching file Makefile
can't find file to patch at input line 14
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff -urNP chan_ss7.orig/chan_ss7.c chan_ss7/chan_ss7.c
|--- chan_ss7.orig/chan_ss7.c   Mon Jul  3 16:08:09 2006
|+++ chan_ss7/chan_ss7.c        Thu Sep 20 19:47:01 2007
--------------------------
File to patch: chan_ss7.c
patching file chan_ss7.c
can't find file to patch at input line 187
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff -urNP chan_ss7.orig/config.c chan_ss7/config.c
|--- chan_ss7.orig/config.c     Tue Jun  6 10:26:49 2006
|+++ chan_ss7/config.c  Thu Sep 20 19:47:01 2007
--------------------------
File to patch: config.c
patching file config.c
can't find file to patch at input line 291
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff -urNP chan_ss7.orig/config.h chan_ss7/config.h
|--- chan_ss7.orig/config.h     Mon Jul  3 16:11:42 2006
|+++ chan_ss7/config.h  Thu Sep 20 19:47:01 2007
--------------------------
File to patch: config.h
patching file config.h
can't find file to patch at input line 333
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff -urNP chan_ss7.orig/l4isup.c chan_ss7/l4isup.c
|--- chan_ss7.orig/l4isup.c     Wed Jul 19 10:13:40 2006
|+++ chan_ss7/l4isup.c  Thu Sep 20 19:47:01 2007
--------------------------
File to patch: l4isup.c
patching file l4isup.c
can't find file to patch at input line 665
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff -urNP chan_ss7.orig/l4isup.h chan_ss7/l4isup.h
|--- chan_ss7.orig/l4isup.h     Thu Jun 15 13:38:46 2006
|+++ chan_ss7/l4isup.h  Thu Sep 20 19:46:45 2007
--------------------------
File to patch: l4isup.h
patching file l4isup.h
can't find file to patch at input line 676
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff -urNP chan_ss7.orig/mtp.c chan_ss7/mtp.c
|--- chan_ss7.orig/mtp.c        Mon Jul  3 16:06:46 2006
|+++ chan_ss7/mtp.c     Thu Sep 20 19:47:01 2007
--------------------------
File to patch: mtp.c
patching file mtp.c
can't find file to patch at input line 884
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff -urNP chan_ss7.orig/mtp.h chan_ss7/mtp.h
|--- chan_ss7.orig/mtp.h        Tue Jun 20 14:37:13 2006
|+++ chan_ss7/mtp.h     Thu Sep 20 19:46:45 2007
--------------------------
File to patch: mtp.h
patching file mtp.h



On 21/09/2007, Jakub Klausa <j.klausa at ss7.pl> wrote:
>
> Hello,
>
>
>        here's yet another patch we, at ss7.pl wrote for the chan_ss7 0.9.
>
>        This patch adds two features to the chan_ss7 ss7 channel driver by
> Sifira.
>
>        First one is a simple feature that shows you what features are
> enabled on your chan_ss7 instance running under your asterisk:
>
> *CLI> ss7 version
> chan_ss7 version 0.9+autopc+watermark+features
> *CLI> ss7 show features
>
> [ss7.pl] SS7 Features:
>
>        [ss7.pl] AutoPC present/enabled
>        [ss7.pl] SS7 Stats enabled
>        [ss7.pl] Preservestats enabled
>
> *CLI>
>
>        The second feature is watermarking/statistics patch, that
> let's you simply monitor the usage of your ss7 channels, ASRs (per
> channel,
> per link), active call count and much more.
>
> *CLI> ss7 version
> chan_ss7 version 0.9+autopc+watermark+features
> *CLI> ss7 show stats
> Stats for linkset
>        Link name : l1
>        Active : 0
>        l1 Active High Water Mark : 0
>
>        CIC     Success Failed  Total   ASR
>        1       Signalling channel
>        2       0       0       0       0.00
>        3       0       0       0       0.00
>        4       0       0       0       0.00
> [...]
>        ASR for link l1 : 0.00
>        Link name : l2
>        Active : 0
>        l2 Active High Water Mark : 0
>
>        CIC     Success Failed  Total   ASR
>        33      0       0       0       0.00
>        34      0       0       0       0.00
>        35      0       0       0       0.00
> [...]
>        63      0       0       0       0.00
>        ASR for link l2 : 0.00
>
>        Total Active High Water Mark : 0
>
>        Total calls since last counter restart : 0
> *CLI>
>
>        As you can see, you get quite overwhelming information/statistics
> source.
>
>        This patch adds a single ss7.conf configurable option. The options
> goes under the [host] section, and it states if the stats should be
> preserved or reset in case of link restart. The default behaviour is to
> preserve the stats.
>
> brooklyn:/etc/asterisk# grep -v ^# ss7.conf
> [...]
>
> [host-brooklyn]
> enabled => yes
> autopc => yes
> preservestats => yes
> [...]
> brooklyn:/etc/asterisk#
>
>        The patch can be found at:
>
>        http://www.ss7.pl/~jacke/patches/chan_ss7/chan_ss7-0.9.patch-3.gz
>
>        (in the combined form, with the previous chan_ss7 0.9 patches by
> ss7.pl)
>
>        If you have any questions - drop me a note.
>
> --
> Jakub Klausa | j.klausa at ss7.pl | http://www.ss7.pl/ | http://www.ngpbx.pl/
>
> _______________________________________________
> --Bandwidth and Colocation Provided by http://www.api-digital.com--
>
> asterisk-ss7 mailing list
> To UNSUBSCRIBE or update options visit:
>   http://lists.digium.com/mailman/listinfo/asterisk-ss7
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-ss7/attachments/20070922/1b850a4b/attachment-0001.htm 


More information about the asterisk-ss7 mailing list