Re: EMI/UCP bug

2002-12-02 Thread Stipe Tolj
isn't this a conceptual clash, where you run a windowed EMI/UCP client (Kannel) against a stop-and-wait (flow-control = 1) EMI/UCP server?! Stipe [EMAIL PROTECTED] --- Wapme Systems AG Vogelsanger Weg 80 40470 Düsseldorf Tel:

Re: Kannel 1.2.1 Testing

2002-12-02 Thread Stipe Tolj
Wayne Poole wrote: Greetings, This e-mail is to inform you that we did get the color handset working. We implemented the force-sar option in the configuration file. Ericsson T68i is compatible with Kannel 1.2.1 please note that the 'force-sar' configuration directive is absolete for

Re: Kannel crashes sendsms in emi2 and dlrmask=7

2002-12-02 Thread Stipe Tolj
João Miranda schrieb: Hi list, I'm trying to send messages with drlmask=7 and libsdb configured. The kannel crashes after sending the first message. Can anyone help me?? bearerbox log: 2002-11-26 11:44:54 [0] INFO: Kannel bearerbox II version 1.2.1 starting 2002-11-26 11:44:54 [0]

Re: Request UAProf??

2002-12-02 Thread Stipe Tolj
Aarno Syvänen schrieb: Fetch url in Profile header. and then parse the reply body. Stipe [EMAIL PROTECTED] --- Wapme Systems AG Vogelsanger Weg 80 40470 Düsseldorf Tel: +49-211-74845-0 Fax: +49-211-74845-299 E-Mail: [EMAIL

RE: 1.2.1 Cygwin compile SMPP - Issue not receiving %a from SMSC

2002-12-02 Thread Warren Liu
Stipe, I can't right now because we're already in production, new client so I don't want to try anything that might look bad for us. However I will be able to do this test sometime in Jan, since we are rolling out new services from the same content provider to this gsm provider and we'll still be

garbled SMS

2002-12-02 Thread denzel
Hi list! When I send sms using the kannel gateway the message is received garbled. i.e. The message is encrypted except every 8th character. For example when I send the message, 1234567823456782345678 the result on the phone is, 1dL!SFM8dL!SFM8dL!SFM8 Note here that every 8th

Re: garbled SMS

2002-12-02 Thread denzel
hi! I sent the sms using the sendsmsCGI script,like ... links -dump 'http://127.0.0.1:15013/cgi-bin/sendsms?username=smsuserpassword=testfrom=1234smsc=CELLSMPPto=9472423353text=1234567823456782345678' smsc is some version of SMPP( As given in kannel userguide). How do I set the encoding

Re: garbled SMS

2002-12-02 Thread denzel
Thanks Man I just found the answer, coding=2 worked.!!! Really Thankyou - Original Message - From: Andreas Fink To: [EMAIL PROTECTED] Sent: Monday, December 02, 2002 5:48 AM Subject: Re: garbled SMS On Dienstag, Dezember 3, 2002, at 04:50 Uhr, [EMAIL

RE: Kannel crashes sendsms in emi2 and dlrmask=7

2002-12-02 Thread João Miranda
Stipe, I made a patch for sdb_callback_add, and the 'Row has wrong length 1' error gone. But I still get 'PANIC: gwlib/list.c:425: lock: Assertion `list != NULL' failed.'. Can you validate the patch and help me with the Assertion error? static int sdb_callback_add(int n, char **p, void *row) {

[PATCH] internal dlr race fix

2002-12-02 Thread Alexander Malysh
Hi, here is 3 liner patch to fix race condition in internal dlr. -- Mit besten Grüßen aus Köln Dipl.-Ing. Alexander Malysh ___ Centrium GmbH Ehrenstraße 2 50672 Köln Fon: +49 (0221) 277 49 150 Fax: +49 (0221) 277 49 109 email: [EMAIL PROTECTED] web:

Re: Kannel crashes sendsms in emi2 and dlrmask=7

2002-12-02 Thread Stipe Tolj
I made a patch for sdb_callback_add, and the 'Row has wrong length 1' error gone. But I still get 'PANIC: gwlib/list.c:425: lock: Assertion `list != NULL' failed.'. Can you validate the patch and help me with the Assertion error? can you check/backtrace which list_xxx() operation (seems

RE: Kannel crashes sendsms in emi2 and dlrmask=7

2002-12-02 Thread João Miranda
My RDBMS is Oracle, and it seems to me that the operation is list_lock(). -Original Message- From: Stipe Tolj [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 17:18 To: João Miranda Cc: [EMAIL PROTECTED] Subject: Re: Kannel crashes sendsms in emi2 and dlrmask=7 I made a patch

Re: Kannel crashes sendsms in emi2 and dlrmask=7

2002-12-02 Thread Stipe Tolj
João Miranda schrieb: My RDBMS is Oracle, and it seems to me that the operation is list_lock(). have you located at which position in Kannel's code this happens?! Stipe [EMAIL PROTECTED] --- Wapme Systems AG Vogelsanger Weg 80

Re: [PATCH] internal dlr race fix

2002-12-02 Thread Stipe Tolj
Alexander Malysh wrote: Hi, here is 3 liner patch to fix race condition in internal dlr. definetly +1. Thanks a lot Alex. Patch commited to cvs. Stipe [EMAIL PROTECTED] --- Wapme Systems AG Vogelsanger Weg 80 40470

[PATCH] store not critical fix

2002-12-02 Thread Alexander Malysh
Hi all, and again small fix ;) Here is small fix for bb_store. -- Mit besten Grüßen aus Köln Dipl.-Ing. Alexander Malysh ___ Centrium GmbH Ehrenstraße 2 50672 Köln Fon: +49 (0221) 277 49 150 Fax: +49 (0221) 277 49 109 email: [EMAIL PROTECTED] web:

[PATCH] http.c

2002-12-02 Thread Nisan Bloch
Hi small memory leak in http.c, --- gwlib/http.cMon Nov 18 08:02:13 2002 +++ ../../gateway-cvsup/gwlib/http.cMon Nov 25 11:45:50 2002 @@ -1226,6 +1226,10 @@ path = NULL; request = NULL; + if (trans-host != NULL) + octstr_destroy(trans-host); + trans-host = NULL; +

Re: Kannel crashes sendsms in emi2 and dlrmask=7

2002-12-02 Thread Andreas Fink
On Montag, Dezember 2, 2002, at 07:05 Uhr, Stipe Tolj wrote: Andreas Fink schrieb: On Montag, Dezember 2, 2002, at 06:25 Uhr, Stipe Tolj wrote: João Miranda schrieb: My RDBMS is Oracle, and it seems to me that the operation is list_lock(). have you located at which position in Kannel's code

[PATCH] mem leak bb_smscconn

2002-12-02 Thread Nisan Bloch
Hi another small mem leak --- cvs/gw/bb_smscconn.cThu Nov 28 13:22:30 2002 +++ cvsup/gw/bb_smscconn.c Mon Dec 2 23:36:32 2002 @@ -423,7 +423,7 @@ { CfgGroup *grp; SMSCConn *conn; -Octstr *smscid; +Octstr *smscid = NULL; int i; /* find the specific smsc

Re: [PATCH] store not critical fix

2002-12-02 Thread Stipe Tolj
Alexander Malysh wrote: Hi all, and again small fix ;) Here is small fix for bb_store. this is Alexander's patch: Index: gw/bb_store.c === RCS file: /home/cvs/gateway/gw/bb_store.c,v retrieving revision 1.16 diff -a -u -r1.16

Re: [PATCH] http.c

2002-12-02 Thread Stipe Tolj
Hi Nisan Nisan Bloch wrote: Hi small memory leak in http.c, --- gwlib/http.cMon Nov 18 08:02:13 2002 +++ ../../gateway-cvsup/gwlib/http.cMon Nov 25 11:45:50 2002 @@ -1226,6 +1226,10 @@ path = NULL; request = NULL; + if (trans-host != NULL) +

Re: [PATCH] mem leak bb_smscconn

2002-12-02 Thread Stipe Tolj
Nisan Bloch wrote: Hi another small mem leak --- cvs/gw/bb_smscconn.cThu Nov 28 13:22:30 2002 +++ cvsup/gw/bb_smscconn.c Mon Dec 2 23:36:32 2002 @@ -423,7 +423,7 @@ { CfgGroup *grp; SMSCConn *conn; -Octstr *smscid; +Octstr *smscid = NULL; int

Re: Bug - memory leak in SSL handlers

2002-12-02 Thread Stipe Tolj
Paul Keogh wrote: Module is gwlib/conn.c The OpenSSL code used in Kannel does not free up allocated resources. This is OK for current executable usage but not OK if you are using Kannel libraries in a reentrant manner. Specifically, OpenSSL resources should be freed in conn_shutdown_ssl()

Re: is kannel support CDMA 1x?

2002-12-02 Thread Stipe Tolj
i want to use kannel wap gateway on the CDMA 1x,is there anyone once used on CDMA 1x? if that bearer type can let you do IP traffic, yes, Kannel works as WAP gateway. The WAP stack is usually not bound to transmission techniques itself. As long as you can do UDP packet sending/receiving via

Re: is kannel support CDMA 1x?

2002-12-02 Thread wangjw
i see :) and i once used kannel on GPRS but the IP address isnt bounded to the mobile, so the mobile can send request to Kannel,and soon change its ip, so Kannel cant send the UDP package to the mobile properly,i am afraid the same problem will happened to the gateway .

Re: [PATCH] http.c

2002-12-02 Thread Nisan Bloch
Hi At 01:15 AM 12/3/02 +0100, Stipe Tolj wrote: small memory leak in http.c, --- gwlib/http.cMon Nov 18 08:02:13 2002 +++ ../../gateway-cvsup/gwlib/http.cMon Nov 25 11:45:50 2002 @@ -1226,6 +1226,10 @@ path = NULL; request = NULL; + if (trans-host != NULL) +