-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Hello WeSIPer,
I found a little but annoying Error in WeSIP's C2C application. I send back a 483 reply on a C2C's first caller-INVITE to WeSIP via openser's sl-send_reply(). I expected that C2C terminates the call function, cause C2C has an error handling method for 4xx replies, but nothing happens. openser as wesip's frontend received definately the reply.
By chance I found, that the reason for this was my reply message.
This doesn't work with WeSIP's C2C application:
sl_send_reply("483", "My message\n");
But this works:
sl_send_reply("483", "My message");
It seems, that C2C's or WeSIPs reply parser has some problems with linefeeds at the end of reply's message text.
I use openser 1.2.0, WeSIP 0.1.4 and click2call-08_11_06
regards Helmut
PS: Is there already a fix for WeSIP to reconnect to openser's seas socket, when openser restarts?