From 905b98e4d279e9cbc7f760e06b975f7293819a73 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Sat, 22 Mar 2025 10:36:48 -0400 Subject: [PATCH] pings should *ALWAYS* be sent with end-of-call or RTP termination packet sequence (65535); --- FnePeer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FnePeer.cs b/FnePeer.cs index 0a4c9eb..549e5af 100644 --- a/FnePeer.cs +++ b/FnePeer.cs @@ -808,7 +808,7 @@ namespace fnecore { // send message to master byte[] res = new byte[1]; - SendMaster(CreateOpcode(Constants.NET_FUNC_PING), res); + SendMaster(CreateOpcode(Constants.NET_FUNC_PING), res, Constants.RtpCallEndSeq); PingsSent++; Log(LogLevel.DEBUG, $"({systemName}) RPTPING sent to MASTER {masterEndpoint}; pings since connected {PingsSent}");