Prints recursive a disposition structure */
| 410 | |
| 411 | /* Prints recursive a disposition structure */ |
| 412 | void print_disposition( struct disposition *disp) |
| 413 | { |
| 414 | struct disposition_param *param; |
| 415 | |
| 416 | LM_DBG("disposition type=<%.*s>[%d]\n", |
| 417 | disp->type.len,disp->type.s,disp->type.len); |
| 418 | for( param=disp->params; param; param=param->next) { |
| 419 | LM_DBG("disposition param: <%.*s>[%d]=<%.*s>[%d] is_quoted=%d\n", |
| 420 | param->name.len,param->name.s, param->name.len, |
| 421 | param->body.len,param->body.s, param->body.len, |
| 422 | param->is_quoted); |
| 423 | } |
| 424 | } |
| 425 | |
| 426 |
no outgoing calls
no test coverage detected