@@ -302,12 +302,6 @@ int packet_parse_common(packet_parser_t *pkt_hdr, const uint8_t *ptr,
int _odp_cls_parse(odp_packet_hdr_t *pkt_hdr, const uint8_t *parseptr);
-int _odp_packet_set_data(odp_packet_t pkt, uint32_t offset,
- uint8_t c, uint32_t len);
-
-int _odp_packet_cmp_data(odp_packet_t pkt, uint32_t offset,
- const void *s, uint32_t len);
-
#ifdef __cplusplus
}
#endif
@@ -213,8 +213,8 @@ odp_crypto_alg_err_t auth_check(odp_packet_t pkt,
odp_packet_copy_to_mem(pkt, param->hash_result_offset,
bytes, hash_in);
- _odp_packet_set_data(pkt, param->hash_result_offset,
- 0, bytes);
+ odp_packet_set_data(pkt, param->hash_result_offset,
+ 0, bytes);
/* Hash it */
packet_hmac(pkt, param, session, hash_out);
@@ -1593,8 +1593,8 @@ int odp_packet_move_data(odp_packet_t pkt, uint32_t dst_offset,
pkt, src_offset, len);
}
-int _odp_packet_set_data(odp_packet_t pkt, uint32_t offset,
- uint8_t c, uint32_t len)
+int odp_packet_set_data(odp_packet_t pkt, uint32_t offset,
+ uint8_t c, uint32_t len)
{
void *mapaddr;
uint32_t seglen = 0; /* GCC */
@@ -1615,8 +1615,8 @@ int _odp_packet_set_data(odp_packet_t pkt, uint32_t offset,
return 0;
}
-int _odp_packet_cmp_data(odp_packet_t pkt, uint32_t offset,
- const void *s, uint32_t len)
+int odp_packet_cmp_mem(odp_packet_t pkt, uint32_t offset,
+ const void *s, uint32_t len)
{
const uint8_t *ptr = s;
void *mapaddr;