From d313c80f6a021cd13fa691736cb14947be393855 Mon Sep 17 00:00:00 2001 From: avinal <185067@nith.ac.in> Date: Wed, 3 Feb 2021 17:06:56 +0530 Subject: [PATCH] readme --- computer_networks/lab/lab2/README.md | 37 ++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 computer_networks/lab/lab2/README.md diff --git a/computer_networks/lab/lab2/README.md b/computer_networks/lab/lab2/README.md new file mode 100644 index 0000000..40361c0 --- /dev/null +++ b/computer_networks/lab/lab2/README.md @@ -0,0 +1,37 @@ +# LAB 2 - Computer Networks + +## Files + +| File Name | Description | +| --- | --- | +| [client.c](client.c) | client implementation | +| [server.c](server.c) | server implementation | +| [client.txt](client.txt) | File to be sent | +| [server.txt](server.txt) | Received File | + +## Background + +Socket Program to transfer file from server to client. The Client +will request the file(server.txt) from the server and the server +responds back to client with the requested file. + +Run Program as `./client` and `./server` +where, client is the client executable socket and server.txt is +the name of the file in the server. + +## Questions + +1. Assisgnment: As part of the class assignment, write a +client-server socket program to upload the file from client +machine to the server machine. + +## Output + +
