| 589 | } |
| 590 | |
| 591 | static rt_err_t rt_link_detach_handle(struct rt_link_frame *receive_frame) |
| 592 | { |
| 593 | if (rt_link_scb->service[receive_frame->head.service] != RT_NULL) |
| 594 | { |
| 595 | rt_link_scb->service[receive_frame->head.service]->state = RT_LINK_DISCONN; |
| 596 | } |
| 597 | return RT_EOK; |
| 598 | } |
| 599 | |
| 600 | static rt_err_t rt_link_session_end_handle(struct rt_link_frame *receive_frame) |
| 601 | { |
no outgoing calls
no test coverage detected