[Sofia-sip-devel] Conflict with IE 7 and wininet.dll

2007-05-30 Thread brian_moody
Has anyone experienced a conflict with Sofia SIP when using it on a PC that has Internet Explorer 7 on it? I'm seeing an issue with this in our application, but I haven't yet gotten to the bottom of it. I'm just using Sofia SIP for its SIP parsing functionality and don't need anything from

[Sofia-sip-devel] LoadLibrary fails on Sofia library

2007-05-30 Thread brian_moody
When I link my DLL (ABC.DLL) to libsofia_sip_ua.lib/dll, a LoadLibrary call on ABC.DLL fails due to an Invalid access to memory location. The actual failure occurs when a DLL (XYZ.DLL), whose load is triggered by ABC.DLL, calls into wininet.dll. Any help on this would be greatly appreciated.

Re: [Sofia-sip-devel] LoadLibrary fails on Sofia library

2007-05-30 Thread brian_moody
I'm not totally clear on how the C runtime lib wors, but your suggestion lead to the solution. I was statically linking in sofia, but dynamically linking everything else. Once I change sofia to dynamic, this solved the problem. Thanks!! -Original Message- From: Michael Jerris

[Sofia-sip-devel] sofia sip install base

2007-03-13 Thread brian_moody
Does anyone have a feel for what the install base is of sofia sip? What are its largest customers? How long has it been around? - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and

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] 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] 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

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

2007-03-06 Thread brian_moody
I tried it on 1.12.4 and 1.12.5 and got the same errors. I ran sofia-sip\win32\autogen.cmd before hand. I did have to edit build_sources.cmd because I was using gawk 3.1.3 (as the comment in build_sources.cmd directs you to do). I'll try your latest code and report back. -Original

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

2007-03-05 Thread brian_moody
I'm getting the following compiler errors (and more) when compiling sofia-sip-1.12.5 win32, using Visual C 6: C:\downloads\sofia-sip\sofia-sip-1.12.4.tar\sofia-sip-1.12.4\libsofia-sip-ua\msg\msg_basic.c(82) : error C2065: 'msg_error_hash' : undeclared identifier