初めに低レベルのソケット通信に必要なsocketモジュールを解説した後、 ソケットプログラミングの実例をいくつか紹介します。 最終的に簡単なサーバ・クライアント間のTPC通信の実装を目標とします。 動作環境:Ubuntu 22.04.2 LTS / Python 3.10.12 1. socketモジュールとは ...
A socket is defined as the endpoint of a two-way communication between two processes running over a network. Inter-process communication can be achieved using sockets. After a connection between the ...