diff --git a/sms_registration.py b/sms_registration.py index 896fb54..8e7208a 100644 --- a/sms_registration.py +++ b/sms_registration.py @@ -29,8 +29,9 @@ def register(push_token: bytes, no_parse = False, gateway = None) -> tuple[str, token = push_token.hex().upper() req_id = random.randint(0, 2**32) sms = f"REG-REQ?v=3;t={token};r={req_id};" - r = requests.get(f"http://{PHONE_IP}:{API_PORT}/register", params={"sms": sms, "gateway": gateway}) - + print("Sending message and waiting for response...") + r = requests.get(f"http://{PHONE_IP}:{API_PORT}/register", params={"sms": sms, "gateway": gateway}, timeout=16) + print("Received response from device!") if no_parse: print("Now do the next part and rerun with --pdu") exit() @@ -117,4 +118,4 @@ def parse_pdu(r: str, req_id: int | None = None): # if __name__ == "__main__": -# trio.run(main) \ No newline at end of file +# trio.run(main)