mirror of
https://github.com/barronwaffles/dwc_network_server_emulator.git
synced 2026-09-11 12:45:24 -05:00
Typo fix
Fixed a typo in the startup message.
This commit is contained in:
@@ -15,7 +15,7 @@ s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
s.bind(address)
|
||||
s.listen(backlog)
|
||||
|
||||
utils.print_log("Server is now listening on listening on %s:%s..." % (address[0], address[1]))
|
||||
utils.print_log("Server is now listening on %s:%s..." % (address[0], address[1]))
|
||||
|
||||
while 1:
|
||||
client, address = s.accept()
|
||||
|
||||
@@ -13,7 +13,7 @@ address = ('0.0.0.0', 27900) # accessible to outside connections (use this if yo
|
||||
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
||||
s.bind(address)
|
||||
|
||||
utils.print_log("Server is now listening on listening on %s:%s..." % (address[0], address[1]))
|
||||
utils.print_log("Server is now listening on %s:%s..." % (address[0], address[1]))
|
||||
|
||||
while(1):
|
||||
recv_data, addr = s.recvfrom(2048)
|
||||
|
||||
Reference in New Issue
Block a user