Advertisement
orborbson

serwer-python3

Nov 13th, 2024
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.02 KB | Source Code | 0 0
  1. #!/usr/bin/env python3
  2. import socket, gc
  3.  
  4. def start_server():
  5.     host = '0.0.0.0'
  6.     port = 3000 # puść na firewall-u wejściowy port 3000/tcp
  7.     max_buff = 1024
  8.     s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  9.  
  10.     try:
  11.         s.bind((host, port))
  12.         s.listen(5)
  13.         print(f'[INFO]: serwer start, port: {port} (naciśnij "ctrl + c" aby wyjść)')
  14.        
  15.         while True:
  16.             gc.collect()
  17.             try:
  18.                 cs, c_adr = s.accept()
  19.                 print(f'[INFO]: połączono z {c_adr[0]}:{c_adr[1]}')
  20.                 dane = bytearray()
  21.                 while True:
  22.                     bufor = cs.recv(max_buff)
  23.                     if not bufor: break
  24.                     dane += bufor
  25.                 ret = dane.decode('utf-8')
  26.                 print(f'[ODEBRANO (znaków: {len(ret)})]: {ret}')
  27.             except KeyboardInterrupt:
  28.                 print("")
  29.                 break
  30.             except Exception as e:
  31.                 print(f'[BŁĄD]: klient => "{e}"')
  32.             finally:
  33.                 if 'cs' in locals():
  34.                     cs.close()
  35.  
  36.     except socket.error as e:
  37.         print(f'[BŁĄD]: serwer => "{e}"')
  38.     finally:
  39.         s.close()
  40.         print('[INFO]: zakończono')
  41.  
  42. if __name__ == "__main__":
  43.     start_server()
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement