8 lines
287 B
Python
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 |