diff --git a/Facepunch.Steamworks/SteamNetworkingUtils.cs b/Facepunch.Steamworks/SteamNetworkingUtils.cs index b584955..fdb1672 100644 --- a/Facepunch.Steamworks/SteamNetworkingUtils.cs +++ b/Facepunch.Steamworks/SteamNetworkingUtils.cs @@ -168,6 +168,14 @@ namespace Steamworks set => SetConfigInt( NetConfig.TimeoutInitial, value ); } + /// + /// Timeout value (in ms) to use after connection is established + /// + public static int Timeout + { + get => GetConfigInt( NetConfig.TimeoutConnected ); + set => SetConfigInt( NetConfig.TimeoutConnected, value ); + } ///