From 5e30327eb3be1c8dccddcca067ae2e237ddaa955 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sun, 1 Jan 2017 22:35:12 +0000 Subject: [PATCH] Change XOR mask for login_id; #63 Otherwise it will always clash with the Steam client running on the same machine. That was the default behaviour before login_id was implemented. --- steam/client/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/client/__init__.py b/steam/client/__init__.py index 60253d0..5aa139d 100644 --- a/steam/client/__init__.py +++ b/steam/client/__init__.py @@ -490,7 +490,7 @@ class SteamClient(CMClient, BuiltinBase): message.body.supports_rate_limit_response = True if login_id is None: - message.body.obfustucated_private_ip = ip_to_int(self.connection.local_address) ^ 0xBAADF00D + message.body.obfustucated_private_ip = ip_to_int(self.connection.local_address) ^ 0xF00DBAAD else: message.body.obfustucated_private_ip = login_id