Kannel buffer window size

2012-07-04 Thread Ashish Agarwal
Hello, I want to understand what does [TCP ZeroWindow] means for kannel and how can I increase this. The issue is when using the command tetheral -i eth0 I see too many TCP ZeroWindow pdu, and during this time I see overall loss in throughput. Has someone experienced this? -- Regards, Ashish

RE: SMPP and system_error

2012-07-04 Thread Rene Kluwen
The best you can do is ask your provider what it means. They are giving this error. From: users-boun...@kannel.org [mailto:users-boun...@kannel.org] On Behalf Of Emmanuel CHANSON Sent: Tuesday, 03 July, 2012 22:39 To: users Subject: SMPP and system_error Hello, Trying to connect to a

Installing opensmppbox in Amazon EC2 instance

2012-07-04 Thread danieltoyin
Hello, I did ./configure successfully on my Amazon EC2 instance but to do make I get series of error message as below: make all-recursive make[1]: Entering directory `/home/ec2-user/trunk' Making all in gw make[2]: Entering directory `/home/ec2-user/trunk/gw' if gcc -DHAVE_CONFIG_H -I. -I. -I..

Re: Installing opensmppbox in Amazon EC2 instance

2012-07-04 Thread spameden
you need to compile and install kannel before compiling opensmppbox 2012/7/4 danieltoyin danielto...@yahoo.com Hello, I did ./configure successfully on my Amazon EC2 instance but to do make I get series of error message as below: make all-recursive make[1]: Entering directory

Re: Installing opensmppbox in Amazon EC2 instance

2012-07-04 Thread Olutoyin Daniel
Thanks spameden, I have compiled and installed kannel After which I also did a 'make install' of the kannel source Then I moved to the trunk folder where svn downloaded the opensmppbox to. I then did  trunk]# ./configure --with-kannel-dir=/usr/local/ After then I did   trunk]# make But this gave

Re: Installing opensmppbox in Amazon EC2 instance

2012-07-04 Thread danieltoyin
Thanks spameden, I have compiled and installed kannel After which I also did a 'make install' of the kannel source Then I moved to the trunk folder where svn downloaded the opensmppbox to. I then did trunk]# ./configure --with-kannel-dir=/usr/local/ After then I did trunk]# make But this gave

Re: Installing opensmppbox in Amazon EC2 instance

2012-07-04 Thread spameden
You need to configure kannel with mysql or postgresql or any other database support, i.e. in kannel's trunk dir do: ./configure --with-mysql make make install after that compile install opensmppbox 2012/7/4 Olutoyin Daniel danielto...@yahoo.com Thanks spameden, I have compiled and

Re: Installing opensmppbox in Amazon EC2 instance

2012-07-04 Thread spameden
Did you compile kannel with any database support? You need to recompile reinstall kannel with appropriate database support. 2012/7/4 danieltoyin danielto...@yahoo.com Thanks spameden, I have compiled and installed kannel After which I also did a 'make install' of the kannel source Then I

throttling error and dlr

2012-07-04 Thread Moazzam Ali
is it possible to have dlr from SMSC if some messages are facing throttling error?

Re: throttling error and dlr

2012-07-04 Thread spameden
kannel is an asynchronous sender, pretty sure 'throttling error' limits only sending functionality not DLR receiving 2012/7/4 Moazzam Ali moz...@gmail.com is it possible to have dlr from SMSC if some messages are facing throttling error?

Re: throttling error and dlr

2012-07-04 Thread Moazzam Ali
true, but my question was is it possible to get some kind of dlr if a message failed with throttling error. For example if we see the kannel logs, SMSC only send dlr for error 0x0045 (submit failed) but not for 0x0058 (throttling error) so i want to have the dlr also for error 58 On

Re: throttling error and dlr

2012-07-04 Thread spameden
You mean SMSC should send a DLR report with an error? I don't think it's by SMPP standard. You can always grep kannel's log on this error. 2012/7/4 Moazzam Ali moz...@gmail.com true, but my question was is it possible to get some kind of dlr if a message failed with throttling error. For

Re: throttling error and dlr

2012-07-04 Thread Moazzam Ali
exactly, i want to have dlr report with an error in case of throttling. OK, it is not supported by SMPP? On 07/04/2012 11:09 PM, spameden wrote: You mean SMSC should send a DLR report with an error? I don't think it's by SMPP standard. You can always grep kannel's log on this error.

RE: throttling error and dlr

2012-07-04 Thread Rene Kluwen
Currently, Kannel does not send a dlr report upon receiving a Throttling error. Instead, it just puts the message in the queue, and you will receive a dlr with status=8 when the message is relayed to your smsc. == Rene From: users-boun...@kannel.org [mailto:users-boun...@kannel.org] On

Re: throttling error and dlr

2012-07-04 Thread Alvaro Cornejo
You can always hack kannel smpp to add that feature. Knowing you will branch off kannel and in the future, re-patch kannel on each new version. You might algo submit your patch to devel list to see if they can incorporate it to the main trunk. Regards Alvaro On 7/4/12, Rene Kluwen