* process group of ESP inbound tunnel packets. */
| 814 | * process group of ESP inbound tunnel packets. |
| 815 | */ |
| 816 | uint16_t |
| 817 | esp_inb_tun_pkt_process(const struct rte_ipsec_session *ss, |
| 818 | struct rte_mbuf *mb[], uint16_t num) |
| 819 | { |
| 820 | struct rte_ipsec_sa *sa = ss->sa; |
| 821 | |
| 822 | return esp_inb_pkt_process(sa, mb, num, sa->sqh_len, tun_process); |
| 823 | } |
| 824 | |
| 825 | uint16_t |
| 826 | inline_inb_tun_pkt_process(const struct rte_ipsec_session *ss, |
nothing calls this directly
no test coverage detected