aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/snat/snat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/snat/snat.c')
-rw-r--r--src/plugins/snat/snat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/snat/snat.c b/src/plugins/snat/snat.c
index 0ec20ef7..9712a6cb 100644
--- a/src/plugins/snat/snat.c
+++ b/src/plugins/snat/snat.c
@@ -1481,8 +1481,8 @@ send_snat_user_session_details
rmp->inside_port = s->in2out.port;
rmp->protocol = ntohs(snat_proto_to_ip_proto(s->in2out.protocol));
rmp->is_static = s->flags & SNAT_SESSION_FLAG_STATIC_MAPPING ? 1 : 0;
- rmp->last_heard = ntohl(s->last_heard);
- rmp->total_bytes = ntohl(s->total_bytes);
+ rmp->last_heard = clib_host_to_net_u64((u64)s->last_heard);
+ rmp->total_bytes = clib_host_to_net_u64(s->total_bytes);
rmp->total_pkts = ntohl(s->total_pkts);
rmp->context = context;