From eaad55e828b16c16fd2d402847e763e104a5bb93 Mon Sep 17 00:00:00 2001 From: David Rose Date: Tue, 7 Sep 2004 16:47:04 +0000 Subject: [PATCH] make default port be 5185 --- panda/src/pstatclient/config_pstats.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/panda/src/pstatclient/config_pstats.cxx b/panda/src/pstatclient/config_pstats.cxx index 4c966a3ab8..bf1430bba7 100644 --- a/panda/src/pstatclient/config_pstats.cxx +++ b/panda/src/pstatclient/config_pstats.cxx @@ -36,7 +36,10 @@ float get_pstats_max_rate() { } const string pstats_host = config_pstats.GetString("pstats-host", "localhost"); -const int pstats_port = config_pstats.GetInt("pstats-port", 5180); + +// The default port for PStats used to be 5180, but that's used by AIM. +const int pstats_port = config_pstats.GetInt("pstats-port", 5185); + const float pstats_target_frame_rate = config_pstats.GetFloat("pstats-target-frame-rate", 30.0); // The rest are different in that they directly control the server,