i was wondering if I could connect to a socket without knowing the server's IP address, see the example:
Server:
from socket import *
s = socket(AF_INET, SOCK_STREAM)
s.bind(("", 8080))
s.listen(1)
conn, addr = s.accept()
EDIT: That did the trick How to make a server discoverable to LAN clients