Error segmentation

PH
peter hanshon
Thu, Jun 17, 2010 6:57 PM

HELLOI changed  "pjsua_app.c " so when sending a message sip invite with a xml it display somme line then  it displays error sip callsenclosed "pjsua_app.c" so where is  the problem
THANK YOU


Hotmail : une messagerie performante et gratuite avec une sécurité signée Microsoft
https://signup.live.com/signup.aspx?id=60969

HELLOI changed "pjsua_app.c " so when sending a message sip invite with a xml it display somme line then it displays error sip callsenclosed "pjsua_app.c" so where is the problem THANK YOU _________________________________________________________________ Hotmail : une messagerie performante et gratuite avec une sécurité signée Microsoft https://signup.live.com/signup.aspx?id=60969
KD
Klaus Darilion
Fri, Jun 18, 2010 1:18 PM

Hi!

We do not have time to review the whole source code to find the lines of
code you have changed.

Just post the relevant snippet of your code, marking the lines added by you.

This will increase the chance that somebody reviews the code.

regards
klaus

Am 17.06.2010 20:57, schrieb peter hanshon:

HELLO
I changed "pjsua_app.c " so when sending a message sip invite with a xml
it display somme line then it displays error sip calls
enclosed "pjsua_app.c"
so where is the problem

THANK YOU


Hotmail : une messagerie performante et gratuite avec une sécurité
signée Microsoft Profitez-en https://signup.live.com/signup.aspx?id=60969


Visit our blog: http://blog.pjsip.org

pjsip mailing list
pjsip@lists.pjsip.org
http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org

Hi! We do not have time to review the whole source code to find the lines of code you have changed. Just post the relevant snippet of your code, marking the lines added by you. This will increase the chance that somebody reviews the code. regards klaus Am 17.06.2010 20:57, schrieb peter hanshon: > > HELLO > I changed "pjsua_app.c " so when sending a message sip invite with a xml > it display somme line then it displays error sip calls > enclosed "pjsua_app.c" > so where is the problem > > THANK YOU > > ------------------------------------------------------------------------ > Hotmail : une messagerie performante et gratuite avec une sécurité > signée Microsoft Profitez-en <https://signup.live.com/signup.aspx?id=60969> > > > > _______________________________________________ > Visit our blog: http://blog.pjsip.org > > pjsip mailing list > pjsip@lists.pjsip.org > http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org
PH
peter hanshon
Sat, Jun 19, 2010 1:38 PM

hello

here is the code that i changed in pjsua_app.c i want to send xml body in sip invite message but it make a error " segmentation"
where is the problem
thank you

