Changeset 271
- Timestamp:
- Mar 2, 2006 9:26:09 PM (19 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/config.c
r233 r271 22 22 23 23 static const char *id = "config.c"; 24 const char *PJ_VERSION = "0.5. 2";24 const char *PJ_VERSION = "0.5.3"; 25 25 26 26 PJ_DEF(void) pj_dump_config(void) -
pjproject/trunk/pjmedia/src/pjmedia/sdp.c
r199 r271 568 568 m->desc.fmt_count = rhs->desc.fmt_count; 569 569 for (i=0; i<rhs->desc.fmt_count; ++i) 570 m->desc.fmt[i] = rhs->desc.fmt[i];570 pj_strdup(pool, &m->desc.fmt[i], &rhs->desc.fmt[i]); 571 571 572 572 if (rhs->conn) { … … 679 679 *p++ = '\n'; 680 680 681 /* Connection line (c=) if exist. */ 682 if (ses->conn) { 683 printed = print_connection_info(ses->conn, p, end-p); 684 if (printed < 1) { 685 return -1; 686 } 687 p += printed; 688 } 689 690 681 691 /* Time */ 682 692 if ((end-p) < 24) { … … 692 702 *p++ = '\r'; 693 703 *p++ = '\n'; 694 695 /* Connection line (c=) if exist. */696 if (ses->conn) {697 printed = print_connection_info(ses->conn, p, end-p);698 if (printed < 1) {699 return -1;700 }701 p += printed;702 }703 704 704 705 /* Print all attribute (a=) lines. */ -
pjproject/trunk/pjsip-apps/src/pjsip-perf/handler_call.c
r254 r271 134 134 status = pjsip_dlg_create_uas(pjsip_ua_instance(), rdata, NULL, &dlg); 135 135 if (status != PJ_SUCCESS) { 136 pjsip_dlg_respond(dlg, rdata, 500, NULL );136 pjsip_dlg_respond(dlg, rdata, 500, NULL, NULL, NULL); 137 137 return PJ_TRUE; 138 138 } … … 142 142 if (status != PJ_SUCCESS) { 143 143 144 pjsip_dlg_respond(dlg, rdata, 500, NULL );144 pjsip_dlg_respond(dlg, rdata, 500, NULL, NULL, NULL); 145 145 146 146 // TODO: Need to delete dialog … … 161 161 app_perror(THIS_FILE, "Unable to create 200 response", status); 162 162 163 pjsip_dlg_respond(dlg, rdata, 500, NULL );163 pjsip_dlg_respond(dlg, rdata, 500, NULL, NULL, NULL); 164 164 165 165 // TODO: Need to delete dialog … … 272 272 pj_status_t status; 273 273 274 PJ_UNUSED_ARG(ht); 275 PJ_UNUSED_ARG(e); 276 274 277 e->id = 0; 275 278 … … 296 299 { 297 300 struct call_data *call_data; 301 302 PJ_UNUSED_ARG(e); 298 303 299 304 call_data = inv->mod_data[mod_call.id]; -
pjproject/trunk/pjsip-apps/src/pjsip-perf/handler_options.c
r259 r271 116 116 PJ_LOG(5,(THIS_FILE,"Sending OPTIONS request..")); 117 117 118 PJ_UNUSED_ARG(route_set); 119 PJ_UNUSED_ARG(cred_cnt); 120 PJ_UNUSED_ARG(cred); 121 118 122 status = pjsip_endpt_create_request( settings.endpt, 119 123 &pjsip_options_method, -
pjproject/trunk/pjsip-apps/src/pjsip-perf/main.c
r262 r271 597 597 unsigned i; 598 598 599 PJ_UNUSED_ARG(timer_heap); 600 PJ_UNUSED_ARG(entry); 601 599 602 if (!pj_list_empty(&sess->free_list)) { 600 603 batch = sess->free_list.next;
Note: See TracChangeset
for help on using the changeset viewer.