Reputation: 1286
I have followed PJSIP tutorial and I have successfully build apjsua sample application.
When I try to add account by +a it ask me for Sip Url, Url of the Registrar, Auth Realm, username, Password
I entered
After that it gave me following error
10-17 19:57:27.165: I/apjsua(920): 19:57:27.165 sip_resolve.c ...Failed to resolve '122.252.232.532.5'. Err=70018 (gethostbyname() has returned error (PJ_ERESOLVE))
10-17 19:57:27.174: I/apjsua(920): 19:57:27.174 tsx0x223a5c ...Failed to send Request msg REGISTER/cseq=54907 (tdta0x1eb9a0)! err=70018 (gethostbyname() has returned error (PJ_ERESOLVE))
10-17 19:57:27.185: I/apjsua(920): 19:57:27.185 pjsua_acc.c .....SIP registration failed, status=502 (gethostbyname() has returned error (PJ_ERESOLVE))
10-17 19:57:27.199: I/apjsua(920): 19:57:27.199 pjsua_acc.c .....Scheduling re-registration retry for acc 2 in 6 seconds..
10-17 19:57:27.212: I/apjsua(920): 19:57:27.212 sip_reg.c ..Error sending request, status=70018
10-17 19:57:27.226: I/apjsua(920): 19:57:27.226 pjsua_acc.c ..Unable to create/send REGISTER: gethostbyname() has returned error (PJ_ERESOLVE) [status=70018]
Does any body know where I am getting wrong???
Or does anybody know any other way to use pjsip library for android???
Upvotes: 2
Views: 4323
Reputation: 438
You're in luck. I was sitting with this problem a few days ago and it just looked like a simple initialization error. You should really get to grips with debugging c code else you're gonna have a hard time understanding the pjsip stack. Anyway here's what you do:
Make the "setInput" method under /pjsip-apps/src/pjsua/main_android.c look like this:
void setInput(char *s)
{
int i = 0;
for (i = 0; i < sizeof(app_var.line); i++)
{
app_var.line[i]=NULL;
}
/* app_var.line[0] = 0; */
if (strlen(s) < sizeof(app_var.line))
strncpy(app_var.line, s, strlen(s));
pj_sem_post(app_var.input_sem);
}
Looking at the code changes, you should be able to see that the app_var.line char variable was not being cleared properly. Now go to the /pjsip-apps/build/ folder and execute "make". Then go to the /pjsip-apps/src/apjsua/ folder and execute "make". Thereafter refresh your eclipse project and run. That should do the trick.
Upvotes: 10