diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..05dbb3e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +FTU +release/ diff --git a/FTU b/FTU deleted file mode 100755 index 9df16ed..0000000 Binary files a/FTU and /dev/null differ diff --git a/README.md b/README.md index 25a9d1b..5b8f627 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 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. +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 transferred via packets. ---