mirror of
https://github.com/apache/nuttx.git
synced 2026-05-31 05:55:46 +08:00
sim/usrsock: correct the xid type to uint64_t
Signed-off-by: chao.an <anchao@xiaomi.com>
This commit is contained in:
committed by
Petro Karashchenko
parent
ab18b7b3d3
commit
5da5ffb7d4
@@ -91,7 +91,7 @@ static int usrsock_send(FAR struct usrsock_s *usrsock,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int usrsock_send_ack(FAR struct usrsock_s *usrsock,
|
static int usrsock_send_ack(FAR struct usrsock_s *usrsock,
|
||||||
uint8_t xid, int32_t result)
|
uint64_t xid, int32_t result)
|
||||||
{
|
{
|
||||||
struct usrsock_message_req_ack_s ack;
|
struct usrsock_message_req_ack_s ack;
|
||||||
|
|
||||||
@@ -106,7 +106,7 @@ static int usrsock_send_ack(FAR struct usrsock_s *usrsock,
|
|||||||
|
|
||||||
static int usrsock_send_dack(FAR struct usrsock_s *usrsock,
|
static int usrsock_send_dack(FAR struct usrsock_s *usrsock,
|
||||||
FAR struct usrsock_message_datareq_ack_s *ack,
|
FAR struct usrsock_message_datareq_ack_s *ack,
|
||||||
uint8_t xid, int32_t result,
|
uint64_t xid, int32_t result,
|
||||||
uint16_t valuelen,
|
uint16_t valuelen,
|
||||||
uint16_t valuelen_nontrunc)
|
uint16_t valuelen_nontrunc)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user