42 subject
First Circle
Make contacting service between server and client by SIGUSR1 and SIGUSR2.
🎉DONE!!!🥳🎉
使用方法の説明はこちら
※Caution : We need to use two terminals.
- Git clone this repository to your rocal environment. (If you already git user and could reach here, then you know this command.)
git clone [email protected]:HinataKikuchi/minitalk.git
- JUST DO MAKE
$ cd ./minitalk
$ make
- Run
minitalk/server
, then you'll find server pid.
$ ./server
Like this
SERVER PID_(:3 <)_ : <Process ID>
- Open another terminal and type command bellow.
$ ./client <Process ID> "MESSAGE"
-
Back to your another terminal where running
./server
. You'll find the MESSAGE was recieved. -
FIN.
※注意 : この課題では2つのターミナルを使います。
- このレポジトリをクローンしてください。
git clone [email protected]:HinataKikuchi/minitalk.git
- メイクしてもろて
$ cd ./minitalk
$ make
./server
を実行すると鯖のpid(プロセスID)が表示されます
$ ./server
こんな感じ
SERVER PID_(:3 <)_ : <Process ID>
- もう一つターミナルを開いて以下のコマンドを実行します。
$ ./client <Process ID> "MESSAGE"
<Process ID>
:./server
で確認した値
"MESSAGE"
: serverに送信したいメッセージ
-
./server
を動かしたもう一つのターミナルへ移動します。メッセージが届いているのが確認できるはずです。 -
おーわり!