You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.0 KiB
32 lines
1.0 KiB
1 year ago
|
import socketserver
|
||
|
|
||
|
class TCPSocketHandler(socketserver.BaseRequestHandler):
|
||
|
#Clase para manejar las conexiones, se instancia una por cliente
|
||
|
|
||
|
def handle(self):
|
||
|
#medodo a sobreescribir para nuestro propio manejo
|
||
|
#self.request se refiere al socket client conectado
|
||
|
print (f"Se han conectado desde: {self.client_address[0]} [{self.client_address[1]}]")
|
||
|
while True:
|
||
|
self.data = self.request.recv(128).strip()
|
||
|
print("Datos recibidos: ", self.data)
|
||
|
#remitimos los mismos datos en mayúscula
|
||
|
self.request.sendall(self.data.upper())
|
||
|
if self.data == b"":
|
||
|
break
|
||
|
if self.data ==b"#":
|
||
|
raise KeyboardInterrupt
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
HOST, PORT = "", 2000
|
||
|
|
||
|
# instanciamos el socket servidor con la clase asociada de callback
|
||
|
server = socketserver.TCPServer((HOST, PORT), TCPSocketHandler)
|
||
|
|
||
|
# activamos el servidor (ponemos a la espera de clientes)
|
||
|
# podemos provocar una excepción con Ctrl-C
|
||
|
try:
|
||
|
server.serve_forever()
|
||
|
except KeyboardInterrupt:
|
||
|
print ("servidor finalizado")
|
||
|
|