This commit is contained in:
Mai Gillmann 2019-10-15 15:30:54 +02:00
parent 1f09919ed7
commit 41711e47fc
2 changed files with 31 additions and 14 deletions

View File

@ -1,16 +1,24 @@
import socket
eingabe = input("Bitte etwas eingeben:")
#eingabe = input("Bitte etwas eingeben:")
s = socket.socket()
host = socket.gethostname()
port = 12346
s.connect((host, port))
s.send(eingabe.encode('utf-8'))
#bytes = s.recv(1024)
#print(bytes.decode('utf-8'))
print('Gesendet')
msg3 = s.recv(1024)
s.close()
#s.connect((host, port))
#s.send(eingabe.encode('utf-8'))
##bytes = s.recv(1024)
##print(bytes.decode('utf-8'))
#print('Gesendet')
#msg3 = s.recv(1024)
#print(msg3.decode('utf-8'))
#s.close()
while True:
eingabe = input("Bitte etwas eingeben:")
(connection, addr) = s.accept()
connection.send(eingabe.encode('utf-8'))

View File

@ -10,9 +10,18 @@ s.listen()
while True:
(connection, addr) = s.accept()
print("Verbindung von ", addr)
msg2 = connection.recv(1024)
new_msg2 = msg2.decode('utf-8') .upper()
print(new_msg2)
connection.send(new_msg2.encode('utf-8'))
#connection.send(msg.encode('utf-8'))
connection.close()
#msg2 = connection.recv(1024)
#new_msg2 = msg2.decode('utf-8') .upper()
#print(new_msg2)
#connection.send(new_msg2.encode('utf-8'))
##connection.send(msg.encode('utf-8'))
#connection.close()
msg = connection.recv(1024)
new_msg = msg2.decode('utf-8').upper()
if new_msg == "STOP":
break