case 'm':
/* Make call! : */   printf("(You currently have %d calls)\n",     pjsua_call_get_count());         uri = NULL;     ui_input_url("Make call", buf, sizeof(buf), &result);     if (result.nb_result != NO_NB) {
if (result.nb_result == -1 || result.nb_result == 0) {     puts("You can't do that with make call!");     continue; } else {     pjsua_buddy_info binfo;     pjsua_buddy_get_info(result.nb_result-1, &binfo);     tmp.ptr = buf;     pj_strncpy(&tmp, &binfo.uri, sizeof(buf)); }
} else if (result.uri_result) { tmp = pj_str(result.uri_result);     } else { tmp.slen = 0;     }                                char body;                body=malloc(MAXMOTSsizeof(char *));                const pj_str_t SIP_INFO = pj_str("INVITE"); pj_status_t status;                pjsua_msg_data msg_data;         pjsua_msg_data_init(&msg_data); msg_data.content_type = pj_str("application/xml");         pjsua_call_make_call( current_acc, &tmp, 0, NULL,&msg_data , NULL);                pj_ansi_snprintf(body, sizeof(body),         "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n" "<LaBri:user_profile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" \r\n" "xmlns:LaBri="http://www.labri.fr/" xsi:schemaLocation="http://www.labri.fr/ uaprofschema.xsd">\r\n" "<!-- edited with XMLSpy v2009 (http://www.altova.com) by ait chellouche (prive) -->\r\n" "<user id=" 1">\r\n " , app_config.acc_cfg[current_acc].cred_info[app_config.acc_cfg[current_acc].cred_count].username ); msg_data.msg_body = pj_str(body);
status = pjsua_call_send_request(current_call, &SIP_INFO, &msg_data);
break;


Hotmail : un service de messagerie gratuit, fiable et complet
https://signup.live.com/signup.aspx?id=60969

hello here is the code that i changed in pjsua_app.c i want to send xml body in sip invite message but it make a error " segmentation" where is the problem thank you case 'm': /* Make call! : */ printf("(You currently have %d calls)\n", pjsua_call_get_count()); uri = NULL; ui_input_url("Make call", buf, sizeof(buf), &result); if (result.nb_result != NO_NB) { if (result.nb_result == -1 || result.nb_result == 0) { puts("You can't do that with make call!"); continue; } else { pjsua_buddy_info binfo; pjsua_buddy_get_info(result.nb_result-1, &binfo); tmp.ptr = buf; pj_strncpy(&tmp, &binfo.uri, sizeof(buf)); } } else if (result.uri_result) { tmp = pj_str(result.uri_result); } else { tmp.slen = 0; } char *body; body=malloc(MAXMOTS*sizeof(char *)); const pj_str_t SIP_INFO = pj_str("INVITE"); pj_status_t status; pjsua_msg_data msg_data; pjsua_msg_data_init(&msg_data); msg_data.content_type = pj_str("application/xml"); pjsua_call_make_call( current_acc, &tmp, 0, NULL,&msg_data , NULL); pj_ansi_snprintf(body, sizeof(body), "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n" "<LaBri:user_profile xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" \r\n" "xmlns:LaBri=\"http://www.labri.fr/\" xsi:schemaLocation=\"http://www.labri.fr/ uaprofschema.xsd\">\r\n" "<!-- edited with XMLSpy v2009 (http://www.altova.com) by ait chellouche (prive) -->\r\n" "<user id=\" 1\">\r\n " , app_config.acc_cfg[current_acc].cred_info[app_config.acc_cfg[current_acc].cred_count].username ); msg_data.msg_body = pj_str(body); status = pjsua_call_send_request(current_call, &SIP_INFO, &msg_data); break; _________________________________________________________________ Hotmail : un service de messagerie gratuit, fiable et complet https://signup.live.com/signup.aspx?id=60969
PH
peter hanshon
Sun, Jun 20, 2010 1:18 PM

hello

here is the code that i changed in pjsua_app.c i want to send xml body in sip invite message but it make a error " segmentation"
where is the problem
thank you

case 'm':
/* Make call! : */   printf("(You currently have %d calls)\n",     pjsua_call_get_count());         uri = NULL;     ui_input_url("Make call", buf, sizeof(buf), &result);     if (result.nb_result != NO_NB) {
if (result.nb_result == -1 || result.nb_result == 0) {     puts("You can't do that with make call!");     continue; } else {     pjsua_buddy_info binfo;     pjsua_buddy_get_info(result.nb_result-1, &binfo);     tmp.ptr = buf;     pj_strncpy(&tmp, &binfo.uri, sizeof(buf)); }
} else if (result.uri_result) { tmp = pj_str(result.uri_result);     } else { tmp.slen = 0;     }                                char body;                body=malloc(MAXMOTSsizeof(char *));                const pj_str_t SIP_INFO = pj_str("INVITE"); pj_status_t status;                pjsua_msg_data msg_data;         pjsua_msg_data_init(&msg_data); msg_data.content_type = pj_str("application/xml");         pjsua_call_make_call( current_acc, &tmp, 0, NULL,&msg_data , NULL);                pj_ansi_snprintf(body, sizeof(body),         "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n" "<LaBri:user_profile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" \r\n" "xmlns:LaBri="http://www.labri.fr/" xsi:schemaLocation="http://www.labri.fr/ uaprofschema.xsd">\r\n" "<!-- edited with XMLSpy v2009 (http://www.altova.com) by ait chellouche (prive) -->\r\n" "<user id=" 1">\r\n " , app_config.acc_cfg[current_acc].cred_info[app_config.acc_cfg[current_acc].cred_count].username ); msg_data.msg_body = pj_str(body);
status = pjsua_call_send_request(current_call, &SIP_INFO, &msg_data);
break;


Votre messagerie et bien plus où que vous soyez. Passez à Windows Live Hotmail, c'est gratuit !
https://signup.live.com/signup.aspx?id=60969

hello here is the code that i changed in pjsua_app.c i want to send xml body in sip invite message but it make a error " segmentation" where is the problem thank you case 'm': /* Make call! : */ printf("(You currently have %d calls)\n", pjsua_call_get_count()); uri = NULL; ui_input_url("Make call", buf, sizeof(buf), &result); if (result.nb_result != NO_NB) { if (result.nb_result == -1 || result.nb_result == 0) { puts("You can't do that with make call!"); continue; } else { pjsua_buddy_info binfo; pjsua_buddy_get_info(result.nb_result-1, &binfo); tmp.ptr = buf; pj_strncpy(&tmp, &binfo.uri, sizeof(buf)); } } else if (result.uri_result) { tmp = pj_str(result.uri_result); } else { tmp.slen = 0; } char *body; body=malloc(MAXMOTS*sizeof(char *)); const pj_str_t SIP_INFO = pj_str("INVITE"); pj_status_t status; pjsua_msg_data msg_data; pjsua_msg_data_init(&msg_data); msg_data.content_type = pj_str("application/xml"); pjsua_call_make_call( current_acc, &tmp, 0, NULL,&msg_data , NULL); pj_ansi_snprintf(body, sizeof(body), "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n" "<LaBri:user_profile xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" \r\n" "xmlns:LaBri=\"http://www.labri.fr/\" xsi:schemaLocation=\"http://www.labri.fr/ uaprofschema.xsd\">\r\n" "<!-- edited with XMLSpy v2009 (http://www.altova.com) by ait chellouche (prive) -->\r\n" "<user id=\" 1\">\r\n " , app_config.acc_cfg[current_acc].cred_info[app_config.acc_cfg[current_acc].cred_count].username ); msg_data.msg_body = pj_str(body); status = pjsua_call_send_request(current_call, &SIP_INFO, &msg_data); break; _________________________________________________________________ Votre messagerie et bien plus où que vous soyez. Passez à Windows Live Hotmail, c'est gratuit ! https://signup.live.com/signup.aspx?id=60969