aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@FreeBSD.org>2024-05-10 18:40:15 +0000
committerMichael Tuexen <tuexen@FreeBSD.org>2024-05-10 18:40:15 +0000
commitb67716dd58b93f373523cf35373c56fcfad44b12 (patch)
tree558243320a61a0e3b25bff79e6ef6e9baaa3db5e
parent42aeb8d490fb7e8f4c9d27b3797179b861bd85e3 (diff)
downloadsrc-b67716dd58b93f373523cf35373c56fcfad44b12.tar.gz
src-b67716dd58b93f373523cf35373c56fcfad44b12.zip
sctp: store heartbeat creation time as time_t
Reported by: Coverity Scan CID: 1493087 MFC after: 3 days
-rw-r--r--sys/netinet/sctp_header.h2
-rw-r--r--sys/netinet/sctp_output.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/sctp_header.h b/sys/netinet/sctp_header.h
index 9696c4e954ba..c9fd0341f83a 100644
--- a/sys/netinet/sctp_header.h
+++ b/sys/netinet/sctp_header.h
@@ -83,7 +83,7 @@ struct sctp_supported_addr_param {
/* heartbeat info parameter */
struct sctp_heartbeat_info_param {
struct sctp_paramhdr ph;
- uint32_t time_value_1;
+ time_t time_value_1;
uint32_t time_value_2;
uint32_t random_value1;
uint32_t random_value2;
diff --git a/sys/netinet/sctp_output.c b/sys/netinet/sctp_output.c
index c146bda95c7c..cc8d017aba16 100644
--- a/sys/netinet/sctp_output.c
+++ b/sys/netinet/sctp_output.c
@@ -11427,7 +11427,7 @@ sctp_send_hb(struct sctp_tcb *stcb, struct sctp_nets *net, int so_locked)
/* Fill out hb parameter */
hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO);
hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param));
- hb->heartbeat.hb_info.time_value_1 = (uint32_t)now.tv_sec;
+ hb->heartbeat.hb_info.time_value_1 = now.tv_sec;
hb->heartbeat.hb_info.time_value_2 = now.tv_usec;
/* Did our user request this one, put it in */
hb->heartbeat.hb_info.addr_family = (uint8_t)net->ro._l_addr.sa.sa_family;