| 9592 | } |
| 9593 | |
| 9594 | int |
| 9595 | test_pdcp_proto_uplane_encap(int i) |
| 9596 | { |
| 9597 | return test_pdcp_proto( |
| 9598 | i, 0, RTE_CRYPTO_CIPHER_OP_ENCRYPT, RTE_CRYPTO_AUTH_OP_GENERATE, |
| 9599 | pdcp_test_data_in[i], pdcp_test_data_in_len[i], |
| 9600 | pdcp_test_data_out[i], pdcp_test_data_in_len[i], |
| 9601 | pdcp_test_params[i].cipher_alg, pdcp_test_crypto_key[i], |
| 9602 | pdcp_test_params[i].cipher_key_len, |
| 9603 | pdcp_test_params[i].auth_alg, pdcp_test_auth_key[i], |
| 9604 | pdcp_test_params[i].auth_key_len, pdcp_test_bearer[i], |
| 9605 | pdcp_test_params[i].domain, pdcp_test_packet_direction[i], |
| 9606 | pdcp_test_data_sn_size[i], pdcp_test_hfn[i], |
| 9607 | pdcp_test_hfn_threshold[i], SDAP_DISABLED); |
| 9608 | } |
| 9609 | |
| 9610 | int |
| 9611 | test_pdcp_proto_uplane_encap_with_int(int i) |
no test coverage detected