<?xml version="1.0" encoding="UTF-8"?> | |||||
<project version="4"> | |||||
<component name="VcsDirectoryMappings"> | |||||
<mapping directory="$PROJECT_DIR$" vcs="Git" /> | |||||
</component> | |||||
</project> |
s = socket.socket() | s = socket.socket() | ||||
host = socket.gethostname() | host = socket.gethostname() | ||||
port = 12345 | port = 12345 | ||||
s.bind((host,port)) | |||||
s.listen() | |||||
eingabe = input("gibt etwas ein") | |||||
print(eingabe) | |||||
while True: | while True: | ||||
(connection, addr) = s.accept() | (connection, addr) = s.accept() | ||||
print("Verdindung von", addr) | |||||
msg= "Danke für ds vorbeischauen" | |||||
connection.send(msg.encode('utf-8')) | |||||
connection.close() | |||||
connection.send(eingabe.encode('utf-8')) | |||||
connection.close() | |||||
s = socket.socket() | s = socket.socket() | ||||
host = socket.gethostname() | host = socket.gethostname() | ||||
port = 12345 | port = 12345 | ||||
#eingabe = "hello" | |||||
s.bind((host,port)) | |||||
s.listen() | |||||
s.connect((host, port)) | s.connect((host, port)) | ||||
bytes = s.recv(1024) | bytes = s.recv(1024) | ||||
print(bytes.decode('utf-8')) | print(bytes.decode('utf-8')) | ||||
s.close() | |||||
s.close() |