On 9/27/06, Kai Vehmanen <[EMAIL PROTECTED]> wrote:
> > It would be much appreciated If someone could please point out the error in
> > this simple code.

> > nua_invite (ss->nua_handle, NUTAG_URL (url),
> >             SOATAG_ADDRESS("127.0.0.1:8000"),
> >             NUTAG_EARLY_MEDIA (1), TAG_END ());

> So here you no longer need to pass the NUTAG_URL(). For a full list
> of options you can give to nua_invite(), see

SOATAG_ADDRESS() expects to get an IP address, The port number should
be in SOATAG_USER_SDP_STR(), which you should include in nua_invite()
tags. You can also include c= line there, e.g.,,

SOATAG_USER_SDP_STR("m=audio 8000 RTP/AVP 8 0\n"
                                            "c=IN IP4 127.0.0.1\n")

-- 
Pekka.Pessi mail at nokia.com

-------------------------------------------------------------------------
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.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Sofia-sip-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sofia-sip-devel

Reply via email to