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 win32, VC 6

Hi,

On 06 March 2007,  [EMAIL PROTECTED] wrote:
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.

aa, ok -- you could also try with mawk. Your error hints at a problem
with the autogenerated header files, so it could be an issue with
the version of gawk you are using. You can get mawk from:

http://gnuwin32.sourceforge.net/packages/mawk.htm

I've tested our current code with both gawk-3.1.5 and mawk-1.3.3,
and the code compiled fine.

-- 
 under work: Sofia-SIP at http://sofia-sip.sf.net


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Sofia-sip-devel mailing list
Sofia-sip-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sofia-sip-devel


[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 (http://www.faqs.org/rfcs/rfc3725.html) chapter 4.1
it should send an ok with callers sdp back to wep app.

So, is sofia sip supporting rfc 3725 ?

regards
Helmut

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFF7uH94tZeNddg3dwRAnGRAJ97BEXnIxjHZmVHzeMUWc3yE4jKJwCfTt02
nvHsLKV/R2xDdXFHHJKKLv4=
=G/58
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Sofia-sip-devel mailing list
Sofia-sip-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sofia-sip-devel


[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 function towards an SDP packet (message) of:

 

v=0

o=- 0 0 IN IP4 192.168.28.18

s=none

c=IN IP4 192.168.28.18

t=0 0

m=audio 40226 RTP/AVP 109

a=rtpmap:109 AMR/8000/1

a=ptime:100

a=maxptime:400

a=+g.poc.talkburst

a=fmtp:109 mode-set=0,1,2,3,4,5,6,7;octet-align=1

m=application 40

 

I get an invalid attribute name error.  Please give me any tips on what I'm 
doing wrong or how I can resolve this.

 

Brian

 

 

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Sofia-sip-devel mailing list
Sofia-sip-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sofia-sip-devel


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] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]
Sent: Wednesday, March 07, 2007 9:01 AM
To: sofia-sip-devel@lists.sourceforge.net
Subject: [Sofia-sip-devel] SDP parser error

 

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 function towards an SDP packet (message) of:

 

v=0

o=- 0 0 IN IP4 192.168.28.18

s=none

c=IN IP4 192.168.28.18

t=0 0

m=audio 40226 RTP/AVP 109

a=rtpmap:109 AMR/8000/1

a=ptime:100

a=maxptime:400

a=+g.poc.talkburst

a=fmtp:109 mode-set=0,1,2,3,4,5,6,7;octet-align=1

m=application 40

 

I get an invalid attribute name error.  Please give me any tips on what I'm 
doing wrong or how I can resolve this.

 

Brian

 

 

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Sofia-sip-devel mailing list
Sofia-sip-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sofia-sip-devel


[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 ./libsofia-sip-ua/msg/sofia-sip/msg_parser.h -1 +3

Wed Mar  7 12:34:08 EET 2007  Pekka Pessi [EMAIL PROTECTED]
  * bnf.c: fixed bug in IPv6 address canonization

M ./libsofia-sip-ua/bnf/bnf.c -1 +1

Wed Mar  7 12:33:51 EET 2007  Pekka Pessi [EMAIL PROTECTED]
  * sac-openssl.m4, rules/sofia.am: fixed openssl configuration using pkg-config

M ./m4/sac-openssl.m4 -2 +3
M ./rules/sofia.am -2 +1

Wed Mar  7 12:33:16 EET 2007  Pekka Pessi [EMAIL PROTECTED]
  * test_msg.c: removed dead code

M ./libsofia-sip-ua/msg/test_msg.c -1

Wed Mar  7 12:33:08 EET 2007  Pekka Pessi [EMAIL PROTECTED]
  * test_sresolv.c: test bad configuration only on Linux

M ./libsofia-sip-ua/sresolv/test_sresolv.c -2 +2

Wed Mar  7 12:32:22 EET 2007  Pekka Pessi [EMAIL PROTECTED]
  * msg_parser.awk: removed gawkism from header name hash calculation

M ./libsofia-sip-ua/msg/msg_parser.awk -2 +7

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Sofia-sip-devel mailing list
Sofia-sip-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sofia-sip-devel


[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 sip_multipart on 
the sip_t structure is NULL as well.  

 

Brian

 

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Sofia-sip-devel mailing list
Sofia-sip-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sofia-sip-devel