From 1e4aea08d25fec0afd91361d366e5a597824453d Mon Sep 17 00:00:00 2001 From: Unbewohnte Date: Sun, 6 Jun 2021 14:26:49 +0300 Subject: [PATCH] fixed a WORD --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 93d6576..d7ce083 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The server and the client needs to communicate with packets according to certain In my implementation there is only one basic packet template with fixed fields. The packets are divided into several groups by its headers, this way my basic packet`s template can be used in many ways, without need of creating a brand-new packet with a different kind of a template. -Thus, with a connection and a way of communication, the server will send a handshake packet to a client that describes a filename and its size. The client will have the choice of accepting or rejecting the packet. If rejected - the connection will be closed and the program will exit. If accepted - the file will be transfered via packets. +Thus, with a connection and a way of communication, the server will send a fileinfo packet to a client that describes a filename and its size. The client will have the choice of accepting or rejecting the packet. If rejected - the connection will be closed and the program will exit. If accepted - the file will be transfered via packets. ---