TCP_System_Sender/config.py
2026-04-27 15:42:02 +05:30

8 lines
287 B
Python

# config.py — shared settings for sender and receiver
HOST = "127.0.0.1"
PORT = 3000
SEND_INTERVAL = 5 # seconds between each data send
BUFFER_SIZE = 4096
ACK_BYTE = b'\x06' # standard ACK control character
RECONNECT_DELAY = 3 # seconds before sender retries connection