[Sofia-sip-devel] Sending nua_invite - DNS Error 503

2013-11-17 Thread Alexander Heinrich
Hey, I got good help from that mailing list last time. So I’ll try again to send my problems to you. When I’m sending a nua_invite message I get a DNS 503 error. I saw some mails in the archive concerning this problem, but I could not find a good answer for that problem. I am working with a

[Sofia-sip-devel] status of sofia sip

2013-11-17 Thread Dave Horton
I've been using sofia sip quite happily for a few years in various projects, but I am wondering about whether it is still being actively supported. I'm heading into a new project where I will need a lot of 3GPP headers that don't appear to have been implemented in sofia sip, and I've also come

Re: [Sofia-sip-devel] Sending nua_invite - DNS Error 503

2013-11-17 Thread Tim Na
iOS doesn’t allow file access. You need to use iOS API to query DNS server IP which isn’t done for Sofia SIP yet. From: Alexander Heinrich mailto:alexan...@sn0wfreeze.de>> Date: Sunday, November 17, 2013 at 3:52 AM To: "sofia-sip-devel@lists.sourceforge.net

Re: [Sofia-sip-devel] Sending nua_invite - DNS Error 503

2013-11-17 Thread Huang, Kun-Yao
Try binding to a specific interface instead of 0.0.0.0. Sofia SIP chooses an arbitrary interface for out-going requests when you bind to 0.0.0.0 http://www.mail-archive.com/sofia-sip-devel@lists.sourceforge.net/msg04427.html http://www.mail-archive.com/sofia-sip-devel@lists.sourceforge.net/msg031

Re: [Sofia-sip-devel] Sending nua_invite - DNS Error 503

2013-11-17 Thread Andreas Wehrmann
On 11/18/2013 12:12 AM, Huang, Kun-Yao wrote: > Try binding to a specific interface instead of 0.0.0.0. Sofia SIP chooses an > arbitrary interface for out-going requests when you bind to 0.0.0.0 > > http://www.mail-archive.com/sofia-sip-devel@lists.sourceforge.net/msg04427.html > http://www.mail-

Re: [Sofia-sip-devel] status of sofia sip

2013-11-17 Thread Andreas Wehrmann
On 11/17/2013 04:53 PM, Dave Horton wrote: > I've been using sofia sip quite happily for a few years in various projects, > but I am wondering about whether it is still being actively supported. I'm > heading into a new project where I will need a lot of 3GPP headers that don't > appear to hav

Re: [Sofia-sip-devel] Sending nua_invite - DNS Error 503

2013-11-17 Thread Tim Na
Check and add this in libsofia-sip-ua/sresolv/sres.c #ifdef IOS_BUILD #include #endif ... static sres_config_t *sres_parse_resolv_conf(sres_resolver_t *res, char const **options) { sres_config_t *c = su_home_new(sizeof *c); if (c) { FILE *f; i