Clean up ports and ips

This commit is contained in:
Daniel
2021-03-31 01:00:52 +01:00
parent 8338243950
commit 01fad9b0ac
4 changed files with 6 additions and 6 deletions

View File

@ -24,10 +24,10 @@ dataToSend = ""
SEPARATOR = "<SEPARATOR>"
BUFFER_SIZE = 128 # send 4096 bytes each time step
host = "safe-mask.auto.playit.gg"
host = "123.123.123.123"
# the ip address or hostname of the server, the receiver
# the port, let's use 5001
port = 56926
port = 5001
# create the client socket
s = socket.socket()

View File

@ -4,7 +4,7 @@ import os
# device's IP address
SERVER_HOST = "0.0.0.0" #(socket.gethostbyname(socket.gethostname()))
SERVER_PORT = 5001
SERVER_PORT = 5002
# receive 4096 bytes each time
BUFFER_SIZE = 4096
SEPARATOR = "<SEPARATOR>"