Remove unused constants from connection module (#714)

This commit is contained in:
J. Nick Koston 2023-11-25 10:11:21 -06:00 committed by GitHub
parent 99380487a5
commit 1360dd136a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 6 deletions

View File

@ -80,6 +80,11 @@ KEEP_ALIVE_TIMEOUT_RATIO = 4.5
#
DISCONNECT_CONNECT_TIMEOUT = 5.0
# How long to wait for an existing connection to finish being
# setup when requesting a disconnect so we can try to disconnect
# gracefully without closing the socket out from under the
# the esp device
DISCONNECT_RESPONSE_TIMEOUT = 10.0
HANDSHAKE_TIMEOUT = 30.0
RESOLVE_TIMEOUT = 30.0
@ -89,12 +94,6 @@ CONNECT_REQUEST_TIMEOUT = 30.0
# to reboot and connect to the network/WiFi.
TCP_CONNECT_TIMEOUT = 60.0
# How long to wait for an existing connection to finish being
# setup when requesting a disconnect so we can try to disconnect
# gracefully without closing the socket out from under the
# the esp device
DISCONNECT_WAIT_CONNECT_TIMEOUT = 5.0
_int = int
_bytes = bytes