Re: [Sofia-sip-devel] sofia-sip-1.12.5 Compile failure on win32, VC 6

2007-03-07 Thread brian_moody
Thanks - using your latest code, it compiles now. -Original Message- From: Kai Vehmanen [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 06, 2007 9:49 AM To: [EMAIL PROTECTED] Cc: sofia-sip-devel@lists.sourceforge.net Subject: RE: [Sofia-sip-devel] sofia-sip-1.12.5 Compile failure on

[Sofia-sip-devel] RFC3725

2007-03-07 Thread Helmut Kuper
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, I use WeSIP click2dial application with UACs registered to freeswitch. But when I establish a call via web app, freeswitch doesn't response with an OK to the INVITE (with no SDP) for the caller from wep app. Following RFC 3725

[Sofia-sip-devel] SDP parser error

2007-03-07 Thread brian_moody
I'm attempting to parse the SIP SDP packet with the following code: parser = sdp_parse(home, message, len, sdp_f_insane | sdp_f_anynet); sdp = sdp_session( parser ); if( sdp == NULL ) { // get the error here error = sdp_parsing_error( parser ; } When I apply this

Re: [Sofia-sip-devel] SDP parser error

2007-03-07 Thread brian_moody
Debugging this, it looks like the offending line is: a=+g.poc.talkburst It appears parse_media_attr in sdp_parse.c returns after attempting a 'token' because it has a '+' which is deemed illegal. Should a '+' be valid? From: [EMAIL PROTECTED]

[Sofia-sip-devel] sofia-sip changes (2007-03-07)

2007-03-07 Thread Sofia-SIP Darcs Changes
This posting was generated automatically from darcs repo http://sofia-sip.org/repos/sofia-sip. Wed Mar 7 12:34:42 EET 2007 Pekka Pessi [EMAIL PROTECTED] * msg_parser.h: avoiding bug in Solaris X86 memccpy() Problem reported by Michael Jerris. M

[Sofia-sip-devel] Does sofia do multipart SIP payload parsing?

2007-03-07 Thread brian_moody
Does sofia properly handle the parsing of multipart payloads? I have a multipart/related payload. I see the *entire* payload in the sip_payload field of the sip_t structure. It's not broken into separate payload structures using pl_next as I would have expected - pl_next is NULL. And