| 637 | |
| 638 | |
| 639 | static int w_lb_disable_dst(struct sip_msg *req) |
| 640 | { |
| 641 | int ret; |
| 642 | |
| 643 | lock_start_read(ref_lock); |
| 644 | |
| 645 | /* do lb */ |
| 646 | ret = do_lb_disable_dst(req, *curr_data, lb_prob_verbose); |
| 647 | |
| 648 | lock_stop_read(ref_lock); |
| 649 | |
| 650 | if( ret < 0 ) |
| 651 | return ret; |
| 652 | return 1; |
| 653 | } |
| 654 | |
| 655 | |
| 656 | static int w_lb_is_dst(struct sip_msg *msg,str *ip,int *port,int *group, |
nothing calls this directly
no test coverage detected