kannel-compatibility

2007-02-06 Thread sri ganeshan
hi all, i found out that the kannel.org site's compatibility link has not been updated for quite a long time(the phones and modems that work with kannel as SMSC and wap). Could somebody please update it or tell me where i could get more detail on compatibility?we are using kannel in SAHANA(FOSS-

[PATCH] fix sms_split in sms.c

2007-02-06 Thread Alexander Malysh
Hi, seems sms_split function was always buggy and never worked correctly? I found two issues: 1) max_part_len calculation was wrong. It was: max_len * 8 / 7 - udh_len But because udh nerer packed this is just wrong end should be: (max_len - udh_len) * 8 / 7 2) we dropped last

Kannel in Daemon Mode

2007-02-06 Thread Randel Rock
Hello everyone! Kannel will NOT run as a daemon no matter what I do. I did the configure with --daemon-start-stop I have the daemon-start-stop in utils. I try daemon-start-stop with no luck. The ./bearerbox -d smskannel.conf will not start either. I just cannot get this thing to start as a

Re: [PATCH] fix sms_split in sms.c

2007-02-06 Thread Stipe Tolj
Alexander Malysh wrote: Hi, seems sms_split function was always buggy and never worked correctly? I found two issues: 1) max_part_len calculation was wrong. It was: max_len * 8 / 7 - udh_len But because udh nerer packed this is just wrong end should be: (max_len - udh_len) * 8 / 7 2)