summaryrefslogtreecommitdiff
path: root/platform/src/packet_io.cpp
diff options
context:
space:
mode:
authorluwenpeng <[email protected]>2023-10-15 21:05:06 +0800
committerluwenpeng <[email protected]>2023-10-15 21:47:22 +0800
commitc9b9b9bd8d50ec6b45f5e817dc86a7def3ff814f (patch)
tree76a54555c61caae6c598e23787d96e259986d453 /platform/src/packet_io.cpp
parent968ba1374680c7130f585c6905513b23a01b63a5 (diff)
bugfix: send packet enable rehashv1.0.19-20231015dev-23.07-LTS
Diffstat (limited to 'platform/src/packet_io.cpp')
-rw-r--r--platform/src/packet_io.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/src/packet_io.cpp b/platform/src/packet_io.cpp
index f44150e..554934d 100644
--- a/platform/src/packet_io.cpp
+++ b/platform/src/packet_io.cpp
@@ -449,7 +449,7 @@ static int send_packet_to_sf(marsio_buff_t *rx_buff, struct metadata *meta, stru
}
int nsend = marsio_buff_datalen(rx_buff);
- marsio_send_burst(packet_io->dev_endpoint.mr_path, thread_index, &rx_buff, 1);
+ marsio_send_burst_with_options(packet_io->dev_endpoint.mr_path, thread_index, &rx_buff, 1, MARSIO_SEND_OPT_REHASH);
return nsend;
}