letztes commit

This commit is contained in:
Ulma Evelyn Herrera Huezo 2019-10-15 15:29:59 +02:00
parent 775ce391d5
commit b707eed9ce
3 changed files with 20 additions and 8 deletions

6
.idea/vcs.xml generated Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@ -3,12 +3,17 @@ import socket
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) connection.send(eingabe.encode('utf-8'))
msg= "Danke für ds vorbeischauen" connection.close()
connection.send(msg.encode('utf-8'))
connection.close()

View File

@ -3,9 +3,10 @@ import socket
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()