* process group of ESP inbound transport packets. */
| 833 | * process group of ESP inbound transport packets. |
| 834 | */ |
| 835 | uint16_t |
| 836 | esp_inb_trs_pkt_process(const struct rte_ipsec_session *ss, |
| 837 | struct rte_mbuf *mb[], uint16_t num) |
| 838 | { |
| 839 | struct rte_ipsec_sa *sa = ss->sa; |
| 840 | |
| 841 | return esp_inb_pkt_process(sa, mb, num, sa->sqh_len, trs_process); |
| 842 | } |
| 843 | |
| 844 | uint16_t |
| 845 | inline_inb_trs_pkt_process(const struct rte_ipsec_session *ss, |
nothing calls this directly
no test coverage detected